Ignore:
Timestamp:
11/17/06 10:10:41 (18 years ago)
Author:
mattausch
Message:

removed error in sample registration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/Exporter.h

    r1418 r1764  
    1111#include "Containers.h" 
    1212#include "VssRay.h" 
     13#include "AxisAlignedBox3.h" 
    1314 
    1415namespace GtpVisibilityPreprocessor { 
     
    1819class SceneGraphNode; 
    1920class Ray; 
    20 class AxisAlignedBox3; 
    2121class Intersectable; 
    2222class BspLeaf; 
     
    4848                                  mWireframe(false), 
    4949                                  mUseForcedMaterial(false), 
    50                                   mExportRayDensity(false) 
     50                                  mExportRayDensity(false), 
     51                                  mClampToBox(false) 
    5152  {} 
    5253 
     
    154155          const BvHierarchy &bvHierarchy,  
    155156          const int maxPvs,  
    156           const AxisAlignedBox3 *box = NULL, 
     157          AxisAlignedBox3 *box = NULL, 
    157158          const bool exportBoundingBoxes = true); 
    158159 
     
    163164 
    164165  virtual void ExportPolygon(Polygon3 *poly) = 0; 
     166 
     167  bool mClampToBox; 
     168  AxisAlignedBox3 mBoundingBox; 
    165169}; 
    166170  
Note: See TracChangeset for help on using the changeset viewer.