Lines Matching refs:fPath
31 fPath.setFillType(SkPathFillType::kEvenOdd); in MandolineSlicer()
32 fPath.setIsVolatile(true); in MandolineSlicer()
37 fPath.reset(); in reset()
43 fPath.moveTo(fAnchorPt); in sliceLine()
44 fPath.lineTo(fLastPt); in sliceLine()
45 fPath.lineTo(pt); in sliceLine()
46 fPath.close(); in sliceLine()
61 fPath.moveTo(fAnchorPt); in sliceQuadratic()
62 fPath.lineTo(fLastPt); in sliceQuadratic()
63 fPath.quadTo(p1, p2); in sliceQuadratic()
64 fPath.close(); in sliceQuadratic()
81 fPath.moveTo(fAnchorPt); in sliceCubic()
82 fPath.lineTo(fLastPt); in sliceCubic()
83 fPath.cubicTo(p1, p2, p3); in sliceCubic()
84 fPath.close(); in sliceCubic()
100 fPath.moveTo(fAnchorPt); in sliceConic()
101 fPath.lineTo(fLastPt); in sliceConic()
102 fPath.conicTo(p1, p2, w); in sliceConic()
103 fPath.close(); in sliceConic()
119 const SkPath& path() const { return fPath; } in path()
133 SkPath fPath; member in skiagm::MandolineSlicer