@jscad/dxf-deserializer 3.0.5-alpha.0 → 3.0.6-alpha.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jscad/dxf-deserializer",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.6-alpha.0",
|
|
4
4
|
"description": "DXF Deserializer for JSCAD",
|
|
5
5
|
"homepage": "https://openjscad.xyz/",
|
|
6
6
|
"repository": "https://github.com/jscad/OpenJSCAD.org",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
],
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@jscad/io-utils": "3.0.
|
|
37
|
-
"@jscad/modeling": "3.0.
|
|
36
|
+
"@jscad/io-utils": "3.0.6-alpha.0",
|
|
37
|
+
"@jscad/modeling": "3.0.6-alpha.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@rollup/plugin-node-resolve": "^15.2.0",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"rollup": "^4.52.0",
|
|
45
45
|
"rollup-plugin-version-injector": "^1.3.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "201d3987b309fd1f383b10b5555dd0a2765cad43"
|
|
48
48
|
}
|
package/src/instantiate.js
CHANGED
|
@@ -227,7 +227,8 @@ const instantiateEllipse = (obj, layers, options) => {
|
|
|
227
227
|
mat4.multiply(matrix, matrix, mat4.fromTranslation(mat4.create(), [pptx, ppty, 0]))
|
|
228
228
|
return geom2.transform(matrix, cag)
|
|
229
229
|
}
|
|
230
|
-
// convert to 3D object
|
|
230
|
+
// FIXME convert to 3D object
|
|
231
|
+
return geom3.create()
|
|
231
232
|
}
|
|
232
233
|
|
|
233
234
|
const instantiateFaces = (fvals) => {
|