Difference between revisions of "API Panel.Collision.TestTable"

From Flowcode Help
Jump to navigationJump to search
(XML import of updated API docs)
Line 24: Line 24:
  
 
==Detailed description==
 
==Detailed description==
''<span style="color:red;">No additional information</span>''
+
This calculates the distance between the lowest point on the objects bounding box and the table top, which is an infinite plane with Z = 0.
 +
[[File:API Panel.Collision.TestTable Diff.svg|thumb|none|200px|Distance to the table]]
 +
 
 +
The value returned is the distance to move in Z in order for the lowest point to lie on the table top. Note that this is not the same as the distance ''from'' the table which would be positive if the object was above the table, where as this would return the negative distance as the object would need to move down
  
  

Revision as of 11:38, 4 July 2013


<sidebar>API contents</sidebar> Tests whether an object collides with the table top, returns Z distance to move to rest on the table

Class hierarchy

Panel

Collision
TestTable

Parameters

HANDLE Pos

A component or position to focus the collision around


Return value

FLOAT

Returns Z distance to move to rest on the table


Detailed description

This calculates the distance between the lowest point on the objects bounding box and the table top, which is an infinite plane with Z = 0.

Distance to the table

The value returned is the distance to move in Z in order for the lowest point to lie on the table top. Note that this is not the same as the distance from the table which would be positive if the object was above the table, where as this would return the negative distance as the object would need to move down


Examples

Calling in a calculation

  • Declare a variable 'result' of type FLOAT
  • Add to a calculation icon:
    result = ::Panel.Collision.TestTable(pos)

No additional examples