Click or drag to resize
GeGeometryComplexTCovers Method
Returns True if geometry covers specified geometry, otherwise returns False.

Namespace: FDF.Common.Geometries
Assembly: FDF.Common (in FDF.Common.dll) Version: 3.0.0.0
Syntax
public bool Covers(
	IGeGeometry other
)

Parameters

other
Type: FDF.Common.GeometriesIGeGeometry

Return Value

Type: Boolean

Implements

IGeQueryableCovers(IGeGeometry)
Remarks
Returns True if the DE-9IM intersection matrix for the two geometries is T*****FF* or *T****FF* or ***T**FF* or ****T*FF*, otherwise returns False.

Note the difference between Covers(IGeGeometry) and Contains(IGeGeometry): Covers(IGeGeometry) is a more inclusive relation. In particular, unlike Contains(IGeGeometry) it does not distinguish between points on the boundary and in the interior of geometries.

See Also