Home
last modified time | relevance | path

Searched refs:convexity (Results 1 – 3 of 3) sorted by relevance

/external/opencv/cv/src/
Dcvrotcalipers.cpp158 double convexity = ax * by - ay * bx; in icvRotatingCalipers() local
160 if( convexity != 0 ) in icvRotatingCalipers()
162 orientation = (convexity > 0) ? 1.f : (-1.f); in icvRotatingCalipers()
Dcvconvhull.cpp78 int convexity = ay*bx - ax*by;/* if >0 then convex angle */ in icvSklansky_32s() local
80 if( CV_SIGN(convexity) == sign2 && (ax != 0 || ay != 0) ) in icvSklansky_32s()
151 float convexity = ay*bx - ax*by;/* if >0 then convex angle */ in icvSklansky_32f() local
153 if( CV_SIGN( convexity ) == sign2 && (ax != 0 || ay != 0) ) in icvSklansky_32f()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsContext.cpp1796 SkPath::Convexity convexity = SkPath::kConvex_Convexity; in setPathFromConvexPoints() local
1798 convexity = SkPath::kUnknown_Convexity; in setPathFromConvexPoints()
1799 path->setConvexity(convexity); in setPathFromConvexPoints()