|
|
"Wade" <Zav### [at] aolcom> wrote in message news:3ba21537$1@news.povray.org...
> How can I learn placing objects by their coordinates?
>
Same way you get to Carnegie Hall... ;)
That aside, a trap for beginners is not to understand why translating then
scaling produces such different results to scaling then translating.
for example:
sphere{0,1 scale 2 translate x*2 pigment{rgb <1,0,0>} // centre of sphere is at
x=2
sphere{0,1 translate x*2 scale 2 pigment{rgb <0,1,0>} // centre of sphere is at
x=4
My general rule is "open the door", aka scale, rotate, translate or "grasp the
handle, turn it and open the door". There are many times to break this rule, but
you will know when they are...
Also, creating unions of related objects and then translating the union can
avoid much arsing about (technical term).
Post a reply to this message
|
|