Searched defs:path_size (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/2geom/
H A Dpath.cpp60 PathInterval::PathInterval(PathTime const &from, PathTime const &to, bool cross_start, size_type path_size) argument
63 , _path_size(path_size)
206 PathInterval PathInterval::from_direction(PathTime const &from, PathTime const &to, bool reversed, size_type path_size)
211 result._path_size = path_size;
214 result._to.normalizeForward(path_size);
216 result._from.normalizeBackward(path_size);
219 result._from.normalizeForward(path_size);
221 result._to.normalizeBackward(path_size);
753 size_type path_size = size_closed();
754 for (size_type i = 0; i < path_size;
[all...]
H A Dpathvector.cpp287 size_type path_size = (*this)[i].size_closed(); local
288 for (size_type j = 0; j < path_size; ++j) {
H A Dpath.h149 void normalizeForward(size_type path_size) { argument
151 curve_index = (curve_index + 1) % path_size;
156 void normalizeBackward(size_type path_size) { argument
158 curve_index = (curve_index - 1) % path_size;
191 * @param path_size Size of the path to which this interval applies, required
193 PathInterval(PathTime const &from, PathTime const &to, bool cross_start, size_type path_size);
219 bool reversed, size_type path_size);
223 bool cross_start, size_type path_size) {
224 PathInterval result(from, to, cross_start, path_size);
240 PathInterval::size_type path_size)
222 from_start_crossing(PathTime const &from, PathTime const &to, bool cross_start, size_type path_size) argument
239 forward_interval(PathTime const &from, PathTime const &to, PathInterval::size_type path_size) argument
248 backward_interval(PathTime const &from, PathTime const &to, PathInterval::size_type path_size) argument
[all...]

Completed in 14 milliseconds