Converts an array of 2D coordinates of some leds viewed by two WiiMotes in an array of 3D coordinates.

Namespace:  MotionTracking
Assembly:  motiontracking (in motiontracking.dll)

Syntax

Visual Basic (Declaration)
Public Function Get3DCoordArray ( _
	wiiMoteALedCoord As Point(), _
	wiiMoteBLedCoord As Point() _
) As Point3DF()
C#
public Point3DF[] Get3DCoordArray(
	Point[] wiiMoteALedCoord,
	Point[] wiiMoteBLedCoord
)
Visual C++
public:
array<Point3DF>^ Get3DCoordArray(
	array<Point>^ wiiMoteALedCoord, 
	array<Point>^ wiiMoteBLedCoord
)
JavaScript
function get3DCoordArray(wiiMoteALedCoord, wiiMoteBLedCoord);

Parameters

wiiMoteALedCoord
Type: array< System.Drawing..::.Point >[]()[]
wiiMoteBLedCoord
Type: array< System.Drawing..::.Point >[]()[]

Return Value

Remarks

In Meters. Assumes that the WiiMotes are at the same depth and height.

See Also