|
From: Nigel N. <nN...@au...> - 2002-01-28 07:26:01
|
A query about the sequence implied below:
See Line 1541, graph3d.c,v 1.55 2002/01/26
if (two_edge3d_intersect(points, i, lx, ly, lz)) {
map3d_xy(lx[0], ly[0], lz[0], &x, &y);
map3d_xy(lx[1], ly[1], lz[1], &xx0, &yy0);
##############################################################
Line 1541 $Id: graph3d.c,v 1.55 2002/01/26 17:55:07 joze Exp $
Should the assignment to z be shifted down 6 lines, so that,
like the other changes, it comes below the "else" ?
clip_move(x, y);
z = (points[i - step].z + points[i].z) * .5; <=== is
#ifdef PM3D
if (color_from_column)
z = (points[i - step].ylow + points[i].ylow) * .5;
else
#endif
<=== ??
set_color(z2gray(z));
clip_vector(xx0, yy0);
}
}
}
|