Box2D.Collision.Shapes.CircleShape.CircleShape C# (CSharp) Method

CircleShape() public method

this is used internally, instead use {@link Body#createShape(ShapeDef)} with a {@link CircleDef}
public CircleShape ( ) : System.Diagnostics
return System.Diagnostics
        public CircleShape()
            : base(ShapeType.Circle)
        {
            P = new Vec2();
            Radius = 0;
        }