Get the angle between two Vector3D in the range [0:360]

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

Syntax

C#
public static double AngleBetween(
	Vector3D v1,
	Vector3D v2
)
Visual Basic
Public Shared Function AngleBetween ( _
	v1 As Vector3D, _
	v2 As Vector3D _
) As Double
JScript
public static function AngleBetween(
	v1 : Vector3D, 
	v2 : Vector3D
) : double

Parameters

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

Return Value

Remarks

this is different then AngleBetween(Vector3D, Vector3D) which returns a value in the range [0:180]

See Also