POV-Ray : Newsgroups : povray.unix : Tru64 pov3.5 mesh problem : Re: Tru64 pov3.5 mesh problem Server Time
8 Jul 2024 17:14:06 EDT (-0400)
  Re: Tru64 pov3.5 mesh problem  
From: Lothar Esser
Date: 28 Apr 2003 19:09:33
Message: <3EADB4AD.E5C62882@helix.nih.gov>
More precisely the values passed on to

Mesh_Hash_UV

are FP_POS_DNORM which probably points to some uninitialized variable problem.
Unfortunately I cannot track that down.
So instead of rounding to the nearest integer, I check the fp_class and when it is
DNORM then I arbitrarily set it to 0.0;
if ( fp_class(P[U])  < 8 ) P[U] = 0.0; if ( fp_class(P[V])  < 8 ) P[V] = 0.0;
This works perfectly so far.

Any other ideas ?

Lothar


Post a reply to this message

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