Searched refs:nearestTime (Results 1 - 25 of 31) sorted by relevance

12

/inkscape/src/2geom/
H A Dcurve.h248 virtual Coord nearestTime( Point const& p, Coord a = 0, Coord b = 1 ) const;
251 Coord nearestTime(Point const &p, Interval const &i) const { function in class:Geom::Curve
252 return nearestTime(p, i.min(), i.max());
346 return c.nearestTime(p);
H A Dline.h251 Coord nearestTime(Point const &p) const { function in class:Geom::Line
382 if (distance(pointAt(nearestTime(other._initial)), other._initial) != 0) return false;
383 if (distance(pointAt(nearestTime(other._final)), other._final) != 0) return false;
413 Coord t = line.nearestTime(p);
466 double t = seg.nearestTime(p);
514 return line.pointAt(line.nearestTime(p));
520 return line.segment(line.nearestTime(seg.initialPoint()),
521 line.nearestTime(seg.finalPoint()));
H A Dray.h102 Coord nearestTime(Point const& point) const { function in class:Geom::Ray
127 double t = _ray.nearestTime(_point);
H A Dpathvector.cpp240 boost::optional<PathVectorTime> PathVector::nearestTime(Point const &p, Coord *dist) const function in class:Geom::PathVector
247 PathTime pos = (*this)[i].nearestTime(p, &d);
267 PathTime pos = (*this)[i].nearestTime(p, &d);
H A Dbezier-curve.h160 virtual Coord nearestTime(Point const &p, Coord from = 0, Coord to = 1) const;
275 virtual Coord nearestTime(Point const &p, Coord from = 0, Coord to = 1) const { function in class:Geom::BezierCurveN
276 return BezierCurve::nearestTime(p, from, to);
320 template <> Coord BezierCurveN<1>::nearestTime(Point const &, Coord, Coord) const;
H A Dcircle.h92 Coord nearestTime(Point const &p) const;
H A Dcurve.cpp47 Coord Curve::nearestTime(Point const& p, Coord a, Coord b) const function in class:Geom::Curve
H A Dsbasis-curve.h110 virtual Coord nearestTime( Point const& p, Coord from = 0, Coord to = 1 ) const { function in class:Geom::SBasisCurve
H A Dbezier-curve.cpp220 Coord BezierCurve::nearestTime(Point const &p, Coord from, Coord to) const function in class:Geom::BezierCurve
281 Coord BezierCurveN<1>::nearestTime(Point const& p, Coord from, Coord to) const function in class:Geom::BezierCurveN
H A Dconcepts.h124 t = shape.nearestTime(p);
H A Delliptical-arc.h280 virtual double nearestTime( Point const& p, double from = 0, double to = 1 ) const { function in class:Geom::EllipticalArc
H A Dinterval.h111 Coord nearestTime(Coord v) { function in class:Geom::Interval
H A Dpathvector.h52 * pointAt(), nearestTime() and so on.
272 boost::optional<PathVectorTime> nearestTime(Point const &p, Coord *dist = NULL) const;
H A Dpath.cpp711 np.push_back(it->nearestTime(p));
716 PathTime Path::nearestTime(Point const &p, Coord *dist) const
735 Coord t = c.nearestTime(p);
H A Dcircle.cpp125 Coord Circle::nearestTime(Point const &p) const { function in class:Geom::Circle
H A Dconicsec.h478 Point nearestTime (const Point &P) const function in class:Geom::xAx
486 THROW_LOGICALERROR ("nearestTime: no nearest point found");
H A Dpath.h123 * pointAt(), nearestTime() and so on, or use curveAt() to first obtain the curve, then
577 PathTime nearestTime(Point const &p, Coord *dist = NULL) const;
852 PathTime pt = c.nearestTime(p);
/inkscape/src/live_effects/
H A Dlpe-attach-path.cpp90 start_path_position.param_set_value(transformedpath.nearestTime(start_path_curve_end.getOrigin()).asFlatTime());
145 end_path_position.param_set_value(transformedpath.nearestTime(end_path_curve_end.getOrigin()).asFlatTime());
H A Dlpe-bendpath.cpp201 Geom::Coord nearest_to_ray = ray.nearestTime(knot_pos);
H A Dlpe-perspective-envelope.cpp327 Geom::Point nearest = vert.pointAt(vert.nearestTime(A));
348 Geom::Point nearest = horiz.pointAt(horiz.nearestTime(A));
H A Dlpe-patternalongpath.cpp310 Geom::Coord nearest_to_ray = ray.nearestTime(knot_pos);
H A Dlpe-lattice2.cpp297 Geom::Point nearest = vert.pointAt(vert.nearestTime(A));
318 Geom::Point nearest = horiz.pointAt(horiz.nearestTime(A));
/inkscape/src/display/
H A Ddrawing-image.cpp175 Geom::Point np = l.pointAt(l.nearestTime(p));
/inkscape/src/
H A Dgradient-drag.cpp379 double offset = ls.nearestTime(mouse_p);
392 double offset = ls.nearestTime(mouse_p);
404 offset = ls.nearestTime(mouse_p);
443 Geom::Coord coord = b.nearestTime( mouse_p );
461 Geom::Coord coord = b.nearestTime( mouse_p );
479 Geom::Coord coord = b.nearestTime( mouse_p );
497 Geom::Coord coord = b.nearestTime( mouse_p );
604 Geom::Point nearest = ls.pointAt(ls.nearestTime(p));
1020 p = ls.pointAt(round(ls.nearestTime(p) / snap_fraction) * snap_fraction);
1023 p = ls.pointAt(ls.nearestTime(
[all...]
H A Ddesktop-events.cpp359 Geom::Coord t = line.nearestTime(motion_dt);
440 Geom::Coord t = line.nearestTime(event_dt);

Completed in 47 milliseconds

12