x3d-image 3.0.8 → 3.0.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/README.md +13 -12
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -98,17 +98,18 @@ The exposure of an image describes the amount of light that is captured.
|
|
|
98
98
|
|
|
99
99
|
## Supported Input File Types
|
|
100
100
|
|
|
101
|
-
| Encoding | File Extension | MIME Type
|
|
102
|
-
|
|
103
|
-
| X3D XML | .x3d, .x3dz | model/x3d+xml
|
|
104
|
-
| X3D JSON | .x3dj, .x3djz | model/x3d+json
|
|
105
|
-
| X3D Classic VRML | .x3dv, .x3dvz | model/x3d+vrml
|
|
106
|
-
| VRML 2.0 | .wrl, .wrz | model/vrml
|
|
107
|
-
| glTF | .gltf, .glb | model/gltf+json
|
|
108
|
-
|
|
|
109
|
-
|
|
|
110
|
-
|
|
|
111
|
-
|
|
|
101
|
+
| Encoding | File Extension | MIME Type |
|
|
102
|
+
|------------------|----------------|-------------------|
|
|
103
|
+
| X3D XML | .x3d, .x3dz | model/x3d+xml |
|
|
104
|
+
| X3D JSON | .x3dj, .x3djz | model/x3d+json |
|
|
105
|
+
| X3D Classic VRML | .x3dv, .x3dvz | model/x3d+vrml |
|
|
106
|
+
| VRML 2.0 | .wrl, .wrz | model/vrml |
|
|
107
|
+
| glTF | .gltf, .glb | model/gltf+json |
|
|
108
|
+
| VRM | .vrm | model/vrm |
|
|
109
|
+
| Wavefront OBJ | .obj | model/obj |
|
|
110
|
+
| STL | .stl | model/stl |
|
|
111
|
+
| PLY | .ply | model/ply |
|
|
112
|
+
| SVG Document | .svg, .svgz | image/svg+xml |
|
|
112
113
|
|
|
113
114
|
## Supported Output File Types
|
|
114
115
|
|
|
@@ -139,4 +140,4 @@ $ npx x3d-image -a -w CANNON -i file.gltf -e .png
|
|
|
139
140
|
|
|
140
141
|
## See Also
|
|
141
142
|
|
|
142
|
-
* [x3d-tidy](https://www.npmjs.com/package/x3d-tidy) — X3D
|
|
143
|
+
* [x3d-tidy](https://www.npmjs.com/package/x3d-tidy) — X3D Converter, Beautifier and Minimizer
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "x3d-image",
|
|
3
|
-
"version": "3.0.
|
|
4
|
-
"description": "Render
|
|
3
|
+
"version": "3.0.10",
|
|
4
|
+
"description": "Render Image Files from X3D",
|
|
5
5
|
"main": "src/main.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"x3d-image": "bin/x3d-image.js"
|
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"colors": "^1.4.0",
|
|
60
|
-
"electron": "^
|
|
61
|
-
"x_ite": "^14.0
|
|
60
|
+
"electron": "^41.0.3",
|
|
61
|
+
"x_ite": "^14.1.0",
|
|
62
62
|
"yargs": "^18.0.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|