24 BulletPlaneShape(LPlane plane) {
26 btVector3 btNormal = LVecBase3_to_btVector3(plane.get_normal());
28 _shape =
new btStaticPlaneShape(btNormal, plane.get_w());
29 _shape->setUserPointer(
this);
36 BulletPlaneShape(
const LVector3 &normal, PN_stdfloat constant) {
38 btVector3 btNormal = LVecBase3_to_btVector3(normal);
40 _shape =
new btStaticPlaneShape(btNormal, constant);
41 _shape->setUserPointer(
this);
51 btVector3 btNormal = copy._shape->getPlaneNormal();
52 PN_stdfloat constant = (PN_stdfloat)_shape->getPlaneConstant();
54 _shape =
new btStaticPlaneShape(btNormal, constant);
55 _shape->setUserPointer(
this);
61 btCollisionShape *BulletPlaneShape::
70 LPlane BulletPlaneShape::
74 btVector3 normal = _shape->getPlaneNormal();
75 return LPlane(normal[0], normal[1], normal[2], (PN_stdfloat)_shape->getPlaneConstant());
81 PN_stdfloat BulletPlaneShape::
82 get_plane_constant()
const {
85 return (PN_stdfloat)_shape->getPlaneConstant();
91 LVector3 BulletPlaneShape::
92 get_plane_normal()
const {
95 return btVector3_to_LVector3(_shape->getPlaneNormal());
104 LVector3 normal = solid->get_normal();
105 PN_stdfloat constant = solid->dist_to_plane(LPoint3(0, 0, 0));
127 get_plane_normal().write_datagram(dg);
143 param->fillin(scan, manager);
152 void BulletPlaneShape::
155 nassertv(_shape ==
nullptr);
160 normal.read_datagram(scan);
164 _shape =
new btStaticPlaneShape(LVecBase3_to_btVector3(normal), constant);
165 _shape->setUserPointer(
this);
166 _shape->setMargin(margin);
PN_stdfloat get_stdfloat()
Extracts either a 32-bit or a 64-bit floating-point number, according to Datagram::set_stdfloat_doubl...
This is the fundamental interface for extracting binary objects from a Bam file, as generated by a Ba...
Base class for objects that can be written to and read from Bam files.
This is the fundamental interface for writing binary objects to a Bam file, to be extracted later by ...
virtual void fillin(DatagramIterator &scan, BamReader *manager)
This internal function is intended to be called by each class's make_from_bam() method to read in all...
virtual void write_datagram(BamWriter *manager, Datagram &dg)
Writes the contents of this object to the datagram for shipping out to a Bam file.
virtual void write_datagram(BamWriter *manager, Datagram &dg)
Writes the contents of this object to the datagram for shipping out to a Bam file.
void add_stdfloat(PN_stdfloat value)
Adds either a 32-bit or a 64-bit floating-point number, according to set_stdfloat_double().
void parse_params(const FactoryParams ¶ms, DatagramIterator &scan, BamReader *&manager)
Takes in a FactoryParams, passed from a WritableFactory into any TypedWritable's make function,...
Similar to MutexHolder, but for a light mutex.
An instance of this class is passed to the Factory when requesting it to do its business and construc...
void register_factory(TypeHandle handle, CreateFunc *func, void *user_data=nullptr)
Registers a new kind of thing the Factory will be able to create.
static WritableFactory * get_factory()
Returns the global WritableFactory for generating TypedWritable objects.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
A class to retrieve the individual data elements previously stored in a Datagram.
TypeHandle is the identifier used to differentiate C++ class types.
static void register_with_read_factory()
Tells the BamReader how to create objects of type BulletShape.
An ordered list of data elements, formatted in memory for transmission over a socket or writing to a ...