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

ConeShape() public method

Constructs a new cone shape.
public ConeShape ( float height, float radius ) : System
height float Height of the cone.
radius float Radius of the cone base.
return System
        public ConeShape(float height, float radius)
        {
            this.height = height;
            Radius = radius;
        }