EccentricitySquared Property

Type

System.Double

 

Access

Get only

 

Description

The EccentricitySquared property provides access to a double value that gives the square of the eccentricity value for the Ellipsoid.

 

Example

[VB]

Private Sub GeoCalcNET_Ellipsoid_EccentricitySquared(ByVal ell As GeoCalcNET.Ellipsoid)

Dim ecc2 As Double = ell.EccentricitySquared

End Sub

 

[C#]

private void GeoCalcNET_Ellipsoid_EccentricitySquared(GeoCalcNET.Ellipsoid ell)

{

double d = ell.EccentricitySquared;

}