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

  /external/skia/include/core/
SkPath.h 34 Internally, SkPath lazily computes metrics likes bounds and convexity. Call
209 /** \enum SkPath::Convexity
218 Initially SkPath Convexity is kUnknown_Convexity. SkPath Convexity is computed
221 enum Convexity : uint8_t {
222 kUnknown_Convexity, //!< Indicates Convexity has not been determined.
229 /** Computes SkPath::Convexity if required, and returns stored value.
230 SkPath::Convexity is computed if stored value is kUnknown_Convexity,
231 or if SkPath has been altered since SkPath::Convexity was computed or set.
233 @return computed or stored SkPath::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/skqp/include/core/
SkPath.h 34 Internally, SkPath lazily computes metrics likes bounds and convexity. Call
210 /** \enum SkPath::Convexity
219 Initially SkPath Convexity is kUnknown_Convexity. SkPath Convexity is computed
222 enum Convexity : uint8_t {
223 kUnknown_Convexity, //!< Indicates Convexity has not been determined.
230 /** Computes SkPath::Convexity if required, and returns stored value.
231 SkPath::Convexity is computed if stored value is kUnknown_Convexity,
232 or if SkPath has been altered since SkPath::Convexity was computed or set.
234 @return computed or stored SkPath::Convexity
    [all...]

Completed in 482 milliseconds