BoundingBox.bf 266 B

1234567891011121314
  1. // This file contains portions of code from the FNA project (github.com/FNA-XNA/FNA),
  2. // released under the Microsoft Public License
  3. namespace Beefy.geom
  4. {
  5. class BoundingBox
  6. {
  7. public Vector3 Min;
  8. public Vector3 Max;
  9. public const int CornerCount = 8;
  10. }
  11. }