Jump to content

API Panel.Position.GetQuat: Difference between revisions

From Flowcode Help
JonnyW (talk | contribs)
XML Import to change Variable types into Variable Types
JonnyW (talk | contribs)
XML import of API documentation
Line 1: Line 1:
<sidebar>API contents</sidebar>
 
 
<sidebar>API Contents</sidebar>
Returns the positions quaternion in (X,Y,Z,W) array
Returns the positions quaternion in (X,Y,Z,W) array



Revision as of 14:27, 9 August 2013


<sidebar>API Contents</sidebar> Returns the positions quaternion in (X,Y,Z,W) array

Class hierarchy

Panel

Position
GetQuat

Parameters

HANDLE Handle

The position or component to read
The default value for this parameter is: this

HANDLE Target

The position or component to convert relative to
The default value for this parameter is: this


Return value

FLOAT[]

Returns the positions quaternion in (X,Y,Z,W) array


Detailed description

No additional information


Examples

Calling in a calculation

  • Declare a variable 'result' of type FLOAT[]
  • Add to a calculation icon:
    result = ::Panel.Position.GetQuat(handle, target)

Flowcode example file

Download File:SIMAPI Panel Position GetQuat.fcf and open it in Flowcode v6. In this example a blue cuboid and a LCD are shown on the system panel. When the program starts, a wikipedia:Quaternion of the cuboid is returned into an existing Float Array variable. The Quaternion values are then displayed on the LCD display.

The screenshots below show the effect and also highlight the code used by the example.