/Utilities/Datatypes/Advanced/PlaneIntersectionType.cs
# · C# · 24 lines · 9 code · 2 blank · 13 comment · 0 complexity · 46601523917238ff9efbbe4599824af3 MD5 · raw file
- namespace Delta.Utilities.Datatypes.Advanced
- {
- /// <summary>
- /// Defines the Plane Intersection Type, whether a plane intersects with an
- /// object or the object is in front or behind it.
- /// </summary>
- public enum PlaneIntersectionType
- {
- /// <summary>
- /// The Datatype object is behind the plane.
- /// </summary>
- Back,
-
- /// <summary>
- /// The Datatype object is in front of the plane.
- /// </summary>
- Front,
-
- /// <summary>
- /// The Datatype object is intersecting the plane.
- /// </summary>
- Intersecting
- }
- }