Polar Constructor (Double, Double) | 
 
            Initializes a set of 
Polar coordinates from the provided values.
            
 
    Namespace: 
   AGI.Foundation.Coordinates
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic Polar(
	double clock,
	double radial
)
Public Sub New ( 
	clock As Double,
	radial As Double
)
public:
Polar(
	double clock, 
	double radial
)
new : 
        clock : float * 
        radial : float -> PolarParameters
- clock
 - Type: SystemDouble
The angular coordinate lying in the xy-plane measured from the positive x-axis and toward the positive y-axis. - radial
 - Type: SystemDouble
The linear coordinate perpendicular to the z-axis. 
See Also