/external/chromium_org/third_party/skia/experimental/Intersection/ |
QuadraticImplicit.cpp | 158 Quadratic hull; local 159 sub_divide(q1, t1s, t1e, hull); 160 _Line line = {hull[2], hull[0]}; 161 const _Line* testLines[] = { &line, (const _Line*) &hull[0], (const _Line*) &hull[1] }; 195 bool startInTriangle = point_in_hull(hull, end); 200 bool endInTriangle = point_in_hull(hull, end);
|
/external/skia/experimental/Intersection/ |
QuadraticImplicit.cpp | 158 Quadratic hull; local 159 sub_divide(q1, t1s, t1e, hull); 160 _Line line = {hull[2], hull[0]}; 161 const _Line* testLines[] = { &line, (const _Line*) &hull[0], (const _Line*) &hull[1] }; 195 bool startInTriangle = point_in_hull(hull, end); 200 bool endInTriangle = point_in_hull(hull, end);
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkDQuadIntersection.cpp | 150 SkDQuad hull = q1.subDivide(t1s, t1e); local 151 SkDLine line = {{hull[2], hull[0]}}; 152 const SkDLine* testLines[] = { &line, (const SkDLine*) &hull[0], (const SkDLine*) &hull[1] }; 189 bool startInTriangle = hull.pointInHull(end); 194 bool endInTriangle = hull.pointInHull(end);
|
/external/opencv/cv/src/ |
cvconvhull.cpp | 231 union { CvContour* c; CvSeq* s; } hull; local 238 hull.s = 0; 298 "The hull matrix should be continuous and have a single row or a single column" ); 301 CV_ERROR( CV_StsBadSize, "The hull matrix size might be not enough to fit the hull" ); 306 "The hull matrix must have the same type as input or 32sC1 (integers)" ); 397 /* gather upper part of convex hull to output */ 452 the bottom part of the convex hull is the mirrored top part 496 hull.s = hullseq; 497 hull.c->rect = cvBoundingRect( ptseq 536 CvSeq *ptseq = (CvSeq*)array, *hull = (CvSeq*)hullarray; local [all...] |
cvcalibinit.cpp | 1084 CvSeq *hull = cvConvexHull2( &pointMat, temp_storage, CV_CLOCKWISE, 1 ); local [all...] |
/external/skia/src/pathops/ |
SkDQuadIntersection.cpp | 150 SkDQuad hull = q1.subDivide(t1s, t1e); local 151 SkDLine line = {{hull[2], hull[0]}}; 152 const SkDLine* testLines[] = { &line, (const SkDLine*) &hull[0], (const SkDLine*) &hull[1] }; 189 bool startInTriangle = hull.pointInHull(end); 194 bool endInTriangle = hull.pointInHull(end);
|
/frameworks/base/libs/hwui/ |
SpotShadow.cpp | 148 * compute the convex hull of a collection of Points 155 int SpotShadow::hull(Vector2* points, int pointsLength, Vector2* retPoly) { function in class:android::uirenderer::SpotShadow 211 // TODO: Add test harness which verify that all the points are inside the hull. 785 int finalUmbraLength = hull(umbra, umbraLength, finalUmbra); 786 int finalPenumbraLength = hull(penumbra, penumbraLength, finalPenumbra); [all...] |