|
|
"Margus Ramst" <mar### [at] peakeduee> wrote in message
news:39BAD564.C12B7C40@peak.edu.ee...
> The lathe object creates a surface of revolution, so using your spline in
a
> lathe should do what you need.
Thanks, Margus, for replying to my post. What I have
done so far is to use the prism and revolve it. What I
have to ask now is this: Is there a way to use 80 of these
and union them together (so there are no artifacts - I want
it to look like a smooth surface like an sor object). I
used the code below but need to somehow union them
together (I have thought and thought but have no idea
where to go from here).
Thanks for your help!
Todd
tta### [at] netrelatedcom
> If you want to make a radial array of copies of the actual prism object,
use a
> while loop. Something like:
>
> #declare MyPrism = prism{...}
> #declare Count = 0;
> #declare Number = 20; file://Number of copies to create
> #while(Count < Number)
> object{MyPrism rotate <360 / Number * Count, 0, 0>}
> #declare Count = Count + 1;
> #end
Post a reply to this message
|
|