PageRenderTime 40ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/Utilities/Datatypes/Advanced/PlaneIntersectionType.cs

#
C# | 24 lines | 9 code | 2 blank | 13 comment | 0 complexity | 46601523917238ff9efbbe4599824af3 MD5 | raw file
Possible License(s): Apache-2.0
  1. namespace Delta.Utilities.Datatypes.Advanced
  2. {
  3. /// <summary>
  4. /// Defines the Plane Intersection Type, whether a plane intersects with an
  5. /// object or the object is in front or behind it.
  6. /// </summary>
  7. public enum PlaneIntersectionType
  8. {
  9. /// <summary>
  10. /// The Datatype object is behind the plane.
  11. /// </summary>
  12. Back,
  13. /// <summary>
  14. /// The Datatype object is in front of the plane.
  15. /// </summary>
  16. Front,
  17. /// <summary>
  18. /// The Datatype object is intersecting the plane.
  19. /// </summary>
  20. Intersecting
  21. }
  22. }