beckhoff-xts-viewer-3d 4.8.0 → 4.10.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/README.md +8 -2
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +222 -9
- package/dist/index.d.ts +222 -9
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/docs/screenshots/10-feed-segments.png +0 -0
- package/docs/screenshots/README.md +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,6 +103,11 @@ reflections, ACES tone mapping and anisotropic textures are on by default.
|
|
|
103
103
|
- **Selection + drive status** — click to select modules / movers; the GLB
|
|
104
104
|
itself tints / blinks (no wireframe overlays), and a small modern 3D status
|
|
105
105
|
icon (warning ▲ / error ⊙) floats above affected objects.
|
|
106
|
+
- **Feed segment highlights (Einspeisestränge)** — `feedSegmentHighlights`
|
|
107
|
+
tints whole electrical strands: every module from one Einspeisemodul up to
|
|
108
|
+
the next, several strands at once, each in its own colour. Closed loops wrap
|
|
109
|
+
the seam automatically. `viewerRef.current.getFeedSegments()` lists what a
|
|
110
|
+
layout contains.
|
|
106
111
|
- **Multi-track** — per-XPU `trackTransform` (position + rotation +
|
|
107
112
|
uniform scale) so independent XTS lines can sit side-by-side in one scene.
|
|
108
113
|
- **Live calibration overrides** — push origin-correction edits to module /
|
|
@@ -148,8 +153,8 @@ reflections, ACES tone mapping and anisotropic textures are on by default.
|
|
|
148
153
|
`getMoverWorldTransform` / `getBoundingBox` / `exportModel` /
|
|
149
154
|
`exportScreenshot` / `setMoverPosition(s)` (Record or
|
|
150
155
|
`MoverPositionEntry[]` indexed by `MoverConfig.index`) / `getMoverPosition` /
|
|
151
|
-
`setModuleStatuses` / `clearModuleStatuses` / `
|
|
152
|
-
`reloadAssets`.
|
|
156
|
+
`setModuleStatuses` / `clearModuleStatuses` / `getFeedSegments` /
|
|
157
|
+
`checkMoverCollisions` / `reloadAssets`.
|
|
153
158
|
- **Designed for scale** — the `⚡ Perf stress` demo runs three ovals × 250
|
|
154
159
|
movers each (= 750 simultaneously animated movers) without React commits
|
|
155
160
|
during the steady state.
|
|
@@ -164,6 +169,7 @@ reflections, ACES tone mapping and anisotropic textures are on by default.
|
|
|
164
169
|
| <br>**Stator heatmap** — vertex-colour gradient along the centerline, fed from your live drive currents. | <br>**Sub-mm collision detection** — continuous monitor with banner; pair-wise 1D arc-length test on the shared chain. |
|
|
165
170
|
| <br>**Drive status** — emissive blink at 1 Hz on the GLB itself + camera-facing 3D icons (▲ warning, ⊙ error). | <br>**Perf stress** — 750 movers animated at 60 Hz with zero React commits in steady state. |
|
|
166
171
|
| <br>**PCF-soft shadows + IBL** — opt-in shadows on a transparent canvas; image-based lighting on by default. | <br>**`exportScreenshot('top-down')`** — orthographic, AABB-fit, mirrors the 2D viewer convention. |
|
|
172
|
+
| <br>**Feed segments (Einspeisestränge)** — `feedSegmentHighlights` tints whole strands; the pink one wraps the loop seam. | |
|
|
167
173
|
|
|
168
174
|
---
|
|
169
175
|
|