This .NET class wraps AcGeTol ObjectARX class.
This is an instantiable class that is by default initialized to the default tolerances. Subsequently, the tolerances within it can be customized to suit a specific need. For example, an instance of this class may be specialized for use during surface intersection.
Class Tolerance keeps two properties, EqualPoint and EqualVector, which are used in evaluation according to the following rules:
(p1 - p2).length() <= equalPoint
(v1 - v2).length() <= equalVector
(v1/v1.length() - v2/v2.length() ).length() < equalVector
OR
(v1/v1.length() + v2/v2.length() ).length() < equalVector
abs((v1.dotProduct(v2))/(v1.length()*v2.length())) <= equalVector
Public Structure Tolerance End Structure
public struct Tolerance { }
Two lines are equal as point sets if, for any point on any line, there is a point on the other line within the EqualPoint tolerance from the first point. This implies that two lines with common point and parallel directional vectors are equal as point sets in the portion of the modeling space of DIAM, if only the tolerance EqualVector is set tighter than EqualPoint.
Comments? |