I don't think transforms are being parsed properly in the function
Parse_Media() in the file parstxtr.c. Shouldn't this:
CASE (TRANSFORM_TOKEN)
GET(TRANSFORM_ID_TOKEN)
Transform_Density (IMedia->Density, &Local_Trans);
END_CASE
be this:
CASE (TRANSFORM_TOKEN)
GET(TRANSFORM_ID_TOKEN)
Transform_Density (IMedia->Density, (TRANSFORM *)Token.Data);
END_CASE
?
--
Christopher James Huff - Personal e-mail: chr### [at] yahoocom
TAG(Technical Assistance Group) e-mail: chr### [at] tagpovrayorg
Personal Web page: http://chrishuff.dhs.org/
TAG Web page: http://tag.povray.org/
Post a reply to this message
|