|
|
On Tue, 12 Oct 1999 13:39:34 -0700, Ken <tyl### [at] pacbellnet> wrote:
> Is it possible to extend (not extrude) the sine wave pattern into the
>z plane as well ?
>
> The final result if I can describe it correctly would be alternating
>mounds and valleys.
>
>Anyone ?
Try:
#declare X=-50;
#while (X<50)
#declare Z=-50;
#while (Z<50)
sphere { <X,5*sin((X+Z)/30),Z>,1 }
#declare Z=Z+1;
#end;
#declare X=X+1;
#end
Unchecked!!!
Peter Popov
ICQ: 15002700
Post a reply to this message
|
|