desi76 0.1.9 → 0.1.10
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/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -702,7 +702,7 @@ function pGeom3(t, param, suffix = "") {
|
|
|
702
702
|
const l4y0 = param.B4 / Math.cos(Ra);
|
|
703
703
|
const l3x0 = H32 + H32 / Math.tan(Ra) + W42 / Math.sin(Ra);
|
|
704
704
|
const l3x1 = param.JaSouth + param.W1a + laSouth + topXlow - W52 - l3x0;
|
|
705
|
-
const l4x2 = l3x1 * Math.cos(Ra);
|
|
705
|
+
const l4x2 = l3x1 * Math.cos(Ra) + l81y * Math.sin(Ra);
|
|
706
706
|
const l4x1 = W42 / Math.tan(Ra) + H32 / Math.sin(Ra);
|
|
707
707
|
const l4x3 = param.ReS - l4x0 + l4x1 + l4x2 - param.W8 - param.S4e2 / 2;
|
|
708
708
|
const l4x4 = param.W8 + param.S4e2;
|
|
@@ -730,7 +730,7 @@ function pGeom3(t, param, suffix = "") {
|
|
|
730
730
|
const l4y0 = param.B4 / Math.cos(RaNorth);
|
|
731
731
|
const l3x0 = H32 + H32 / Math.tan(RaNorth) + W42 / Math.sin(RaNorth);
|
|
732
732
|
const l3x1 = param.JaNorth + param.W1a + laNorth - topXlow - W52 - l3x0;
|
|
733
|
-
const l4x2 = l3x1 * Math.cos(RaNorth);
|
|
733
|
+
const l4x2 = l3x1 * Math.cos(RaNorth) + l81y * Math.sin(RaNorth);
|
|
734
734
|
const l4x1 = W42 / Math.tan(RaNorth) + H32 / Math.sin(RaNorth);
|
|
735
735
|
const l4x3 = param.ReN - l4x0 + l4x1 + l4x2 - param.W8 - param.S4e2 / 2;
|
|
736
736
|
const l4x4 = param.W8 + param.S4e2;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "desi76",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.10",
|
|
4
4
|
"description": "A collection of 3D-designs",
|
|
5
5
|
"private": false,
|
|
6
6
|
"repository": {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@eslint/js": "^9.10.0",
|
|
64
64
|
"@types/eslint__js": "^8.42.3",
|
|
65
|
-
"esbuild": "^0.
|
|
65
|
+
"esbuild": "^0.27.0",
|
|
66
66
|
"eslint": "^9.39.1",
|
|
67
67
|
"eslint-config-prettier": "^10.1.8",
|
|
68
68
|
"npm-run-all2": "^8.0.4",
|