OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:convexity
(Results
1 - 12
of
12
) sorted by null
/external/skia/legacy/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/skia/include/core/
SkPath.h
103
enum
Convexity
{
110
* Return the path's
convexity
, as stored in the path. If it is currently unknown,
111
* then this function will attempt to compute the
convexity
(and cache the result).
113
Convexity
getConvexity() const {
115
return static_cast<
Convexity
>(fConvexity);
122
* Return the currently cached value for
convexity
, even if that is set to
127
Convexity
getConvexityOrUnknown() const { return (
Convexity
)fConvexity; }
130
* Store a
convexity
setting in the path. There is no automatic check to
138
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/skia/legacy/src/core/
SkPath.cpp
404
void SkPath::setConvexity(
Convexity
c) {
[
all
...]
SkConcaveToTriangles.cpp
904
FailureMessage("
Convexity
error in TriangulateMonotone()\n");
[
all
...]
/external/skia/src/core/
SkPath.cpp
715
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
750
SkPath::
Convexity
expected) {
752
SkPath::
Convexity
c = copy.getConvexity();
907
SkPath::
Convexity
fExpectedConvexity;
[
all
...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnMathUtils.cpp
567
* "Testing the
Convexity
of a Polygon"
Completed in 1362 milliseconds