POV-Ray : Newsgroups : povray.newusers : placing objects by their coordinates : Re: placing objects by their coordinates Server Time
5 Sep 2024 06:15:02 EDT (-0400)
  Re: placing objects by their coordinates  
From: Simon
Date: 14 Sep 2001 15:11:41
Message: <3ba2566d@news.povray.org>
> How can I learn placing objects by their coordinates?
>

Perhaps it would be easier for you to use meters and not pov units.
You could do something like this:

#declare m=3;               //3 pov units =1 meter
#declare cm=m/100;
#declare km=m*1000;

Then you could use this to place you objects
for example:

box{
    <-35*cm,2*m,0.2*km>
    <50*cm,0,0>}


Post a reply to this message

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