idTech4.Extensions.FitThroughPoint C# (CSharp) Method

FitThroughPoint() public static method

public static FitThroughPoint ( this plane, Vector3 point ) : void
plane this
point Vector3
return void
		public static void FitThroughPoint(this Plane plane, Vector3 point)
		{
			plane.D = -Vector3.Multiply(plane.Normal, point).Length();
		}