@mlightcad/geometry-engine 3.1.3 → 3.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  import { AcGePoint2dLike, AcGePoint3dLike } from '../math';
2
2
  /**
3
3
  * Floating point comparison tolerance.
4
- * Default value is 0.000001 (10e-6)
4
+ * Default value is 0.000001 (1e-6)
5
5
  */
6
6
  export declare const FLOAT_TOL: number;
7
7
  /**
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Floating point comparison tolerance.
3
- * Default value is 0.000001 (10e-6)
3
+ * Default value is 0.000001 (1e-6)
4
4
  */
5
5
  export var FLOAT_TOL = 0.000001;
6
6
  /**
@@ -22,7 +22,7 @@ export declare class AcGeTol {
22
22
  * <pre>
23
23
  * (v1/v1.length() - v2/v2.length() ).length() < equalVectorTol
24
24
  * </pre>
25
- *
25
+ * Or
26
26
  * <pre>
27
27
  * (v1/v1.length() + v2/v2.length() ).length() < equalVectorTol
28
28
  * </pre>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mlightcad/geometry-engine",
3
- "version": "3.1.3",
3
+ "version": "3.1.4",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {
@@ -35,7 +35,7 @@
35
35
  "verb-nurbs-web": "^2.1.3"
36
36
  },
37
37
  "peerDependencies": {
38
- "@mlightcad/common": "1.3.0"
38
+ "@mlightcad/common": "1.3.1"
39
39
  },
40
40
  "scripts": {
41
41
  "clean": "rimraf dist lib tsconfig.tsbuildinfo",