Lines Matching refs:only_cubicbeziers
472 If only_cubicbeziers is true, the resulting path may only contain CubicBezier curves.
474 void build_from_sbasis(Geom::PathBuilder &pb, D2<SBasis> const &B, double tol, bool only_cubicbeziers) {
479 if( !only_cubicbeziers && (sbasis_size(B) <= 1) ) {
488 build_from_sbasis(pb, compose(B, Linear(0, 0.5)), tol, only_cubicbeziers);
489 build_from_sbasis(pb, compose(B, Linear(0.5, 1)), tol, only_cubicbeziers);
497 If only_cubicbeziers is true, the resulting path may only contain CubicBezier curves.
500 path_from_sbasis(D2<SBasis> const &B, double tol, bool only_cubicbeziers) {
503 build_from_sbasis(pb, B, tol, only_cubicbeziers);
512 If only_cubicbeziers is true, the resulting path may only contain CubicBezier curves.
516 path_from_piecewise(Geom::Piecewise<Geom::D2<Geom::SBasis> > const &B, double tol, bool only_cubicbeziers) {
531 build_from_sbasis(pb, B[i], tol, only_cubicbeziers);
543 build_from_sbasis(pb, B[i], tol, only_cubicbeziers);