idTech4.Geometry.idSphere.Equals C# (CSharp) Method

Equals() public method

Exact compare, no epsilon.
public Equals ( idSphere sphere ) : bool
sphere idSphere
return bool
		public bool Equals(idSphere sphere)
		{
			return ((_origin == sphere.Origin) && (_radius == sphere.Radius));
		}

Same methods

idSphere::Equals ( idSphere sphere, float epsilon ) : bool
idSphere::Equals ( object obj ) : bool