Lines Matching defs:d1
26 * defined by the points p such that dot(n0, p) == d0 and dot(n1, p) == d1.
32 * defined by n0.X = d0 and x1.X = d1. The algorithm is as follows:
46 * c = d0 f = d1
70 Geom::Point const &n1, double const d1,
75 n0[Geom::Y] * d1;
76 /* X = (-d1, d0) dot (n0[Y], n1[Y]) */
86 double Y = n0[Geom::X] * d1 -
102 Geom::Point d1 = p1 - p0;
105 double c = dot(Geom::rot90(d1), d2);
112 if ( ( d1[0] * d2[0] < 0 ) ||
113 ( d1[1] * d2[1] < 0 ) ) {
115 } else if ( dot(d1,d1) < dot(d2,d2) ) {
175 double d1 = dot(n1,p10);
176 return line_intersection(n0, d0, n1, d1, result);
199 double d1 = dot(n1,p10);
200 return line_intersection(n0, d0, n1, d1, result);
221 double d1 = dot(n1,p10);
222 return line_intersection(n0, d0, n1, d1, result);