BEPUphysics.CollisionShapes.ConvexShapes.ConvexHullShape.ComputeVolume C# (CSharp) Method

ComputeVolume() public method

Computes the volume of the shape.
public ComputeVolume ( ) : float
return float
        public override float ComputeVolume()
        {
            float volume;
            ComputeCenter(out volume);
            return volume;
        }