Triangle3dIsEqualTo Method (Triangle3d, Tolerance) |
Evaluates if the current instance is equal to another Triangle3d using the specified Tolerance.
Namespace:
Gile.AutoCAD.R20.Geometry
Assembly:
GeometryExtensionsR20 (in GeometryExtensionsR20.dll) Version: 2.2.0.0 (2.2.0.0)
Syntaxpublic bool IsEqualTo(
Triangle3d other,
Tolerance tol
)
Public Function IsEqualTo (
other As Triangle3d,
tol As Tolerance
) As Boolean
public:
bool IsEqualTo(
Triangle3d other,
Tolerance tol
)
member IsEqualTo :
other : Triangle3d *
tol : Tolerance -> bool
Parameters
- other
- Type: Gile.AutoCAD.R20.GeometryTriangle3d
Triangle to be compared to. - tol
- Type: Tolerance
Tolerance to be used for comparisons.
Return Value
Type:
Booleantrue, if vertices are equal; false, otherwise.
See Also