Ignore:
Timestamp:
01/19/06 23:36:01 (18 years ago)
Author:
mattausch
Message:

started implementing merge visualization !not working!!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/AxisAlignedBox3.cpp

    r547 r557  
    17591759} 
    17601760 
     1761 
    17611762bool AxisAlignedBox3::GetRaySegment(const Ray &ray,  
    17621763                                                                        float &minT,  
    17631764                                                                        float &maxT) const 
    17641765{ 
    1765         maxT = 1e6; 
     1766        maxT = 1e15; 
    17661767        minT = 0; 
    17671768         
    1768         // test with  bounding box 
     1769        // test with bounding box 
    17691770        if (!GetMinMaxT(ray, &minT, &maxT)) 
    17701771                return false; 
    17711772 
    1772         if (minT < 0) // start ray from origin 
     1773        if (minT < 0) 
    17731774                minT = 0; 
    17741775 
Note: See TracChangeset for help on using the changeset viewer.