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

/inkscape/src/2geom/
H A Dpathvector.cpp108 OptRect bound; local
109 if (empty()) return bound;
111 bound = front().boundsFast();
113 bound.unionWith(it->boundsFast());
115 return bound;
120 OptRect bound; local
121 if (empty()) return bound;
123 bound = front().boundsExact();
125 bound.unionWith(it->boundsExact());
127 return bound;
[all...]
H A Dbezier-clipping.cpp358 * This bounds are returned through the output Interval parameter"bound".
363 Interval bound(0, 0);
365 bound.expandTo(signed_distance(c[i], l));
367 return bound;
377 // only when the lower or the upper bound is crossed
385 * line "l" and the interval range "bound", the new parameter interval for
390 Interval const &bound)
409 // std::cerr << "bound : " << bound << std::endl;
411 plower = (p[0][Y] < bound
388 clip_interval(std::vector<Point> const& B, Line const &l, Interval const &bound) argument
501 Interval bound = fat_line_bounds(A, bl); local
[all...]
/inkscape/src/ui/tool/
H A Dcontrol-point-selection.cpp232 Geom::OptInterval bound; local
234 bound.unionWith(Geom::OptInterval((*i)->position()[d]));
237 if (!bound) { return; }
248 new_coord=bound->middle();
251 new_coord=bound->min();
254 new_coord=bound->max();
276 Geom::OptInterval bound; local
282 bound.unionWith(Geom::OptInterval(pos[d]));
285 if (!bound) { return; }
288 double step = size() == 1 ? 0 : bound
[all...]

Completed in 18 milliseconds