open_toontown_panda3d/panda/src/ode/odeUniversalJoint.cxx

38 lines
999 B
C++

// Filename: odeUniversalJoint.cxx
// Created by: joswilso (27Dec06)
//
////////////////////////////////////////////////////////////////////
//
// PANDA 3D SOFTWARE
// Copyright (c) Carnegie Mellon University. All rights reserved.
//
// All use of this software is subject to the terms of the revised BSD
// license. You should have received a copy of this license along
// with this source code in a file named "LICENSE."
//
////////////////////////////////////////////////////////////////////
#include "config_ode.h"
#include "odeUniversalJoint.h"
TypeHandle OdeUniversalJoint::_type_handle;
OdeUniversalJoint::
OdeUniversalJoint(dJointID id) :
OdeJoint(id) {
}
OdeUniversalJoint::
OdeUniversalJoint(OdeWorld &world) :
OdeJoint(dJointCreateUniversal(world.get_id(), 0)) {
}
OdeUniversalJoint::
OdeUniversalJoint(OdeWorld &world, OdeJointGroup &joint_group) :
OdeJoint(dJointCreateUniversal(world.get_id(), joint_group.get_id())) {
}
OdeUniversalJoint::
~OdeUniversalJoint() {
}