POV-Ray : Newsgroups : povray.newusers : I am stuck!! : Re: I am stuck!! Server Time
28 Jul 2024 22:28:37 EDT (-0400)
  Re: I am stuck!!  
From: Tim Attwood
Date: 9 Jul 2007 05:27:32
Message: <4691ff84$1@news.povray.org>
What do you really want to acomplish?

You could use an orthograpic camera if you really
want a flat looking image, (all points translated to y=0?)

Or you could #declare a tranform for later use.
#declare Foo = transform{translate <...> rotate <...>};
object {Scene transform{Foo}}

Or you could #declare your control points.
#declare CylA = <...>;
#declare CylB = <...>;
cylinder {CylA,CylB,R}// original
cylinder {<CylA.x,0,CylA.z>,<CylB.x,0,CylB.z>,R}// z ignored

Etc.


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.