Ignore:
Timestamp:
02/05/07 14:33:28 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

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

    r1920 r2091  
    118118 
    119119  virtual void 
    120   ExportGeometry( 
    121         const ObjectContainer &objects,  
    122         const bool exportSingleMesh = false,  
    123         AxisAlignedBox3 *bbox = NULL); 
     120  ExportGeometry(const ObjectContainer &objects,  
     121                                 const bool exportSingleMesh = false,  
     122                                 AxisAlignedBox3 *bbox = NULL); 
    124123 
    125   virtual void 
     124  virtual void  
    126125  ExportMesh(Mesh *mesh) = 0; 
    127126 
     
    137136  void SetFilled() { mWireframe = false; } 
    138137   
    139   void SetForcedMaterial(const Material &m) { 
    140     mForcedMaterial = m; 
    141     mUseForcedMaterial = true; 
     138  void SetForcedMaterial(const Material &m)  
     139  { 
     140          mForcedMaterial = m; 
     141          mUseForcedMaterial = true; 
    142142  } 
    143   void ResetForcedMaterial() { 
    144     mUseForcedMaterial = false; 
     143 
     144  void ResetForcedMaterial()  
     145  { 
     146          mUseForcedMaterial = false; 
    145147  } 
    146148     
     
    152154  void ExportKdIntersectable(const KdIntersectable &kdObj); 
    153155 
    154   bool ExportBvHierarchy( 
    155           const BvHierarchy &bvHierarchy,  
    156           const float maxPvs,  
    157           AxisAlignedBox3 *box = NULL, 
    158           const bool exportBoundingBoxes = true); 
     156  bool ExportBvHierarchy(const BvHierarchy &bvHierarchy,  
     157                                                 const float maxPvs,  
     158                                                 AxisAlignedBox3 *box = NULL, 
     159                                                 const bool exportBoundingBoxes = true); 
    159160 
    160161  virtual void ExportMeshInstance(MeshInstance *mi); 
    161162 
    162   virtual void 
    163   ExportTransformedMeshInstance(TransformedMeshInstance *mi); 
     163  virtual void ExportTransformedMeshInstance(TransformedMeshInstance *mi); 
    164164 
    165   virtual void ExportPolygon(Polygon3 *poly) = 0; 
     165  virtual void  
     166  ExportPolygon(Polygon3 *poly) = 0; 
     167 
     168 
     169  /////////////////////////// 
    166170 
    167171  bool mClampToBox; 
Note: See TracChangeset for help on using the changeset viewer.