Jump to content

API Panel.Position.GetQuat: Difference between revisions

From Flowcode Help
Admin (talk | contribs)
XML import
JonnyW (talk | contribs)
XML import API changes
Line 22: Line 22:
==Return value==
==Return value==
[[Variable types|FLOAT[]]]
[[Variable types|FLOAT[]]]
Returns the positions quaternion in {X,Y,Z,W} array
Returns the positions quaternion in {X,Y,Z,W} array



Revision as of 13:14, 14 May 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)

No additional information