Convert polar coordinates (pitch, yaw, lenght) in radian to cartesian coordinates (x, y, z) exacly like the vvvv node Cartesian. To convert angles from cycles to radian, multiply them with VMath.CycToDec.

Namespace: VVVV.Utils.VMath
Assembly: VVVV.Utils (in VVVV.Utils.dll) Version: 1.0.4694.10871

Syntax

C#
public static Vector3D CartesianVVVV(
	double pitch,
	double yaw,
	double length
)

Parameters

pitch
Type: System..::..Double

[Missing <param name="pitch"/> documentation for "M:VVVV.Utils.VMath.VMath.CartesianVVVV(System.Double,System.Double,System.Double)"]

yaw
Type: System..::..Double

[Missing <param name="yaw"/> documentation for "M:VVVV.Utils.VMath.VMath.CartesianVVVV(System.Double,System.Double,System.Double)"]

length
Type: System..::..Double

[Missing <param name="length"/> documentation for "M:VVVV.Utils.VMath.VMath.CartesianVVVV(System.Double,System.Double,System.Double)"]

Return Value

3d-point in cartesian coordinates like the vvvv node does it

See Also