Axiom.Math.Plane.GetHashCode C# (CSharp) Method

GetHashCode() public method

Gets the hashcode for this Plane.
public GetHashCode ( ) : int
return int
		public override int GetHashCode()
		{
			return this.D.GetHashCode() ^ this.Normal.GetHashCode();
		}