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

  /external/chromium_org/third_party/skia/include/core/
SkPath.h 98 enum Convexity {
105 * Return the path's convexity, as stored in the path. If it is currently unknown,
106 * then this function will attempt to compute the convexity (and cache the result).
108 Convexity getConvexity() const {
110 return static_cast<Convexity>(fConvexity);
117 * Return the currently cached value for convexity, even if that is set to
122 Convexity getConvexityOrUnknown() const { return (Convexity)fConvexity; }
125 * Store a convexity setting in the path. There is no automatic check to
133 void setConvexity(Convexity);
    [all...]
  /external/skia/include/core/
SkPath.h 98 enum Convexity {
105 * Return the path's convexity, as stored in the path. If it is currently unknown,
106 * then this function will attempt to compute the convexity (and cache the result).
108 Convexity getConvexity() const {
110 return static_cast<Convexity>(fConvexity);
117 * Return the currently cached value for convexity, even if that is set to
122 Convexity getConvexityOrUnknown() const { return (Convexity)fConvexity; }
125 * Store a convexity setting in the path. There is no automatic check to
133 void setConvexity(Convexity);
    [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/opencv/cv/include/
cvtypes.h 124 /* Finds a sequence of convexity defects of given contour */
cv.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
GraphicsContext.cpp 1704 SkPath::Convexity convexity = SkPath::kConvex_Convexity; local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp 675 void SkPath::setConvexity(Convexity c) {
    [all...]
  /external/skia/src/core/
SkPath.cpp 675 void SkPath::setConvexity(Convexity c) {
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Range.java 38 * Formally, convexity means that for any {@code a <= b <= c},
  /external/skia/tests/
PathTest.cpp 854 SkPath::Convexity expected) {
856 SkPath::Convexity c = copy.getConvexity();
    [all...]

Completed in 485 milliseconds