Ignore:
Timestamp:
11/15/05 01:32:10 (19 years ago)
Author:
mattausch
Message:

worked on view space partition kd tree

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/VssRay.h

    r410 r411  
    6161  } 
    6262         
    63         VccRay(const Ray &ray): 
    64   VccRay(ray.GetLoc(), ray.Extrap(ray.intersections[0].mT),  ray.intersections[0].mObject, ray.sourceObject.mObject) 
    65   {} 
     63        VssRay(const Ray &ray) 
     64                :mOrigin(ray.GetLoc()),  
     65                mTermination(ray.Extrap(ray.intersections[0].mT)), 
     66                mOriginObject(ray.sourceObject.mObject), 
     67                mTerminationObject(ray.intersections[0].mObject), 
     68                mRefCount(0), 
     69                mFlags(0), 
     70                mMailbox(-1) 
     71        {} 
     72 
    6673  void Precompute() { 
    6774    mFlags = 0; 
Note: See TracChangeset for help on using the changeset viewer.