QuantizedMeshTerrainTileGetVValue Method |
Gets the vertical coordinate of the vertex in the tile with the given index.
When this value is 0, the vertex is on the Southern edge of the tile.
When this value is 32767, the vertex is on the Northern edge of the tile.
For other values, the vertex's latitude is a linear interpolation between the latitudes of the Southern and Northern edges of the tile.
Namespace:
AGI.Foundation.Terrain
Assembly:
AGI.Foundation.TerrainReaders (in AGI.Foundation.TerrainReaders.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public short GetVValue(
uint index
)
Public Function GetVValue (
index As UInteger
) As Short
public:
short GetVValue(
unsigned int index
)
member GetVValue :
index : uint32 -> int16
Parameters
- index
- Type: SystemUInt32
The index of the vertex.
Return Value
Type:
Int16The vertical coordinate of the vertex.
See Also