AnimatLab  2
Test
VsBoxTest.h
1 
2 #pragma once
3 
4 
5 namespace VortexAnimatSim
6 {
7  namespace Environment
8  {
9 
15  namespace Bodies
16  {
17 
19  {
20  protected:
21  Vx::VxPart* part;
22  osg::ref_ptr<osg::MatrixTransform> node;
23 
24  virtual void CreateGraphicsGeometry();
25  virtual void CreatePhysicsGeometry();
26  virtual void ResizePhysicsGeometry();
27 
28  public:
29  VsBoxTest();
30  virtual ~VsBoxTest();
31 
32  virtual void CreateParts();
33  virtual void CreateJoints();
34  };
35 
36  } //Bodies
37  } // Environment
38 } //VortexAnimatSim
Classes for implementing the cm-labs vortex physics engine for AnimatLab.
The Box base class.
Definition: Box.h:42