FarseerPhysics.Collision.Shapes.CircleShape.CompareTo C# (CSharp) Method

CompareTo() public method

Compare the circle to another circle
public CompareTo ( CircleShape shape ) : bool
shape CircleShape The other circle
return bool
		public bool CompareTo( CircleShape shape )
		{
			return ( radius == shape.radius && position == shape.position );
		}