| 99 | } |
| 100 | |
| 101 | bool BaseStream::ReadBoundingBox(BoundingBox* value) |
| 102 | { |
| 103 | Vector3 minPos; |
| 104 | Vector3 maxPos; |
| 105 | |
| 106 | ReadVector3(&minPos); |
| 107 | ReadVector3(&maxPos); |
| 108 | |
| 109 | BoundingBox::CreateFromPoints(*value, minPos, maxPos); |
| 110 | |
| 111 | return true; |
| 112 | } |
| 113 | |
| 114 | bool BaseStream::ReadBoundingSphere(BoundingSphere* sphere) |
| 115 | { |
nothing calls this directly
no test coverage detected