Axiom.Math.Sphere.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

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