@mlightcad/geometry-engine 1.0.2 → 1.0.3
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.
package/README.md
CHANGED
@@ -65,7 +65,7 @@ export declare class AcGeCircArc3d extends AcGeCurve3d {
|
|
65
65
|
/**
|
66
66
|
* Return true if the arc is a large arc whose delta angle value is greater than PI.
|
67
67
|
*/
|
68
|
-
get isLargeArc():
|
68
|
+
get isLargeArc(): 0 | 1;
|
69
69
|
/**
|
70
70
|
* Return true if the arc is clockwise from startAngle to endAngle
|
71
71
|
*/
|
@@ -72,7 +72,7 @@ export declare class AcGeEllipseArc2d extends AcGeCurve2d {
|
|
72
72
|
/**
|
73
73
|
* Return true if the arc is a large arc whose delta angle value is greater than PI.
|
74
74
|
*/
|
75
|
-
get isLargeArc():
|
75
|
+
get isLargeArc(): 0 | 1;
|
76
76
|
/**
|
77
77
|
* Compute the bounding box of the 3D ellipse arc.
|
78
78
|
* The bounding box is defined by its minimum and maximum x, y, and z coordinates.
|
@@ -60,7 +60,7 @@ export declare class AcGeEllipseArc3d extends AcGeCurve3d {
|
|
60
60
|
/**
|
61
61
|
* Return true if the arc is a large arc whose delta angle value is greater than PI.
|
62
62
|
*/
|
63
|
-
get isLargeArc():
|
63
|
+
get isLargeArc(): 0 | 1;
|
64
64
|
/**
|
65
65
|
* Return true if the arc is clockwise from startAngle to endAngle
|
66
66
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@mlightcad/geometry-engine",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.3",
|
4
4
|
"license": "MIT",
|
5
5
|
"type": "module",
|
6
6
|
"keywords": [
|
@@ -28,8 +28,7 @@
|
|
28
28
|
"require": "./dist/geometry-engine.umd.cjs"
|
29
29
|
},
|
30
30
|
"peerDependencies": {
|
31
|
-
"
|
32
|
-
"@mlightcad/common": "1.0.2"
|
31
|
+
"@mlightcad/common": "1.0.3"
|
33
32
|
},
|
34
33
|
"scripts": {
|
35
34
|
"clean": "rimraf dist lib tsconfig.tsbuildinfo",
|