explodeview 1.0.0 → 1.0.1
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 +33 -17
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
[](https://www.npmjs.com/package/explodeview)
|
|
7
7
|
|
|
8
8
|
<p align="center">
|
|
9
|
-
<img src="docs/hero.
|
|
9
|
+
<img src="https://raw.githubusercontent.com/vvlars-cmd/explodeview/main/docs/hero.png" alt="ExplodeView Demo" width="720" />
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
12
|
ExplodeView takes STEP/STP CAD assembly files and creates embeddable, interactive 3D viewers with:
|
|
@@ -14,9 +14,13 @@ ExplodeView takes STEP/STP CAD assembly files and creates embeddable, interactiv
|
|
|
14
14
|
- **Exploded views** — blow apart assemblies to show internal components
|
|
15
15
|
- **Sub-assembly highlighting** — click any assembly to isolate and inspect it
|
|
16
16
|
- **Realistic materials** — brushed steel, matte plastic, rubber, metallic finishes
|
|
17
|
-
- **Full controls** — zoom, rotate, collapse/expand, auto-orbit
|
|
18
|
-
- **
|
|
19
|
-
- **
|
|
17
|
+
- **Full controls** — zoom, rotate, pan, collapse/expand, auto-orbit
|
|
18
|
+
- **Measurement tools** — distance, angles, section cuts, annotations
|
|
19
|
+
- **Manufacturing integration** — Kiri:Moto (FDM/CNC/Laser/SLA), STL export, BOM export
|
|
20
|
+
- **QR codes** — scannable deep-links per part for AR and sharing
|
|
21
|
+
- **Assembly animations** — step-by-step disassembly/assembly sequences
|
|
22
|
+
- **DIN/ISO identification** — standard parts recognition + McMaster-Carr links
|
|
23
|
+
- **Zero dependencies** — single script, loads Three.js from CDN
|
|
20
24
|
- **Responsive** — works on desktop, tablet, mobile
|
|
21
25
|
|
|
22
26
|
## Quick Start
|
|
@@ -154,19 +158,31 @@ Each assembly can have custom material properties in the assemblies JSON:
|
|
|
154
158
|
|
|
155
159
|
| Feature | Free (MIT) | Pro |
|
|
156
160
|
|---------|-----------|-----|
|
|
157
|
-
| 3D exploded view |
|
|
158
|
-
| Assembly highlighting |
|
|
159
|
-
| Collapse/expand controls |
|
|
160
|
-
| Auto-rotate |
|
|
161
|
-
|
|
|
162
|
-
|
|
|
163
|
-
|
|
|
164
|
-
|
|
|
165
|
-
|
|
|
166
|
-
|
|
|
167
|
-
|
|
|
168
|
-
|
|
|
169
|
-
|
|
|
161
|
+
| 3D exploded view | ✅ | ✅ |
|
|
162
|
+
| Assembly tree + highlighting | ✅ | ✅ |
|
|
163
|
+
| Collapse/expand controls | ✅ | ✅ |
|
|
164
|
+
| Auto-rotate, pan, zoom | ✅ | ✅ |
|
|
165
|
+
| Wireframe toggle | ✅ | ✅ |
|
|
166
|
+
| Custom branding | ✅ | ✅ |
|
|
167
|
+
| Embed on your site | ✅ | ✅ |
|
|
168
|
+
| STEP processing CLI | ✅ | ✅ |
|
|
169
|
+
| Multi-language (6 langs) | ✅ | ✅ |
|
|
170
|
+
| QR codes per part | — | ✅ |
|
|
171
|
+
| Part info cards | — | ✅ |
|
|
172
|
+
| BOM export (CSV) | — | ✅ |
|
|
173
|
+
| Measurement (distance + angles) | — | ✅ |
|
|
174
|
+
| Annotation pins | — | ✅ |
|
|
175
|
+
| Section cut / cross-section | — | ✅ |
|
|
176
|
+
| Assembly/disassembly animation | — | ✅ |
|
|
177
|
+
| DIN/ISO standard parts + McMaster | — | ✅ |
|
|
178
|
+
| STL export per part | — | ✅ |
|
|
179
|
+
| Kiri:Moto (FDM/CNC/Laser/SLA) | — | ✅ |
|
|
180
|
+
| Hero shots (marketing images) | — | ✅ |
|
|
181
|
+
| AR Scanner (WebXR) | — | ✅ |
|
|
182
|
+
| Interactive manual generator | — | ✅ |
|
|
183
|
+
| Cloud processing API | — | Enterprise |
|
|
184
|
+
| White-label (remove branding) | — | Enterprise |
|
|
185
|
+
| Priority support | — | Enterprise |
|
|
170
186
|
|
|
171
187
|
## Who is this for?
|
|
172
188
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "explodeview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Embeddable 3D exploded-view viewer for STEP/CAD files. Turn any CAD assembly into an interactive product showcase with explode animations, measurements, section cuts, QR codes, and manufacturing tools.",
|
|
5
5
|
"main": "src/explodeview.js",
|
|
6
6
|
"types": "src/explodeview.d.ts",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
],
|
|
34
34
|
"author": "Sachin Kumar",
|
|
35
35
|
"license": "MIT",
|
|
36
|
-
"homepage": "https://github.com/
|
|
36
|
+
"homepage": "https://github.com/vvlars-cmd/explodeview",
|
|
37
37
|
"repository": {
|
|
38
38
|
"type": "git",
|
|
39
|
-
"url": "https://github.com/
|
|
39
|
+
"url": "git+https://github.com/vvlars-cmd/explodeview.git"
|
|
40
40
|
},
|
|
41
41
|
"bugs": {
|
|
42
|
-
"url": "https://github.com/
|
|
42
|
+
"url": "https://github.com/vvlars-cmd/explodeview/issues"
|
|
43
43
|
},
|
|
44
44
|
"files": [
|
|
45
45
|
"src/explodeview.js",
|