getTerrainHeight: Difference between revisions
Lou Montana (talk | contribs) m (Some wiki formatting) |
mNo edit summary |
||
(4 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
|version1= 2.10 | |version1= 2.10 | ||
|gr1= | |gr1= Positions | ||
|descr= Returns terrain height at the specified location. | |descr= Returns terrain height at the specified location. | ||
Line 12: | Line 11: | ||
<sqf> | <sqf> | ||
private _cellWidth = getTerrainInfo # 2; | private _cellWidth = getTerrainInfo # 2; | ||
getTerrainHeightASL (_pos apply {_cellWidth * round (_x / _cellWidth)}); | getTerrainHeightASL (_pos apply { _cellWidth * round (_x / _cellWidth) }); | ||
</sqf> | </sqf> | ||
}} | }} | ||
Line 18: | Line 17: | ||
|s1= [[getTerrainHeight]] positionWorld | |s1= [[getTerrainHeight]] positionWorld | ||
|p1= positionWorld: [[Position#Introduction|Position2D]] or [[Position#Introduction|Position3D]] - | |p1= positionWorld: [[Position#Introduction|Position2D]] or [[Position#Introduction|Position3D]] - position in world coordinates either in [[Position#Introduction|Position2D]] or [[Position#Introduction|Position3D]] | ||
|r1= [[Number]] - terrain height | |r1= [[Number]] - terrain height | ||
|x1= <sqf>private | |x1= <sqf>private _gridCellHeight = getTerrainHeight getPosWorld player;</sqf> | ||
|seealso= [[setTerrainHeight]] [[getTerrainInfo]] | |seealso= [[setTerrainHeight]] [[getTerrainHeightASL]] [[getTerrainInfo]] | ||
}} | }} |
Latest revision as of 18:41, 9 May 2025
Description
- Description:
- Returns terrain height at the specified location.
- Groups:
- Positions
Syntax
- Syntax:
- getTerrainHeight positionWorld
- Parameters:
- positionWorld: Position2D or Position3D - position in world coordinates either in Position2D or Position3D
- Return Value:
- Number - terrain height
Examples
- Example 1:
Additional Information
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note