Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ode/ode-0.9/contrib/DotNetManaged/JointFixed.cpp @ 216

Last change on this file since 216 was 216, checked in by mathiask, 16 years ago

[Physik] add ode-0.9

File size: 1.1 KB
Line 
1#include "StdAfx.h"
2
3#include <ode/ode.h>
4#include "jointfixed.h"
5
6namespace ODEManaged
7{
8
9        //Constructors
10
11                JointFixed::JointFixed(void) : Joint(){}
12
13
14                JointFixed::JointFixed(World &world)
15                {
16                        if(this->_id) dJointDestroy(this->_id);
17                        _id = dJointCreateFixed(world.Id(),0);
18                }
19               
20
21                JointFixed::JointFixed(World &world, JointGroup &jointGroup)
22                {
23                        if(this->_id) dJointDestroy(this->_id);
24                        _id = dJointCreateFixed(world.Id(), jointGroup.Id());
25                }
26
27
28        //Destructor
29
30                JointFixed::~JointFixed(void){}
31
32
33        //Methods
34
35                //Overloaded Create
36                void JointFixed::Create(World &world, JointGroup &jointGroup)
37                {
38                        if(this->_id) dJointDestroy(this->_id);
39                        _id = dJointCreateFixed(world.Id(), jointGroup.Id());
40                }
41
42                void JointFixed::Create(World &world)
43                {
44                        if(this->_id) dJointDestroy(this->_id);
45                        _id = dJointCreateFixed(world.Id(), 0);
46                }
47
48
49                //Overloaded Attach
50                void JointFixed::Attach(Body &body1, Body &body2)
51                {
52                        dJointAttach(this->_id, body1.Id(), body2.Id());
53                }
54
55                void JointFixed::Attach(Body &body1)
56                {
57                        dJointAttach(this->_id, body1.Id(), 0);
58                }
59
60
61                //Fixed
62                void JointFixed::SetFixed(void)
63                {
64                        dJointSetFixed(this->_id);
65                }
66
67}
Note: See TracBrowser for help on using the repository browser.