QuantizedMeshTerrainTileGetUValue Method |
Gets the horizontal coordinate of the vertex in the tile with the given index.
When this value is 0, the vertex is on the Western edge of the tile.
When this value is 32767, the vertex is on the Eastern edge of the tile.
For other values, the vertex's longitude is a linear interpolation between the longitudes of the Western and Eastern 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 GetUValue(
uint index
)
Public Function GetUValue (
index As UInteger
) As Short
public:
short GetUValue(
unsigned int index
)
member GetUValue :
index : uint32 -> int16
Parameters
- index
- Type: SystemUInt32
The index of the vertex.
Return Value
Type:
Int16The horizontal coordinate of the vertex.
See Also