TerrainDisplay.Collision._3D.AABB.AABB C# (CSharp) Method

AABB() public method

Constructor
public AABB ( IShape shape, int id ) : System
shape IShape The IShape to place in this bounding box.
id int
return System
        public AABB(IShape shape, int id)
        {
            ContainedShape = shape;
            Bounds = new BoundingBox(shape.Min, shape.Max);
            Id = id;
        }

Same methods

AABB::AABB ( IEnumerable vertices ) : System
AABB::AABB ( IShape shape ) : System
AABB::AABB ( System.Vector3 min, System.Vector3 max ) : System