Description
For convenience. Defines the positions of a polyline using a subset of input Cartographic positions. Longitude and latitude are in radians, and altitude is in meters. This is equivalent to converting the subset of positions to Cartesian and calling
SetSubset.
Syntax
[Visual Basic .NET] |
---|
Public Sub SetSubsetCartographic( _
ByVal CentralBody As String, _
ByRef Positions As System.Array, _
ByVal Index As Integer, _
ByVal Count As Integer _
)
|
Parameters
Remarks
Example
Shows the format of the Positions parameter when updating a polyline primitive with cartographic positions.
[C#] | Copy Code |
---|
Array positions = new object[]
{
39.88, -75.25, 0,
38.85, -77.04, 0,
29.98, -90.25, 0,
37.37, -121.92, 0
};
polyline.SetSubsetCartographic(
"Earth",
ref positions,
1,
2);
|
|
Shows the format of the Positions parameter when updating a polyline primitive with cartographic positions.
[Visual Basic .NET] | Copy Code |
---|
Dim positions As Array = New Object() {39.88, -75.25, 0, 38.85, -77.04, 0, _ 29.98, -90.25, 0, 37.37, -121.92, 0}
polyline.SetSubsetCartographic("Earth", positions, 1, 2)
|
|
See Also