HomeSort by relevance Sort by last modified time
    Searched defs:tIntersections (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/tests/
PathOpsCubicIntersectionTest.cpp 37 SkIntersections tIntersections;
38 tIntersections.intersect(cubic1, cubic2);
39 if (!tIntersections.used()) {
45 if (tIntersections.isCoincident(0)) {
51 for (int pt = 0; pt < tIntersections.used(); ++pt) {
52 double tt1 = tIntersections[0][pt];
54 double tt2 = tIntersections[1][pt];
  /external/chromium_org/third_party/skia/experimental/Intersection/
CubicIntersection_Test.cpp 39 Intersections tIntersections;
40 intersect(reduce1, reduce2, tIntersections);
41 if (!tIntersections.intersected()) {
45 for (int pt = 0; pt < tIntersections.used(); ++pt) {
46 double tt1 = tIntersections.fT[0][pt];
49 double tt2 = tIntersections.fT[1][pt];

Completed in 229 milliseconds