VectorGraphicPathIsEqual Method |
Checks if this path is equal to the path in the argument. The coordinates of all points must not differ more than d to be considered as equal,
angles must not differ more than VectorGraphicEngine._angDelta.
Namespace: RAYLASE.Marker.VectorGraphicElementAssembly: RAYLASE.Marker.VectorGraphicElement (in RAYLASE.Marker.VectorGraphicElement.dll) Version: 2.19.0
Syntaxpublic bool IsEqual(
VectorGraphicPath path,
double delta = 500
)
Parameters
- path VectorGraphicPath
- The path to be compared with this path.
- delta Double (Optional)
- A point is considered to be equal to another if each coordinate differs less than this value, given in micrometers.
Return Value
Booleantrue if both paths are to be considered as equal.
See Also