ContainmentType.cs 797 B

12345678910111213141516171819202122232425
  1. // MIT License - Copyright (C) The Mono.Xna Team
  2. // This file is subject to the terms and conditions defined in
  3. // file 'LICENSE.txt', which is part of this source code package.
  4. namespace CommonLang.Geometry
  5. {
  6. /// <summary>
  7. /// Defines how the bounding volumes intersects or contain one another.
  8. /// </summary>
  9. public enum ContainmentType
  10. {
  11. /// <summary>
  12. /// Indicates that there is no overlap between two bounding volumes.
  13. /// </summary>
  14. Disjoint,
  15. /// <summary>
  16. /// Indicates that one bounding volume completely contains another volume.
  17. /// </summary>
  18. Contains,
  19. /// <summary>
  20. /// Indicates that bounding volumes partially overlap one another.
  21. /// </summary>
  22. Intersects
  23. }
  24. }