Get the rotation Matrix3D that describes the rotation between two Vector3D

Namespace: Ico.Windows.Media.Media3D
Assembly: Ico3DControlsLibrary (in Ico3DControlsLibrary.dll) Version: 10.97.212.0 (10.97.212.00)

Syntax

C#
public static Matrix3D GetRotationMatrixBetween(
	Vector3D v0,
	Vector3D v1
)
Visual Basic
Public Shared Function GetRotationMatrixBetween ( _
	v0 As Vector3D, _
	v1 As Vector3D _
) As Matrix3D
JScript
public static function GetRotationMatrixBetween(
	v0 : Vector3D, 
	v1 : Vector3D
) : Matrix3D

Parameters

v0
Type: System.Windows.Media.Media3D..::..Vector3D
the first Vector3D
v1
Type: System.Windows.Media.Media3D..::..Vector3D
the second Vector3D

Return Value

the Matrix3D that describes the rotation

See Also