HomeSort by relevance Sort by last modified time
    Searched full:convexity (Results 1 - 10 of 10) sorted by null

  /external/skia/tests/
PathTest.cpp 7 SkPath::Convexity expected) {
8 SkPath::Convexity c = SkPath::ComputeConvexity(path);
134 static const SkPath::Convexity C = SkPath::kConcave_Convexity;
135 static const SkPath::Convexity V = SkPath::kConvex_Convexity;
153 SkPath::Convexity fExpectedConvexity;
168 SkPath::Convexity c = SkPath::ComputeConvexity(path);
  /external/skia/include/core/
SkPath.h 100 enum Convexity {
107 * Return the path's convexity, as stored in the path. If it is currently
111 Convexity getConvexity() const {
115 return (Convexity)fConvexity;
119 * Return the currently cached value for convexity, even if that is set to
124 Convexity getConvexityOrUnknown() const { return (Convexity)fConvexity; }
127 * Store a convexity setting in the path. There is no automatic check to
135 void setConvexity(Convexity);
138 * Compute the convexity of the specified path. This does not look at th
    [all...]
  /external/opencv/cv/src/
cvrotcalipers.cpp 158 double convexity = ax * by - ay * bx; local
160 if( convexity != 0 )
162 orientation = (convexity > 0) ? 1.f : (-1.f);
cvconvhull.cpp 78 int convexity = ay*bx - ax*by;/* if >0 then convex angle */ local
80 if( CV_SIGN(convexity) == sign2 && (ax != 0 || ay != 0) )
151 float convexity = ay*bx - ax*by;/* if >0 then convex angle */ local
153 if( CV_SIGN( convexity ) == sign2 && (ax != 0 || ay != 0) )
  /external/skia/gpu/include/
GrTypes.h 468 * Hints provided about a path's convexity (or lack thereof).
471 kNone_ConvexHint, //<! No hint about convexity
  /external/opencv/cv/include/
cvtypes.h 124 /* Finds a sequence of convexity defects of given contour */
cv.h     [all...]
  /external/skia/src/core/
SkPath.cpp 247 void SkPath::setConvexity(Convexity c) {
    [all...]
SkConcaveToTriangles.cpp 911 FailureMessage("Convexity error in TriangulateMonotone()\n");
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp 567 * "Testing the Convexity of a Polygon"

Completed in 823 milliseconds