Axiom.Math.Matrix4.Multiply C# (CSharp) Method

Multiply() public static method

Transforms a plane using the specified transform.
public static Multiply ( Matrix4 matrix, Plane plane ) : Plane
matrix Matrix4 Transformation matrix.
plane Plane Plane to transform.
return Plane
		public static Plane Multiply( Matrix4 matrix, Plane plane )
		{
			return matrix * plane;
		}

Same methods

Matrix4::Multiply ( Matrix4 left, Matrix4 right ) : Matrix4
Matrix4::Multiply ( Matrix4 matrix, Vector3 vector ) : Vector3