AGI STK Graphics 11 Send comments on this topic.
ComputeCartographic Method (IAgStkGraphicsSurfacePolygonTriangulatorInitializer)
See Also  Example
CentralBody
The central body to compute the triangulation on.
Positions
An array containing positions defining the boundary of the polygon to triangulate, provided in the order latitude, longitude, altitude.





Description

For convenience. Computes the triangulation on the specified centralBody for a polygon whose boundary is defined by the specified Cartographic positions. Longitude and latitude are in radians, and altitude is in meters. This is equivalent to converting each position in positions to Cartesian and calling Compute

Syntax

[Visual Basic .NET]
Public Function ComputeCartographic( _
   ByVal CentralBody As String, _
   ByRef Positions As System.Array _
) As IAgStkGraphicsSurfaceTriangulatorResult

[C#]
public IAgStkGraphicsSurfaceTriangulatorResult ComputeCartographic(
string CentralBody,
ref System.Array Positions
);

[Managed C++]
public: IAgStkGraphicsSurfaceTriangulatorResult^ ComputeCartographic(
String __gc ^ CentralBody,
System::Array ^^ Positions
);

[Java]
public IAgStkGraphicsSurfaceTriangulatorResult computeCartographic(
String CentralBody,
Object[] Positions
);

[Unmanaged C++]
public: HRESULT ComputeCartographic(
BSTR CentralBody,
SAFEARRAY ** Positions,
IAgStkGraphicsSurfaceTriangulatorResult ** ReturnValue
);

Parameters

CentralBody
The central body to compute the triangulation on.
Positions
An array containing positions defining the boundary of the polygon to triangulate, provided in the order latitude, longitude, altitude.

Example

Shows the format of the Positions parameter when computing using a surface polygon triangulator.
[C#] Copy Code
Array positions = new object[] 

    34.11, -78.010
    34.72, -78.930
    34.11, -79.330
    34.03, -78.690
    34.11, -78.010 
}; 
 
IAgStkGraphicsSurfaceTriangulatorResult result = sceneManager.Initializers.SurfacePolygonTriangulator.ComputeCartographic( 
    "Earth"
    ref positions); 
 

Shows the format of the Positions parameter when computing using a surface polygon triangulator.
[Visual Basic .NET] Copy Code
Dim positions As Array = New Object() {34.11, -78.01, 0, 34.72, -78.93, 0, _
    34.11, -79.33, 0, 34.03, -78.69, 0, _
    34.11, -78.01, 0}

Dim result As IAgStkGraphicsSurfaceTriangulatorResult = sceneManager.Initializers.SurfacePolygonTriangulator.ComputeCartographic("Earth", positions)

See Also

© 2016 All Rights Reserved.

STK Programming Interface 11.0.1