// MIT License - Copyright (C) The Mono.Xna Team
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
namespace CommonLang.Geometry
{
///
/// Defines the intersection between a and a bounding volume.
///
public enum PlaneIntersectionType
{
///
/// There is no intersection, the bounding volume is in the negative half space of the plane.
///
Front,
///
/// There is no intersection, the bounding volume is in the positive half space of the plane.
///
Back,
///
/// The plane is intersected.
///
Intersecting
}
}