FarseerPhysics.Common.PolygonTools.createCircle C# (CSharp) Method

createCircle() public static method

Creates a circle with the specified radius and number of edges.
public static createCircle ( float radius, int numberOfEdges ) : Vertices
radius float The radius.
numberOfEdges int The number of edges. The more edges, the more it resembles a circle
return Vertices
		public static Vertices createCircle( float radius, int numberOfEdges )
		{
			return createEllipse( radius, radius, numberOfEdges );
		}