47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
/**
|
|
* 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."
|
|
*
|
|
* @file odePlaneGeom.cxx
|
|
* @author joswilso
|
|
* @date 2006-12-27
|
|
*/
|
|
|
|
#include "config_ode.h"
|
|
#include "odePlaneGeom.h"
|
|
|
|
TypeHandle OdePlaneGeom::_type_handle;
|
|
|
|
OdePlaneGeom::
|
|
OdePlaneGeom(dGeomID id) :
|
|
OdeGeom(id) {
|
|
}
|
|
|
|
OdePlaneGeom::
|
|
OdePlaneGeom(dReal a, dReal b, dReal c, dReal d) :
|
|
OdeGeom(dCreatePlane(nullptr, a, b, c, d)) {
|
|
}
|
|
|
|
OdePlaneGeom::
|
|
OdePlaneGeom(const LVecBase4f ¶ms) :
|
|
OdeGeom(dCreatePlane(nullptr, params[0], params[1], params[2], params[3])) {
|
|
}
|
|
|
|
OdePlaneGeom::
|
|
OdePlaneGeom(OdeSpace &space, dReal a, dReal b, dReal c, dReal d) :
|
|
OdeGeom(dCreatePlane(space.get_id(), a, b, c, d)) {
|
|
}
|
|
|
|
OdePlaneGeom::
|
|
OdePlaneGeom(OdeSpace &space, const LVecBase4f ¶ms) :
|
|
OdeGeom(dCreatePlane(space.get_id(), params[0], params[1], params[2], params[3])) {
|
|
}
|
|
|
|
OdePlaneGeom::
|
|
~OdePlaneGeom() {
|
|
}
|