@@ 461,7 461,6 @@ createplane(Scene *s, double width, double height, double xsegs, double ysegs, i
Mesh *
createbox(Scene *s, double width, double height, double depth, int color)
{
- int i;
Mesh *m = createplane(s, width, height, 1, 1, color);
extrude(m, Pt3d(0, 0, depth), color);
return m;
@@ 470,7 469,6 @@ createbox(Scene *s, double width, double height, double depth, int color)
Mesh *
createicosaedron(Scene *s, double radius, int color)
{
- int i;
Mesh *m = addmesh(s);
double t = (1.0 + sqrt(5.0)) / 2.0;
addvertex(m, -1, t, 0);