예제 #1
0
		void JointSlider::Attach(Body &body1)
		{
			dJointAttach(this->_id, body1.Id(), 0);
		}
예제 #2
0
		void JointFixed::Attach(Body &body1)
		{
			dJointAttach(this->_id, body1.Id(), 0);
		}
예제 #3
0
		//Overloaded Attach 
		void JointSlider::Attach(Body &body1, Body &body2)
		{
			dJointAttach(this->_id, body1.Id(), body2.Id());
		}
예제 #4
0
		//Overloaded Attach
		void JointFixed::Attach(Body &body1, Body &body2)
		{
			dJointAttach(this->_id, body1.Id(), body2.Id());
		}