GeometryBaseGeometryEquals Method |
Determines if two geometries equal one another, in pure geometrical shape.
This version only compares the geometry itself and does not include any user
data comparisons.
This is a comparison by value: for two identical items it will be true, no matter
where in memory they may be stored.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public static bool GeometryEquals(
GeometryBase first,
GeometryBase second
)
Public Shared Function GeometryEquals (
first As GeometryBase,
second As GeometryBase
) As Boolean
Parameters
- first
- Type: Rhino.GeometryGeometryBase
The first geometry - second
- Type: Rhino.GeometryGeometryBase
The second geometry
Return Value
Type:
BooleanThe indication of equality
See Also