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

  /external/skia/include/core/
SkPath.h 93 enum Convexity {
100 * Return the path's convexity, as stored in the path. If it is currently
104 Convexity getConvexity() const {
108 return (Convexity)fConvexity;
112 * Return the currently cached value for convexity, even if that is set to
117 Convexity getConvexityOrUnknown() const { return (Convexity)fConvexity; }
120 * Store a convexity setting in the path. There is no automatic check to
128 void setConvexity(Convexity);
131 * 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/tests/
PathTest.cpp 21 * is flagged with unknown convexity status.
260 SkPath::Convexity expected) {
261 SkPath::Convexity c = SkPath::ComputeConvexity(path);
387 static const SkPath::Convexity C = SkPath::kConcave_Convexity;
388 static const SkPath::Convexity V = SkPath::kConvex_Convexity;
408 SkPath::Convexity fExpectedConvexity;
423 SkPath::Convexity c = SkPath::ComputeConvexity(path);
    [all...]
  /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 404 void SkPath::setConvexity(Convexity c) {
    [all...]
SkConcaveToTriangles.cpp 904 FailureMessage("Convexity error in TriangulateMonotone()\n");
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Range.java 38 * Formally, convexity means that for any {@code a <= b <= c},
  /external/skia/src/gpu/
GrDrawState.h 644 * will test edge pairs for convexity when rasterizing. Set this if the
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp 567 * "Testing the Convexity of a Polygon"

Completed in 1200 milliseconds