|
|
|
|
|
|
| |
| |
|
|
|
|
| |
| |
|
|
I added a bird object include file into my scene, but the bird is bigger
than my scene... how do i make the bird smaller?? i have no idea..
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
web.46d03851993e0b781aab3f370@news.povray.org...
>I added a bird object include file into my scene, but the bird is bigger
> than my scene... how do i make the bird smaller?? i have no idea..
>
>
scale it down
object{name_of_your_bird scale 0.01}// or whatever value you need
Marc
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
"M_a_r_c" <jac### [at] wanadoofr> wrote:
> web.46d03851993e0b781aab3f370@news.povray.org...
> >I added a bird object include file into my scene, but the bird is bigger
> > than my scene... how do i make the bird smaller?? i have no idea..
> >
> >
>
> scale it down
>
> object{name_of_your_bird scale 0.01}// or whatever value you need
>
> Marc
i tried object{"bird.inc" scale 0.01} and it didnt work ><
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
web.46d051e12dcf28c51aab3f370@news.povray.org...
> "M_a_r_c" <jac### [at] wanadoofr> wrote:
>> web.46d03851993e0b781aab3f370@news.povray.org...
>> >I added a bird object include file into my scene, but the bird is bigger
>> > than my scene... how do i make the bird smaller?? i have no idea..
>> >
>> >
>>
>> scale it down
>>
>> object{name_of_your_bird scale 0.01}// or whatever value you need
>>
>> Marc
>
> i tried object{"bird.inc" scale 0.01} and it didnt work ><
>
Eerr that's not exactly what I meant :-)
"bird.inc" is the name of your include file.
Is there a declaration in that file like
#declare Obj_name= followed by the actual object, maybe a mesh or mesh2 with
lots of data lines?
"Obj_name" is an example name, it could be "Bird" or anything except a
POVRay keyword
If yes, there must be at the end of bird.inc or somewhere in you main file a
line like
object{Obj_name}
It is in this block that you must put the scale
object{Obj_name scale 0.01}
If no declaration and if you have only one mesh, put the scale just before
the last "}" of the bird.inc file
I admit this is not cristal clear but without seeing the code ...
HTH
Marc
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |
| |
|
|
k1s3k1 nous apporta ses lumieres en ce 2007/08/25 10:10:
> I added a bird object include file into my scene, but the bird is bigger
> than my scene... how do i make the bird smaller?? i have no idea..
>
>
It may be that the bird is around the camera. If that's the case, you should
move the bird ir the camera.
--
Alain
-------------------------------------------------
When you don’t know what to do, walk fast and look worried.
Post a reply to this message
|
|
| |
| |
|
|
|
|
| |