Lines Matching refs:axisIntercept
67 int horizontalIntersect(double axisIntercept, double roots[2]) { in horizontalIntersect() argument
69 return this->validT(conicVals, axisIntercept, roots); in horizontalIntersect()
72 int horizontalIntersect(double axisIntercept, double left, double right, bool flipped) { in horizontalIntersect() argument
73 this->addExactHorizontalEndPoints(left, right, axisIntercept); in horizontalIntersect()
75 this->addNearHorizontalEndPoints(left, right, axisIntercept); in horizontalIntersect()
78 int count = this->horizontalIntersect(axisIntercept, roots); in horizontalIntersect()
83 SkOPOBJASSERT(fIntersections, close_to(pt.fY, axisIntercept, conicVals)); in horizontalIntersect()
135 int validT(double r[3], double axisIntercept, double roots[2]) { in validT() argument
137 double B = r[1] * fConic.fWeight - axisIntercept * fConic.fWeight + axisIntercept; in validT()
141 C -= axisIntercept; in validT()
145 int verticalIntersect(double axisIntercept, double roots[2]) { in verticalIntersect() argument
147 return this->validT(conicVals, axisIntercept, roots); in verticalIntersect()
150 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) { in verticalIntersect() argument
151 this->addExactVerticalEndPoints(top, bottom, axisIntercept); in verticalIntersect()
153 this->addNearVerticalEndPoints(top, bottom, axisIntercept); in verticalIntersect()
156 int count = this->verticalIntersect(axisIntercept, roots); in verticalIntersect()
161 SkOPOBJASSERT(fIntersections, close_to(pt.fX, axisIntercept, conicVals)); in verticalIntersect()