Click or drag to resize

Matrix3x3NewFromBasisVectors Method

Creates a transformation matrix that uses three basis vectors to construct the matrix that transform points expressed in the three basis vectors to points in the coordinate system.

Namespace: Altaxo.Geometry
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Matrix3x3 NewFromBasisVectors(
	VectorD3D xBasis,
	VectorD3D yBasis,
	VectorD3D zBasis
)

Parameters

xBasis  VectorD3D
Basis vector for the x-direction.
yBasis  VectorD3D
Basis vector for the y-direction.
zBasis  VectorD3D
Basis vector for the z-direction.

Return Value

Matrix3x3
A transformation matrix that uses the three basis vectors, and a location
See Also