Triangle2dIsEqualTo Method (Triangle2d, Tolerance) |
Evaluates if the current instance is equal to another Triangle2d using the specified Tolerance.
Namespace:
Gile.AutoCAD.Geometry
Assembly:
GeometryExtensions (in GeometryExtensions.dll) Version: 2.0.0.0 (2.0.0.0)
Syntaxpublic bool IsEqualTo(
Triangle2d other,
Tolerance tol
)
Public Function IsEqualTo (
other As Triangle2d,
tol As Tolerance
) As Boolean
public:
bool IsEqualTo(
Triangle2d other,
Tolerance tol
)
member IsEqualTo :
other : Triangle2d *
tol : Tolerance -> bool
Parameters
- other
- Type: Gile.AutoCAD.GeometryTriangle2d
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