Ignore:
Timestamp:
06/07/06 18:38:29 (18 years ago)
Author:
mattausch
Message:

environment as a singleton

File:
1 edited

Legend:

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

    r1002 r1004  
    256256  } 
    257257 
    258   virtual int 
    259   CastRay( 
    260           Ray &ray 
    261           ); 
     258  virtual int CastRay(Ray &ray); 
    262259 
    263260  virtual bool IsConvex() { return mMesh->mIsConvex; } 
     
    303300        class if the same mesh should be instantiated on different places. 
    304301*/ 
    305 class TransformedMeshInstance : public MeshInstance 
     302class TransformedMeshInstance: public MeshInstance 
    306303{ 
    307304public: 
     
    313310  virtual int CastRay(Ray &ray); 
    314311 
     312  virtual int CastRay(Ray &ray, const vector<int> &faces); 
     313 
    315314  virtual int Type() const { return TRANSFORMED_MESH_INSTANCE; } 
    316315 
     
    329328  void GetWorldTransform(Matrix4x4 &m); 
    330329 
    331   /** Transforms mesh- 
     330  /** Transforms a mesh according to the stored world transform. 
    332331        @param transformedMesh returns the tranformed mesh. 
    333332  */ 
Note: See TracChangeset for help on using the changeset viewer.