For convenience. Computes the triangulation on the specified centralBody for a polygon whose boundary is defined by the specified Cartographic positions. This is equivalent to converting each position in positions to Cartesian and calling Compute.
[Visual Basic .NET] |
---|
Public Function ComputeCartographic( _ ByVal CentralBody As String, _ ByVal Positions As System.Array _ ) As IAgStkGraphicsSurfaceTriangulatorResult |
[C#] |
---|
public IAgStkGraphicsSurfaceTriangulatorResult ComputeCartographic( string CentralBody, System.Array Positions ); |
[Managed C++] |
---|
public: IAgStkGraphicsSurfaceTriangulatorResult^ ComputeCartographic( String __gc ^ CentralBody, System::Array ^ Positions ); |
[Unmanaged C++] |
---|
public: HRESULT ComputeCartographic( BSTR CentralBody, SAFEARRAY * * Positions, IAgStkGraphicsSurfaceTriangulatorResult ** ppRetVal ); |
[Java] |
---|
public IAgStkGraphicsSurfaceTriangulatorResult computeCartographic( String CentralBody, AgSafeArray Positions ); |
[Python - STK API ] |
---|
def ComputeCartographic(self, CentralBody:str, Positions:list) -> "IAgStkGraphicsSurfaceTriangulatorResult": |
- 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.
IAgStkGraphicsSurfacePolygonTriangulatorInitializer Interface | IAgStkGraphicsSurfacePolygonTriangulatorInitializer
Shows the format of the Positions parameter when computing using a surface polygon triangulator.
[C#] | ||
---|---|---|
|
Shows the format of the Positions parameter when computing using a surface polygon triangulator.
[Visual Basic .NET] | ||
---|---|---|
|