Click or drag to resize

BaseMetafileCommandAreVecsEqual Method

Compares to dvec3 objects and returns true if each of their coordinates differs less than d. Needed in the derived classes to check for equality.

Namespace: RAYLASE.Marker.VectorGraphicElement.MetafileCommand
Assembly: RAYLASE.Marker.VectorGraphicElement (in RAYLASE.Marker.VectorGraphicElement.dll) Version: 2.19.0
Syntax
C#
public static bool AreVecsEqual(
	dvec3 p1,
	dvec3 p2,
	double d
)

Parameters

p1  dvec3
First point to compare.
p2  dvec3
Second point to compare.
d  Double
The delta each coordinate must differ less than.

Return Value

Boolean
true if the objects can be considered to be equal.
See Also