HomeSort by relevance Sort by last modified time
    Searched defs:verticalIntersect (Results 1 - 3 of 3) sorted by null

  /external/skia/src/pathops/
SkDConicLineIntersection.cpp 145 int verticalIntersect(double axisIntercept, double roots[2]) {
150 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) {
156 int count = this->verticalIntersect(axisIntercept, roots);
358 return c.verticalIntersect(x, top, bottom, flipped);
383 return c.verticalIntersect(x, roots);
SkDCubicLineIntersection.cpp 230 static int VerticalIntersect(const SkDCubic& c, double axisIntercept, double roots[3]) {
247 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) {
253 int count = VerticalIntersect(fCubic, axisIntercept, roots);
429 return c.verticalIntersect(x, top, bottom, flipped);
453 int SkDCubic::verticalIntersect(double xIntercept, double roots[3]) const {
454 return LineCubicIntersections::VerticalIntersect(*this, xIntercept, roots);
SkDQuadLineIntersection.cpp 244 int verticalIntersect(double axisIntercept, double roots[2]) {
254 int verticalIntersect(double axisIntercept, double top, double bottom, bool flipped) {
260 int roots = verticalIntersect(axisIntercept, rootVals);
434 return q.verticalIntersect(x, top, bottom, flipped);
459 return q.verticalIntersect(x, roots);
468 int SkDQuad::verticalIntersect(double xIntercept, double roots[2]) const {

Completed in 58 milliseconds