Lines Matching defs:pp
51 PathDescrMoveTo(Geom::Point const &pp)
52 : PathDescr(descr_moveto), p(pp) {}
64 PathDescrLineTo(Geom::Point const &pp)
65 : PathDescr(descr_lineto), p(pp) {}
78 PathDescrBezierTo(Geom::Point const &pp, int n)
79 : PathDescr(descr_bezierto), p(pp), nb(n) {}
94 PathDescrIntermBezierTo(Geom::Point const &pp)
95 : PathDescr(descr_interm_bezier), p(pp) {}
107 PathDescrCubicTo(Geom::Point const &pp, Geom::Point const &s, Geom::Point const& e)
108 : PathDescr(descr_cubicto), p(pp), start(s), end(e) {}
123 PathDescrArcTo(Geom::Point const &pp, double x, double y, double a, bool l, bool c)
124 : PathDescr(descr_arcto), p(pp), rx(x), ry(y), angle(a), large(l), clockwise(c) {}