#endif
-/* local funcs */
-static double dist2(pointf, pointf);
-
void *zmalloc(size_t nbytes)
{
char *rv = malloc(nbytes);
return atoi(p);
}
-static double dist2(p, q) /* return square of dist between p and q */
-pointf p, q;
+static double dist2(pointf p, pointf q) /* return square of dist between p and q */
{
double d0, d1;
+
d0 = p.x - q.x;
d1 = p.y - q.y;
return (d0 * d0 + d1 * d1);
point dotneato_closest(splines * spl, point p)
{
int i, j, k, besti, bestj;
- double bestdist2, d2, dlow2, dhigh2;
+ double bestdist2, d2, dlow2, dhigh2; /* squares of distances */
double low, high, t;
pointf c[4], pt2, pt;
point rv;
besti = bestj = -1;
bestdist2 = 1e+38;
- pt.x = p.x;
- pt.y = p.y;
+ P2PF(p, pt);
for (i = 0; i < spl->size; i++) {
bz = spl->list[i];
for (j = 0; j < bz.size; j++) {
dlow2 = dist2(pt2, pt);
}
} while (1);
- rv.x = pt2.x;
- rv.y = pt2.y;
+ PF2P(pt2, rv);
return rv;
}
int, int, int, box *, box *, int, int);
static void completeregularpath(path *, Agedge_t *, Agedge_t *,
pathend_t *, pathend_t *, box *, int, int);
-#if 0
-static double dist(pointf, pointf);
-#endif
-static double dist2(pointf, pointf);
static int edgecmp(Agedge_t **, Agedge_t **);
static Agedge_t *getmainedge(Agedge_t *);
static box makeflatcomponent(box, box, int, int, int, int, int);
return ans;
}
-static double dist2(p, q) /* square of scalar distance between p and q */
-pointf p, q;
+static double dist2(pointf p, pointf q) /* square of distance between p and q */
{
double d0, d1;
- d0 = p.x - q.x;
- d1 = p.y - q.y;
- return (d0 * d0 + d1 * d1);
-}
-#if 0
-static double dist(p, q) /* scalar distance between p and q */
-pointf p, q;
-{
- double d0, d1;
d0 = p.x - q.x;
d1 = p.y - q.y;
- return sqrt(d0 * d0 + d1 * d1);
+ return (d0 * d0 + d1 * d1);
}
-#endif
point closest(splines * spl, point p)
{
int i, j, k, besti, bestj;
- double bestdist2, d2, dlow2, dhigh2;
+ double bestdist2, d2, dlow2, dhigh2; /* squares of distance */
double low, high, t;
pointf c[4], pt2, pt;
point rv;
besti = bestj = -1;
bestdist2 = 1e+38;
- pt.x = p.x;
- pt.y = p.y;
+ P2PF(p, pt);
for (i = 0; i < spl->size; i++) {
bz = spl->list[i];
for (j = 0; j < bz.size; j++) {
dlow2 = dist2(pt2, pt);
}
} while (1);
- rv.x = pt2.x;
- rv.y = pt2.y;
+ PF2P(pt2, rv);
return rv;
}