AGI STK Graphics 11 Send comments on this topic.
InitializeWithDatePositionColorAndTranslucency Method (IAgStkGraphicsPathPointFactory)
See Also  Example
PathPointDate
A date of the path point.
Position
A position of the path point specified as a cartesian point (X/Y/Z).
Color
A color of the path point.
Translucency
A value specifies the translucency of the path point.

Description

Initializes a new path point with the given date, position, color and translucency.

Syntax

[Visual Basic .NET]
Public Function InitializeWithDatePositionColorAndTranslucency( _
   ByVal PathPointDate As IAgDate, _
   ByRef Position() As Variant, _
   ByVal Color As ULong, _
   ByVal Translucency As Double _
) As IAgStkGraphicsPathPoint

Parameters

PathPointDate
A date of the path point.
Position
A position of the path point specified as a cartesian point (X/Y/Z).
Color
A color of the path point.
Translucency
A value specifies the translucency of the path point.

Example

Shows the format of the Position parameter when creating a path point.
[C#] Copy Code
Array position = new object[] 

    1089235, 
    -4800930, 
    4046386 
}; 
 
IAgStkGraphicsPathPoint path = sceneManager.Initializers.PathPoint.InitializeWithDateAndPosition( 
    root.ConversionUtility.NewDate("UTCG", ((IAgScenario)root.CurrentScenario).StartTime.ToString()), 
    ref position); 
 
Shows the format of the Position parameter when creating a path point.
[Visual Basic .NET] Copy Code
Dim position As Array = New Object() {1089235, -4800930, 4046386}

Dim path As IAgStkGraphicsPathPoint = sceneManager.Initializers.PathPoint.InitializeWithDateAndPosition(root.ConversionUtility.NewDate("UTCG", DirectCast(root.CurrentScenario, IAgScenario).StartTime.ToString()), position)

See Also

© 2016 Analytical Graphics, Inc. All Rights Reserved.

STK 11.1 Programming Interface