Searched defs:uskeleton (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/live_effects/
H A Dlpe-bendpath.h59 Geom::Piecewise<Geom::D2<Geom::SBasis> > uskeleton; member in class:Inkscape::LivePathEffect::LPEBendPath
H A Dlpe-recursiveskeleton.cpp86 Piecewise<D2<SBasis> > uskeleton = arc_length_parametrization(path_i,2,.1); local
87 uskeleton = remove_short_cuts(uskeleton,.01);
88 Piecewise<D2<SBasis> > n = rot90(derivative(uskeleton));
91 double scaling = (uskeleton.domain().extent() - toffset)/pattBndsX->extent();
108 output.concat(compose(uskeleton,x)+y*compose(n,x));
H A Dlpe-patternalongpath.cpp180 Piecewise<D2<SBasis> > uskeleton = arc_length_parametrization(path_i,2,.1); local
181 uskeleton = remove_short_cuts(uskeleton,.01);
182 Piecewise<D2<SBasis> > n = rot90(derivative(uskeleton));
189 nbCopies = static_cast<int>(floor((uskeleton.domain().extent() - toffset + xspace)/(pattBndsX->extent()+xspace)));
194 nbCopies = (toffset + pattBndsX->extent() < uskeleton.domain().extent()) ? 1 : 0;
199 scaling = (uskeleton.domain().extent() - toffset)/pattBndsX->extent();
203 // if uskeleton is closed:
205 nbCopies = static_cast<int>(std::floor((uskeleton.domain().extent() - toffset)/(pattBndsX->extent()+xspace)));
207 scaling = (uskeleton
[all...]
H A Dlpe-taperstroke.cpp405 Piecewise<D2<SBasis> > uskeleton = arc_length_parametrization(path_i,2,.1); local
406 uskeleton = remove_short_cuts(uskeleton,.01);
407 Piecewise<D2<SBasis> > n = rot90(derivative(uskeleton));
411 double scaling = (uskeleton.domain().extent() - toffset)/pattBndsX->extent();
429 Piecewise<D2<SBasis> > output_piece = compose(uskeleton,x+offs)+y*compose(n,x+offs);
433 output.concat(compose(uskeleton,x+offs)+y*compose(n,x+offs));

Completed in 21 milliseconds