HU/isInsideColShape: Difference between revisions
Jump to navigation
Jump to search
(Created page with "__NOTOC__ {{Shared function hu}} {{New feature/item|3.0156|1.5.5|12286|Ez a funkció ellenőrzi, hogy egy 3D pozíció egy colshape-en belül van-e vagy sem.}} ==Szintaxis==...") |
|||
Line 16: | Line 16: | ||
===Visszatérési érték=== | ===Visszatérési érték=== | ||
Visszatérési értéke ''true'', ha a pozíció a colshape-en belül, ''false'', ha nem, vagy ha bármelyik paraméter érvénytelen. | Visszatérési értéke ''true'', ha a pozíció a colshape-en belül van, ''false'', ha nem, vagy ha bármelyik paraméter érvénytelen. | ||
==Példa== | ==Példa== |
Latest revision as of 18:20, 14 October 2018
Ez a funkció ellenőrzi, hogy egy 3D pozíció egy colshape-en belül van-e vagy sem.
Szintaxis
bool isInsideColShape ( colshape theShape, float posX, float posY, float posZ )
OOP Syntax Help! I don't understand this!
- Method: colshape:isInside(...)
Kötelező paraméterek
- theShape: The colshape you're checking the position against.
- posX: A pozíció X koordinátája, amit ellenőriz.
- posY: A pozíció Y koordinátája, amit ellenőriz.
- posZ: A pozíció Z koordinátája, amit ellenőriz.
Visszatérési érték
Visszatérési értéke true, ha a pozíció a colshape-en belül van, false, ha nem, vagy ha bármelyik paraméter érvénytelen.
Példa
Ez a function ellenőrzi, hogy egy elem egy colshape-ban van-e.
function isElementInsideColShape( theElement, theColShape ) return isInsideColShape( theColShape, getElementPosition( theElement ) ) end
Lásd még
- HU/createColCircle
- HU/createColCuboid
- HU/createColPolygon
- HU/createColRectangle
- HU/createColSphere
- HU/createColTube