BEPUphysics.CollisionShapes.ConvexShapes.CylinderShape.CylinderShape C# (CSharp) Метод

CylinderShape() публичный Метод

Constructs a new cylinder shape.
public CylinderShape ( float height, float radius ) : System
height float Height of the cylinder.
radius float Radius of the cylinder.
Результат System
        public CylinderShape(float height, float radius)
        {
            this.halfHeight = height * .5f;
            Radius = radius;
        }