Geotools.Net

IMathTransform.GetDomainFlags Method 

Gets flags classifying domain points within a convex hull.

[Visual Basic]
Function GetDomainFlags( _
   ByVal ord As Double() _
) As DomainFlags
[C#]
DomainFlags GetDomainFlags(
   double[] ord
);

Parameters

ord
Packed ordinates of points used to generate convex hull.

Return Value

Missing <returns> documentation for M:Geotools.CoordinateTransformations.IMathTransform.GetDomainFlags(System.Double[])

Remarks

The supplied ordinates are interpreted as a sequence of points, which generates a convex hull in the source space. Conceptually, each of the (usually infinite) points inside the convex hull is then tested against the source domain. The flags of all these tests are then combined. In practice, implementations of different transforms will use different short-cuts to avoid doing an infinite number of tests.

See Also

IMathTransform Interface | IMathTransform Members | Geotools.CoordinateTransformations Namespace