Ellipsoid Constructor (Double, Double, Double, Double, Double) | 
 
            Initializes an ellipsoid as a scalene ellipsoid.
            
 
    Namespace: 
   AGI.Foundation.Geometry.Shapes
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic Ellipsoid(
	double x,
	double y,
	double z,
	double centerTolerance,
	double surfaceTolerance
)
Public Sub New ( 
	x As Double,
	y As Double,
	z As Double,
	centerTolerance As Double,
	surfaceTolerance As Double
)
public:
Ellipsoid(
	double x, 
	double y, 
	double z, 
	double centerTolerance, 
	double surfaceTolerance
)
new : 
        x : float * 
        y : float * 
        z : float * 
        centerTolerance : float * 
        surfaceTolerance : float -> EllipsoidParameters
- x
 - Type: SystemDouble
The semiaxis length along the x-axis of the ellipsoid. - y
 - Type: SystemDouble
The semiaxis length along the y-axis of the ellipsoid. - z
 - Type: SystemDouble
The semiaxis length along the z-axis of the ellipsoid. - centerTolerance
 - Type: SystemDouble
The numerical tolerance used to determine if a point is located
            at the center of the ellipsoid. - surfaceTolerance
 - Type: SystemDouble
The numerical tolerance used to determine if a point is located
            on the surface of the ellipsoid. 
Exceptions
See Also