Lines Matching refs:rest
75 Path &PathVector::pathAt(Coord t, Coord *rest)
77 return const_cast<Path &>(static_cast<PathVector const*>(this)->pathAt(t, rest));
79 Path const &PathVector::pathAt(Coord t, Coord *rest) const
82 if (rest) {
83 *rest = Coord(pos.curve_index) + pos.t;
87 Curve const &PathVector::curveAt(Coord t, Coord *rest) const
90 if (rest) {
91 *rest = pos.t;
298 Coord rest = 0;
299 ret.t = modf(t, &rest);
300 ret.curve_index = rest;