48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
// Filename: odePlaneGeom.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 "odePlaneGeom.h"
|
|
|
|
TypeHandle OdePlaneGeom::_type_handle;
|
|
|
|
OdePlaneGeom::
|
|
OdePlaneGeom(dGeomID id) :
|
|
OdeGeom(id) {
|
|
}
|
|
|
|
OdePlaneGeom::
|
|
OdePlaneGeom(dReal a, dReal b, dReal c, dReal d) :
|
|
OdeGeom(dCreatePlane(0, a, b, c, d)) {
|
|
}
|
|
|
|
OdePlaneGeom::
|
|
OdePlaneGeom(const LVecBase4f ¶ms) :
|
|
OdeGeom(dCreatePlane(0, 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() {
|
|
}
|