BEPUphysics.CollisionShapes.EntityShape.GetBoundingBox C# (CSharp) Method

GetBoundingBox() public abstract method

Computes a bounding box for the shape given the specified transform.
public abstract GetBoundingBox ( RigidTransform &transform, BEPUutilities.BoundingBox &boundingBox ) : void
transform BEPUutilities.RigidTransform Transform to apply to the shape to compute the bounding box.
boundingBox BEPUutilities.BoundingBox Bounding box for the shape given the transform.
return void
        public abstract void GetBoundingBox(ref RigidTransform transform, out BoundingBox boundingBox);
    }