Axiom.Math.Sphere.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
		public static bool operator ==( Sphere sphere1, Sphere sphere2 )
		{
			return sphere1.center == sphere2.center && sphere1.radius == sphere2.radius;
		}