Lines Matching defs:from
89 static void add_cap(SPCurve *curve, Geom::Point const &from, Geom::Point const &to, double rounding);
281 // 1a. calculate nib angle from input device tilt:
323 // Try to detect a sudden flip when the new angle differs too much from the previous for the
520 // distance from pointer to nearest
582 || (this->hatch_spacing > 0 && hatch_dist > 50 * this->hatch_spacing) // went too far from the guide
971 Geom::Point const &from,
975 if (Geom::L2( to - from ) > DYNA_EPSILON) {
976 Geom::Point vel = rounding * Geom::rot90( to - from ) / sqrt(2.0);
979 Geom::Point v = mag * Geom::rot90( to - from ) / Geom::L2( to - from );
980 curve->curveto(from + v, to + v, to);