Lines Matching defs:to
15 double wrap_dist(double from, double to, double size, bool rev) {
17 if(to > from) {
18 return from + (size - to);
20 return from - to;
23 if(to < from) {
24 return to + (size - from);
26 return to - from;
80 // list of sets of edges, each set corresponding to those emanating from the path
184 // A crossing is considered to be a duplicate when it has both t_a and t_b near to another crossing's t_a and t_b
195 crs.erase((rit + 1).base()); // This +1 and .base() construction is needed to convert to a regular iterator