Click or drag to resize

Matrix3x2NewFromBasisVectorsAndLocation Method

Creates a transformation matrix that uses three basis vectors, and a location 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 Matrix3x2 NewFromBasisVectorsAndLocation(
	VectorD2D xBasis,
	VectorD2D yBasis,
	PointD3D origin
)

Parameters

xBasis  VectorD2D
Basis vector for the x-direction.
yBasis  VectorD2D
Basis vector for the y-direction.
origin  PointD3D
The origin of the coordinate system.

Return Value

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