Tolerance value to check whether two points are equal. Two points, p1 and p2, are equal if
(p1 - p2).length() <= equalPointTol
Tolerance value to compare two vectors.
(p1 - p2).length() <= equalPoint
(v1/v1.length() - v2/v2.length() ).length() < equalVectorTol
或
(v1/v1.length() + v2/v2.length() ).length() < equalVectorTol
abs((v1.dotProduct(v2))/(v1.length()*v2.length())) <= equalVectorTol
Return true if two points are equal with the specified tolerance.
Input the first 2d point
Input the second 2d point
Return true if two poitns are equal with the specified tolerance.
Return true if two points are equal with the specified tolerance.
Input the first 2d point
Input the second 2d point
Return true if two poitns are equal with the specified tolerance.
Static
equalReturn true if two values are equal with the sepcified tolerance.
Input the first value
Input the second value
Input the tolerance value
Return true if two values are equal with the sepcified tolerance
Static
equalStatic
greatReturn true if the first argument are greater than the second argument with the sepcified tolerance.
Input the first value
Input the second value
Input the tolerance value
Return true if the first argument are greater than the second argument with the sepcified tolerance.
Static
lessReturn true if the first argument less than the second argument with the specified tolerance value
Input the first value
Input the second value
Input the tolerance value
Return true if the first argument less than the second argument with the specified tolerance value
The class used to store some tolerance values.