Interface IGeometricallyEquatable<T>
Interface defining a generalized method for determining geometric equality between two instances.
Namespace: BRIDGES.Geometry.Kernel
Assembly: BRIDGES.dll
Syntax
public interface IGeometricallyEquatable<T>
Type Parameters
Name | Description |
---|---|
T | The type of objects to compare with. |
Methods
| Improve this Doc View SourceGeometricallyEquals(T)
Evaluates whether the current object is geometrically equal to the given T
.
Declaration
bool GeometricallyEquals(T other)
Parameters
Type | Name | Description |
---|---|---|
T | other | The object to compare with. |
Returns
Type | Description |
---|---|
Boolean | true if the two objects are geometrically equal, false otherwise. |