MtxExpr.AddProduct Method

Overload List

#SignatureDescription
1function AddProduct(const X: TMtx; const Y: TMtx; const Z: TMtx): Matrix;Computes X + Y*Z
2function AddProduct(const X: TVec; const Y: TVec; const Z: TVec): Vector;Computes X + Y*Z

Overload 1: function AddProduct(const X: TMtx; const Y: TMtx; const Z: TMtx): Matrix;

Computes X + Y*Z

#NameTypeDescription
1XTMtx
2YTMtx
3ZTMtx

Returns: Matrix

Remarks:

Internally calls Matrix.AddProduct

Overload 2: function AddProduct(const X: TVec; const Y: TVec; const Z: TVec): Vector;

Computes X + Y*Z

#NameTypeDescription
1XTVec
2YTVec
3ZTVec

Returns: Vector

Remarks:

Internally calls Vector.AddProduct