AnimatLab  2
Test
RbLine.h
1 // RbLine.h: interface for the RbLine class.
2 //
4 #pragma once
5 
6 namespace RoboticsAnimatSim
7 {
8  namespace Environment
9  {
10 
11  class ROBOTICS_PORT RbLine : public RbRigidBody
12  {
13  protected:
14  virtual void SetThisPointers();
15 
16  public:
17  RbLine();
18  virtual ~RbLine();
19 
20  virtual void Initialize() {};
21  virtual void ResetSimulation();
22  virtual void AfterResetSimulation();
23  virtual void StepSimulation(float fltTension);
24  virtual void CreateParts();
25  };
26 
27  } // Visualization
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.