|
|
> prism{...[start of your prism]
>
> #local Angle = Out_Start_Angle; #local To_Radiant = 1/pi/2;
> #while(Angle < Out_End_Angle)
> <sin(Angle*To_Radiant), cos(Angle*To_Radiant)>*Out_Radius,
> #local Angle = Angle + Step;
> #end
> #local Angle = In_Start_Angle; #local To_Radiant = 1/pi/2;
> #while(Angle > In_End_Angle)
> <sin(Angle*To_Radiant), cos(Angle*To_Radiant)>*In_Radius,
> #local Angle = Angle - Step;
> #end
>
> [rest of your prism]
> }
>
Thanks for this solution. It certainly works in combination with cleaning the
ends using CSG as well. Looks like I have options now.
Post a reply to this message
|
|