brepjs-bim 0.24.1 → 0.24.3
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 +6 -0
- package/dist/brepjs-bim.cjs +3573 -1871
- package/dist/brepjs-bim.js +3575 -1873
- package/dist/elementFns/placedGeometry.d.ts +1 -1
- package/dist/familiesFrame.d.ts +11 -0
- package/dist/familiesProductBody.d.ts +2 -2
- package/dist/ifc-writer/tessellationWriter.d.ts +1 -1
- package/dist/import/placement.d.ts +1 -46
- package/dist/import/spfReader.d.ts +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/placementFrame.d.ts +47 -36
- package/dist/productBodyCleanup.d.ts +33 -0
- package/dist/productBodyTestHooks.d.ts +19 -0
- package/dist/rigidPlacement.d.ts +2 -2
- package/dist/serialize/exactWallQuantities.d.ts +4 -8
- package/dist/types/productBody.d.ts +17 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -192,3 +192,9 @@ npm run lint --workspace=brepjs-bim
|
|
|
192
192
|
npm run build --workspace=brepjs-bim
|
|
193
193
|
npm run test --workspace=brepjs-bim
|
|
194
194
|
```
|
|
195
|
+
|
|
196
|
+
### Body material measurement
|
|
197
|
+
|
|
198
|
+
Exact Wall quantities measure occupied material across all retained items. Overlapping solids count once. Bounds include every item. Measurement and temporary cleanup failures make these optional measurements unavailable and preserve the borrowed inputs. Cleanup never retries an uncertain native release.
|
|
199
|
+
|
|
200
|
+
The BIM package requires `brepjs >=19.0.5` for native cleanup-error reporting.
|