Lines Matching refs:fPath
57 const int n = fPath.CountPoints(); in Draw()
61 shape.MoveTo(fPath.PointAt(i)); in Draw()
63 shape.LineTo(fPath.PointAt(i)); in Draw()
65 if (fPath.IsClosed()) shape.Close(); in Draw()
69 ShapeLPB path(&fPath, fWidth, LineCapMode(), LineJoinMode(), LineMiterLimit()); in Draw()
96 fCurPoint = fPath.CountPoints(); in MouseDown()
97 fPath.AddPoint(point); in MouseDown()
100 for (int i = 0; i < fPath.CountPoints(); i++) { in MouseDown()
101 BPoint p = point - fPath.PointAt(i); in MouseDown()
105 fPath.AtPut(fCurPoint, point); in MouseDown()
112 fPath.AtPut(fCurPoint, point); in MouseMoved()
122 if (close) fPath.Close(); in SetClose()
123 else fPath.Open(); in SetClose()