/inkscape/src/2geom/ |
H A D | curve.h | 248 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 D | line.h | 251 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 D | ray.h | 102 Coord nearestTime(Point const& point) const { function in class:Geom::Ray 127 double t = _ray.nearestTime(_point);
|
H A D | pathvector.cpp | 240 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 D | bezier-curve.h | 160 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 D | circle.h | 92 Coord nearestTime(Point const &p) const;
|
H A D | curve.cpp | 47 Coord Curve::nearestTime(Point const& p, Coord a, Coord b) const function in class:Geom::Curve
|
H A D | sbasis-curve.h | 110 virtual Coord nearestTime( Point const& p, Coord from = 0, Coord to = 1 ) const { function in class:Geom::SBasisCurve
|
H A D | bezier-curve.cpp | 220 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 D | concepts.h | 124 t = shape.nearestTime(p);
|
H A D | elliptical-arc.h | 280 virtual double nearestTime( Point const& p, double from = 0, double to = 1 ) const { function in class:Geom::EllipticalArc
|
H A D | interval.h | 111 Coord nearestTime(Coord v) { function in class:Geom::Interval
|
H A D | pathvector.h | 52 * pointAt(), nearestTime() and so on. 272 boost::optional<PathVectorTime> nearestTime(Point const &p, Coord *dist = NULL) const;
|
H A D | path.cpp | 711 np.push_back(it->nearestTime(p)); 716 PathTime Path::nearestTime(Point const &p, Coord *dist) const 735 Coord t = c.nearestTime(p);
|
H A D | circle.cpp | 125 Coord Circle::nearestTime(Point const &p) const { function in class:Geom::Circle
|
H A D | conicsec.h | 478 Point nearestTime (const Point &P) const function in class:Geom::xAx 486 THROW_LOGICALERROR ("nearestTime: no nearest point found");
|
H A D | path.h | 123 * 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 D | lpe-attach-path.cpp | 90 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 D | lpe-bendpath.cpp | 201 Geom::Coord nearest_to_ray = ray.nearestTime(knot_pos);
|
H A D | lpe-perspective-envelope.cpp | 327 Geom::Point nearest = vert.pointAt(vert.nearestTime(A)); 348 Geom::Point nearest = horiz.pointAt(horiz.nearestTime(A));
|
H A D | lpe-patternalongpath.cpp | 310 Geom::Coord nearest_to_ray = ray.nearestTime(knot_pos);
|
H A D | lpe-lattice2.cpp | 297 Geom::Point nearest = vert.pointAt(vert.nearestTime(A)); 318 Geom::Point nearest = horiz.pointAt(horiz.nearestTime(A));
|
/inkscape/src/display/ |
H A D | drawing-image.cpp | 175 Geom::Point np = l.pointAt(l.nearestTime(p));
|
/inkscape/src/ |
H A D | gradient-drag.cpp | 379 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 D | desktop-events.cpp | 359 Geom::Coord t = line.nearestTime(motion_dt); 440 Geom::Coord t = line.nearestTime(event_dt);
|