Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[Manta] Re: Re: Re: Re: Re: r2300 - in trunk: Engine/Control Engine/LoadBalancers Image Interface include


Chronological Thread 
  • From: "Biagio Cosenza" < >
  • To: "Thiago Ize" < >
  • Cc: , , "Boonthanome Nouanesengsy" < >
  • Subject: [Manta] Re: Re: Re: Re: Re: r2300 - in trunk: Engine/Control Engine/LoadBalancers Image Interface include
  • Date: Wed, 9 Jul 2008 10:00:31 +0200
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version :content-type:references:x-google-sender-auth; b=lgLXHROqkVFIKRs4vd932irLCR1iaHuwvNFdy+LpsEwJLKJjoQBQwWc1Use+JgRIEv 2r9f+ks1VEgqjUX4ahR1fA3aBfVpu7Mxab71KahEqxrYQ5Hy2TJjMfYEkkUQeD6Jqn9e I8fPiNY/9KO6sCAlOGzhNhx7KITNG+u5uhuvM=

I simple rescale with
 
frame->scaleMesh(.004f); 

solved all my problems.


Thanks for your fast answers,
Biagio

On Wed, Jul 9, 2008 at 12:59 AM, Thiago Ize < "> > wrote:
The "sweet spot" depends on whatever t_epsilon is set to. If t_epsilon is set to 1e-10, then I would guess that you would scale from [-1e-5, 1e-5]. If t_epsilon is set to 1e-5, then [-1, 1] would likely be good. The benefit of rescaling the scene versus modifying t_epsilon is that t_epsilon can remain hard coded, which might result in performance improvements. In terms of accuracy, modifying either one is equivalent. I know you asked not to go through the whole ieee 745 thing, but if you want a bit more detail, this has to do with floating point numbers having only a certain number of bits of precision. So for instance, if you are using 32 bit floats, the following: 1+1e-10==1 and 1e10+1==1e10 are actually true. But 1+1e-6==1 and 1e6+1==1e6 are false (as you would expect).

Another option, if playing around with the epsilon value doesn't fix things, is to make manta use doubles instead of floats (ccmake option). This will of course slow down manta, but at least everything is more accurate.

Thiago


Li-Ta Lo wrote:
On Tue, 2008-07-08 at 16:14 -0600, Thiago Ize wrote:
  
If performance does end up suffering, the other option is to rescale the 
scene so it fits inside the "sweet spot". That's what I do in my manta 
projects.

    
Is the "sweet spot" scale still [-1, 1]? Can someone explain it to
me why it is the case without going through the whole ieee 745 thing?

Ollie

  



--
Biagio Cosenza
ISISLab, Dip. di Informatica ed Applicazioni "Renato M. Capocelli"
Universita' degli Studi di Salerno
http://www.dia.unisa.it/~cosenza



Archive powered by MHonArc 2.6.16.

Top of page