Converts a unit vector to (RA, Dec) angles.
            
Namespace: SphericalAssembly: SphericalLib (in SphericalLib.dll) Version: 1.0.5951.32246 (1.0.0.0)
 Syntax
Syntax
| C# | 
|---|
| public static void Cartesian2Radec(
	Cartesian p,
	out double ra,
	out double dec
) | 
| Visual C++ | 
|---|
| public:
static void Cartesian2Radec(
	Cartesian p, 
	[OutAttribute] double% ra, 
	[OutAttribute] double% dec
) | 
| F# | 
|---|
| static member Cartesian2Radec : 
        p:Cartesian * 
        ra:float byref * 
        dec:float byref -> unit 
 | 
Parameters
- p
- Type: Spherical..::..Cartesian
 Input point
- ra
- Type: System..::..Double%
 Right Ascension
- dec
- Type: System..::..Double%
 Declination
 See Also
See Also