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

GetVertex() public method

Get a vertex by index.
public GetVertex ( int index ) : Vec2
index int
return Box2D.Common.Vec2
        public Vec2 GetVertex(int index)
        {
            Debug.Assert(index == 0);
            return P;
        }