// 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 how the bounding volumes intersects or contain one another.
///
public enum ContainmentType
{
///
/// Indicates that there is no overlap between two bounding volumes.
///
Disjoint,
///
/// Indicates that one bounding volume completely contains another volume.
///
Contains,
///
/// Indicates that bounding volumes partially overlap one another.
///
Intersects
}
}