|
|
The attached code is causing povray to crash
The promblem is solved if we replace the rotation angle on y - axis by (
360 - 45 ) instead of -45
this crashes
height_field
{
tga "test4.tga" smooth
translate<-1, 0, -1>
rotate <0, -45, 0>
translate<1, 0, 1>
texture{ pigment { color Red } }
}
this is not
height_field
{
tga "test4.tga" smooth
translate<-1, 0, -1>
rotate <0, 360-45, 0>
translate<1, 0, 1>
texture{ pigment { color Red } }
}
Post a reply to this message
Attachments:
Download 'error.zip' (8 KB)
|
|