A problem with cubes...

I’ve done a “worm” that U control with the arrow-keys, but between the cubes (glutSolidCube) I get a “crack”, and it dosn’t look good at all, what can I do about this, some kind of smooth or something, anyone???

why don’t implement something like an arc fillet ?

Dolo//\ightY

Arc fillet, what’s that?

suppose you have two unconnected lines:

/
/
/
/ \

you can create an arc fillet by joining these two lines:

______

/
/
/
/ \

or maybe with more than one segment, to make it appear smoother:

  __
.'  '.

/
/
/
/ \

the revenge of ascii art

with your cubes, you can extend the concept to surfaces easily: you just have to retrieve the needed vertices, and connect them with strips.

Dolo//\ightY

[This message has been edited by dmy (edited 03-16-2000).]

[This message has been edited by dmy (edited 03-16-2000).]

And how do I do that??? Any example or piece of code???