Searched refs:only_cubicbeziers (Results 1 - 2 of 2) sorted by relevance
/inkscape/src/2geom/ |
H A D | sbasis-to-bezier.h | 53 void build_from_sbasis(PathBuilder &pb, D2<SBasis> const &B, double tol, bool only_cubicbeziers); 69 PathVector path_from_piecewise(Piecewise<D2<SBasis> > const &B, double tol, bool only_cubicbeziers = false); 71 Path path_from_sbasis(D2<SBasis> const &B, double tol, bool only_cubicbeziers = false);
|
H A D | sbasis-to-bezier.cpp | 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) { argument 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) { argument 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) { argument [all...] |
Completed in 14 milliseconds