PlaneIntersectionType.cs 815 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 the intersection between a <see cref="Plane"/> and a bounding volume.
  8. /// </summary>
  9. public enum PlaneIntersectionType
  10. {
  11. /// <summary>
  12. /// There is no intersection, the bounding volume is in the negative half space of the plane.
  13. /// </summary>
  14. Front,
  15. /// <summary>
  16. /// There is no intersection, the bounding volume is in the positive half space of the plane.
  17. /// </summary>
  18. Back,
  19. /// <summary>
  20. /// The plane is intersected.
  21. /// </summary>
  22. Intersecting
  23. }
  24. }