Lines Matching defs:trans
502 feed_curve_to_cairo(cairo_t *cr, Geom::Curve const &c, Geom::Affine const & trans, Geom::Rect view, bool optimize_stroke)
516 Geom::Point end_tr = c.finalPoint() * trans;
520 Geom::Rect swept(c.initialPoint()*trans, end_tr);
533 points[0] *= trans;
534 points[1] *= trans;
535 points[2] *= trans;
556 //points[0] *= trans; // don't do this one here for fun: it is only needed for optimized strokes
557 points[1] *= trans;
558 points[2] *= trans;
559 points[3] *= trans;
563 points[0] *= trans; // didn't transform this point yet
579 Geom::Affine xform = a->unitCircleTransform() * trans;
603 // Geom::Point f = a->finalPoint() * trans;
613 feed_curve_to_cairo(cr, *iter, trans, view, optimize_stroke);
642 feed_path_to_cairo (cairo_t *ct, Geom::Path const &path, Geom::Affine trans, Geom::OptRect area, bool optimize_stroke, double stroke_width)
655 Geom::Affine transshift(trans * Geom::Translate(-shift));
690 feed_pathvector_to_cairo (cairo_t *ct, Geom::PathVector const &pathv, Geom::Affine trans, Geom::OptRect area, bool optimize_stroke, double stroke_width)
698 feed_path_to_cairo(ct, *it, trans, area, optimize_stroke, stroke_width);