Ellipsoid Constructor (Double, Double, Double) |
doogal.co.uk Home
Initializes a new instance of the
Ellipsoid class. If either the
semiMinorAxis or the eccentricitySquared are Double.NaN, then that value is
calculated from the other two parameters. An ArgumentException is
thrown if both the semiMinorAxis and the eccentricitySquared are
Double.NaN.
Namespace:
DotNetCoords.Ellipsoid
Assembly:
DotNetCoords (in DotNetCoords.dll) Version: 1.0.0.22 (1.0.0.22)
Syntax protected Ellipsoid(
double semiMajorAxis,
double semiMinorAxis,
double eccentricitySquared
)
Protected Sub New (
semiMajorAxis As Double,
semiMinorAxis As Double,
eccentricitySquared As Double
)
protected:
Ellipsoid(
double semiMajorAxis,
double semiMinorAxis,
double eccentricitySquared
)
new :
semiMajorAxis : float *
semiMinorAxis : float *
eccentricitySquared : float -> Ellipsoid
Parameters
- semiMajorAxis
- Type: SystemDouble
The semi major axis. - semiMinorAxis
- Type: SystemDouble
The semi minor axis. - eccentricitySquared
- Type: SystemDouble
The eccentricity squared.
Exceptions See Also