- // This file contains portions of code from the FNA project (github.com/FNA-XNA/FNA),
- // released under the Microsoft Public License
- namespace Beefy.geom
- {
- class BoundingBox
- {
- public Vector3 Min;
- public Vector3 Max;
- public const int CornerCount = 8;
- }
- }
|