Lines Matching refs:outerPoint
438 SkPoint innerPoint, outerPoint; in strokeBoundary() local
441 prevOuter.intersect(outer, &outerPoint)) { in strokeBoundary()
447 Line bisector(innerPoint, outerPoint); in strokeBoundary()
462 !outerTangent.intersect(bisector, &outerPoint)) { in strokeBoundary()
469 if (prevTangent.dist(outerPoint) > 0) { in strokeBoundary()
470 bisector.intersect(prevTangent, &outerPoint); in strokeBoundary()
472 if (nextTangent.dist(outerPoint) < 0) { in strokeBoundary()
473 bisector.intersect(nextTangent, &outerPoint); in strokeBoundary()
475 outerPoint1 = outerPoint2 = outerPoint; in strokeBoundary()
522 TESS_LOG("outer (%g, %g)\n", outerPoint.fX, outerPoint.fY); in strokeBoundary()
524 Vertex* outerVertex = fAlloc->make<Vertex>(outerPoint, 0); in strokeBoundary()