00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include "config_ode.h"
00016 #include "odeHashSpace.h"
00017
00018 TypeHandle OdeHashSpace::_type_handle;
00019
00020 OdeHashSpace::
00021 OdeHashSpace(dSpaceID id) :
00022 OdeSpace(id) {
00023 }
00024
00025 OdeHashSpace::
00026 OdeHashSpace() :
00027 OdeSpace(dHashSpaceCreate(0)) {
00028 }
00029
00030 OdeHashSpace::
00031 OdeHashSpace(OdeSpace &space) :
00032 OdeSpace(dHashSpaceCreate(space.get_id())) {
00033 }
00034
00035 OdeHashSpace::
00036 ~OdeHashSpace() {
00037 }
00038