BEPUphysics.CollisionShapes.ConvexShapes.SphereShape.ComputeMaximumRadius C# (CSharp) Method

ComputeMaximumRadius() public method

Computes the maximum radius of the shape. This is often larger than the actual maximum radius; it is simply an approximation that avoids underestimating.
public ComputeMaximumRadius ( ) : float
return float
        public override float ComputeMaximumRadius()
        {
            return Radius;
        }