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

ToString() public method

Returns a string representation of this Plane.
public ToString ( ) : string
return string
		public override string ToString()
		{
			return string.Format( "Distance: {0} Normal: {1}", this.D, this.Normal );
		}