BEPUphysics.CollisionShapes.ConvexShapes.ConeShape.ConeShape C# (CSharp) Méthode

ConeShape() public méthode

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.
Résultat System
        public ConeShape(float height, float radius)
        {
            this.height = height;
            Radius = radius;
        }