AnimatLab  2
Test
RbCylinder.h
1 // RbCylinder.h: interface for the RbCylinder class.
2 //
4 
5 #pragma once
6 
7 namespace RoboticsAnimatSim
8 {
9  namespace Environment
10  {
11  namespace Bodies
12  {
13 
15  {
16  protected:
17 
18  public:
19  RbCylinder();
20  virtual ~RbCylinder();
21 
22  virtual void CreateParts();
23  virtual void CreateJoints();
24  };
25 
26  } //Bodies
27  } // Environment
28 } //RoboticsAnimatSim
A common class for all rigid body data specific to vortex.
Definition: RbRigidBody.h:52
Classes for implementing the cm-labs vortex physics engine for AnimatLab.
the Cylinder base class.
Definition: Cylinder.h:24