Lines Matching refs:fPath
25 fPath.setFillType(SkPath::kEvenOdd_FillType); in MandolineSlicer()
26 fPath.setIsVolatile(true); in MandolineSlicer()
31 fPath.reset(); in reset()
37 fPath.moveTo(fAnchorPt); in sliceLine()
38 fPath.lineTo(fLastPt); in sliceLine()
39 fPath.lineTo(pt); in sliceLine()
40 fPath.close(); in sliceLine()
55 fPath.moveTo(fAnchorPt); in sliceQuadratic()
56 fPath.lineTo(fLastPt); in sliceQuadratic()
57 fPath.quadTo(p1, p2); in sliceQuadratic()
58 fPath.close(); in sliceQuadratic()
75 fPath.moveTo(fAnchorPt); in sliceCubic()
76 fPath.lineTo(fLastPt); in sliceCubic()
77 fPath.cubicTo(p1, p2, p3); in sliceCubic()
78 fPath.close(); in sliceCubic()
94 fPath.moveTo(fAnchorPt); in sliceConic()
95 fPath.lineTo(fLastPt); in sliceConic()
96 fPath.conicTo(p1, p2, w); in sliceConic()
97 fPath.close(); in sliceConic()
113 const SkPath& path() const { return fPath; } in path()
127 SkPath fPath; member in skiagm::MandolineSlicer