| PathPointBuilder Constructor (Cartesian, JulianDate, Color, Single) | 
 
            Initializes a 
PathPointBuilder with the given position, date, color, and translucency.
            
 
    Namespace: 
   AGI.Foundation.Graphics
    Assembly:
   AGI.Foundation.Graphics (in AGI.Foundation.Graphics.dll) Version: 25.1.421.0 (25.1.421.0)
 Syntax
Syntaxpublic PathPointBuilder(
	Cartesian position,
	JulianDate date,
	Color color,
	float translucency
)
Public Sub New ( 
	position As Cartesian,
	date As JulianDate,
	color As Color,
	translucency As Single
)
public:
PathPointBuilder(
	Cartesian position, 
	JulianDate date, 
	Color color, 
	float translucency
)
new : 
        position : Cartesian * 
        date : JulianDate * 
        color : Color * 
        translucency : float32 -> PathPointBuilderParameters
- position
- Type: AGI.Foundation.CoordinatesCartesian
 The point's position.
- date
- Type: AGI.Foundation.TimeJulianDate
 The point's date.
- color
- Type: System.DrawingColor
 The point's color.
- translucency
- Type: SystemSingle
 The point's translucency.
 Exceptions
Exceptions Remarks
Remarks
            The point's outline color is initialized to black,
            and its outline translucency is initialized to 0.
            
 See Also
See Also