~robot3d-team/robot3d/trunk

« back to all changes in this revision

Viewing changes to inc/srBody/sssaActiveWheel.h

  • Committer: Anne van Rossum
  • Date: 2010-08-10 15:58:55 UTC
  • Revision ID: anne@gamix-20100810155855-kve7x2vwouagdij9
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//! Specialized body class.
 
2
 
 
3
/*!
 
4
 * Predefined body class. Ready to use in a RobotActor.
 
5
 * This body represents the current robot of SSSA.
 
6
 *
 
7
 * @author Lutz Winkler
 
8
 *
 
9
 */
 
10
 
 
11
#ifndef SSSAACTIVEWHEEL_H_
 
12
#define SSSAACTIVEWHEEL_H_
 
13
 
 
14
#include "../../basic/bodies/cylinder.h"
 
15
 
 
16
// TODO: when available, implement new SSSA robot design.
 
17
 
 
18
namespace srCore {
 
19
 
 
20
class SSSAActiveWheel : public Cylinder
 
21
{
 
22
public:
 
23
 
 
24
        //! Constructor
 
25
        /*! @param id                                           a 16bit id, used to set the colliding bit parameter.
 
26
         *      @param x, y, z                                  the position of the hinge in the world coordinate system.
 
27
         *  @param heading, pitch, roll         the orientation of the axis of the hinge in the world coordinate system.
 
28
         *  @param Scene                                        the scene in which the body should be placed.
 
29
         *  @param osgGroup                                     using this group, another scene will be created that will be used by sensors
 
30
         *
 
31
         */
 
32
        SSSAActiveWheel (       RobotActorBase* robot,
 
33
                        float x, float y, float z,
 
34
                        float heading, float pitch, float roll);
 
35
 
 
36
protected:
 
37
        virtual ~SSSAActiveWheel ();
 
38
 
 
39
};
 
40
}
 
41
 
 
42
#endif /*SSSAACTIVEWHEEL_H_*/