Difference between revisions of "API Mouse.GetClickSide"

From Flowcode Help
Jump to navigationJump to search
(XML import of updated API docs)
(XML import)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
+
<sidebar>API Contents</sidebar>
 
+
Gets the side of the component clicked on, 0 to 5
<sidebar>API contents</sidebar>
 
Gets the side of the component clicked on, 0 to 7
 
  
 
<div style="width:25%; float:right" class="toc">
 
<div style="width:25%; float:right" class="toc">
Line 18: Line 16:
 
[[Variable Types|BYTE]]
 
[[Variable Types|BYTE]]
  
Returns the side of the component clicked on, 0 to 7
+
Returns the side of the component clicked on, 0 to 5
  
  
 
==Detailed description==
 
==Detailed description==
''<span style="color:red;">No additional information</span>''
+
This call retrieves the face of the bounding box intersected by the mouse. This is always the closest face to the screen.
 +
 
 +
[[file:SIMAPI Mouse.GetPosition Faces.svg|thumb|none|Face numbers]]
 +
The faces of the bounding box are ordered according to the following table:
 +
{|
 +
|-
 +
!Face
 +
!Position
 +
|-
 +
|0
 +
|XY plane, Z=-1
 +
|-
 +
|1
 +
|YZ plane, X=-1
 +
|-
 +
|2
 +
|XZ plane, Y=-1
 +
|-
 +
|3
 +
|XZ plane, Y=1
 +
|-
 +
|4
 +
|YZ plane, X=1
 +
|-
 +
|5
 +
|XY plane, Z=1
 +
|}
 +
Each face, when added to the opposite face on the cube, adds up to 5 (so each YZ face = 1 + 4 = 5).
  
  

Latest revision as of 15:57, 16 January 2014

<sidebar>API Contents</sidebar> Gets the side of the component clicked on, 0 to 5

Class hierarchy

Mouse

GetClickSide

Parameters

This function has no parameters


Return value

BYTE

Returns the side of the component clicked on, 0 to 5


Detailed description

This call retrieves the face of the bounding box intersected by the mouse. This is always the closest face to the screen.

Error creating thumbnail: sh: convert: command not found
Face numbers

The faces of the bounding box are ordered according to the following table:

Face Position
0 XY plane, Z=-1
1 YZ plane, X=-1
2 XZ plane, Y=-1
3 XZ plane, Y=1
4 YZ plane, X=1
5 XY plane, Z=1

Each face, when added to the opposite face on the cube, adds up to 5 (so each YZ face = 1 + 4 = 5).


Examples

Calling in a calculation

  • Declare a variable 'result' of type BYTE
  • Add to a calculation icon:
    result = ::Mouse.GetClickSide()

No additional examples