Click or drag to resize

EllipsoidSurfaceCurveComputeIntersection Method

Computes the nearest intersection (if any) between two EllipsoidSurfaceCurves.

Namespace:  AGI.Foundation.Geometry.Shapes
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public virtual EllipsoidSurfaceCurveIntersectionResults ComputeIntersection(
	EllipsoidSurfaceCurve other
)

Parameters

other
Type: AGI.Foundation.Geometry.ShapesEllipsoidSurfaceCurve
The other curve with which to compute intersection.

Return Value

Type: EllipsoidSurfaceCurveIntersectionResults
The point representing the intersection of the two curves.
Exceptions
ExceptionCondition
InvalidOperationExceptionThrown if either this curve or the input curve has any sub curves that are not EllipsoidGeodesic, EllipsoidComplexSurfaceCurve, or EllipsoidRhumbLine.
ArgumentExceptionThrown if the Ellipsoid properties of both curves do not match.
Remarks
Intersection algorithm convergence tolerance is 1 nm.
See Also