POV-Ray : Newsgroups : povray.bugreports : A povray bug? Server Time
28 May 2024 23:12:33 EDT (-0400)
  A povray bug? (Message 1 to 1 of 1)  
From: Panagiotis Piperopoulos
Subject: A povray bug?
Date: 29 Dec 1998 19:17:28
Message: <368970F9.29B9@med.auth.gr>
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)

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