MCPcopy Create free account
hub / github.com/davideberly/GeometricTools / BspNode

Method BspNode

GTE/Graphics/BspNode.cpp:13–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11using namespace gte;
12
13BspNode::BspNode()
14 :
15 mModelPlane{ 0.0f, 0.0f, 0.0f, 0.0f },
16 mWorldPlane{ 0.0f, 0.0f, 0.0f, 0.0f }
17{
18 mChild.push_back(nullptr); // left child
19 mChild.push_back(nullptr); // middle child
20 mChild.push_back(nullptr); // right child
21}
22
23BspNode::BspNode(Plane3<float> const& modelPlane)
24{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected