Searched defs:inflections (Results 1 - 1 of 1) sorted by relevance

/external/skia/tests/
H A DPathOpsTestCommon.cpp70 int inflections = cubic->findInflections(inflectT); local
71 SkASSERT(inflections <= 2);
73 inflections += cubic->findMaxCurvature(&inflectT[inflections]);
74 SkASSERT(inflections <= 5);
76 SkTQSort<double>(inflectT, &inflectT[inflections - 1]);
79 while (inflections && approximately_less_than_zero(inflectT[0])) {
80 memmove(inflectT, &inflectT[1], sizeof(inflectT[0]) * --inflections);
84 while (next < inflections) {
90 memmove(&inflectT[start], &inflectT[next], sizeof(inflectT[0]) * (--inflections
223 int inflections = cubic.findInflections(tInflects); local
[all...]

Completed in 75 milliseconds