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

SphereShape() public method

Constructs a new sphere shape.
public SphereShape ( float radius ) : System
radius float Radius of the sphere.
return System
        public SphereShape(float radius)
        {
            Radius = radius;
        }