39 lines
876 B
C++
39 lines
876 B
C++
// Filename: odeSimpleSpace.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 "odeSimpleSpace.h"
|
|
|
|
TypeHandle OdeSimpleSpace::_type_handle;
|
|
|
|
OdeSimpleSpace::
|
|
OdeSimpleSpace(dSpaceID id) :
|
|
OdeSpace(id) {
|
|
}
|
|
|
|
OdeSimpleSpace::
|
|
OdeSimpleSpace() :
|
|
OdeSpace(dSimpleSpaceCreate(0)) {
|
|
}
|
|
|
|
OdeSimpleSpace::
|
|
OdeSimpleSpace(OdeSpace &space) :
|
|
OdeSpace(dSimpleSpaceCreate(space.get_id())) {
|
|
}
|
|
|
|
OdeSimpleSpace::
|
|
~OdeSimpleSpace() {
|
|
}
|
|
|