Axiom.Math.Plane.ToString C# (CSharp) Méthode

ToString() public méthode

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