Click or drag to resize

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.VectorGraphicElement
Assembly: RAYLASE.Marker.VectorGraphicElement (in RAYLASE.Marker.VectorGraphicElement.dll) Version: 2.19.0
Syntax
C#
public 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

Boolean
true if both paths are to be considered as equal.
See Also