Checks if this location is equivalent to the other.

Namespace:  BioSharp.Core.Bio.Symbol
Assembly:  BioSharp.Core (in BioSharp.Core.dll) Version: 0.1.3191.26120 (0.1.0.0)

Syntax

C#
bool Equals(
	Object l
)

Parameters

l
Type: System..::.Object
the object to check

Return Value

true if this equals l, otherwise false

Remarks

Abstractly, a location is equal to another if for every point in one it is also in the other. This is equivalent to a.Contains(b) && b.Contains(a). You should call LocationTools.AreEqual after casting l to ILocation.

See Also