Eccentricity Property

Type

System.Double

 

Access

Get only

 

Description

The Eccentricity property provides access to a double value that gives the eccentricity of the Ellipsoid.  

 

Example

[VB]

Private Sub GeoCalcNET_Ellipsoid_Eccentricity(ByVal ell As GeoCalcNET.Ellipsoid)

Dim ecc As Double = ell.Eccentricity

End Sub

 

[C#]

private void GeoCalcNET_Ellipsoid_Eccentricity(GeoCalcNET.Ellipsoid ell)

{

double d = ell.Eccentricity;

}