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