FarseerPhysics.Collision.Shapes.CircleShape.CompareTo C# (CSharp) Метод

CompareTo() публичный Метод

Compare the circle to another circle
public CompareTo ( CircleShape shape ) : bool
shape CircleShape The other circle
Результат bool
		public bool CompareTo( CircleShape shape )
		{
			return ( radius == shape.radius && position == shape.position );
		}