| 11 | using namespace gte; |
| 12 | |
| 13 | BspNode::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 | |
| 23 | BspNode::BspNode(Plane3<float> const& modelPlane) |
| 24 | { |
nothing calls this directly
no outgoing calls
no test coverage detected