BEPUphysics.CollisionShapes.ConvexShapes.ConeShape.ConeShape C# (CSharp) 메소드

ConeShape() 공개 메소드

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