brepjs 18.3.2 → 18.4.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 +11 -11
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ CAD modeling for JavaScript.
|
|
|
6
6
|
[](https://github.com/andymai/brepjs/actions/workflows/ci.yml)
|
|
7
7
|
[](./LICENSE)
|
|
8
8
|
|
|
9
|
-
**[Getting Started](./docs/getting-started.md)** · **[Cheat Sheet](./docs/cheat-sheet.md)** · **[Docs](https://
|
|
9
|
+
**[Getting Started](./docs/getting-started.md)** · **[Cheat Sheet](./docs/cheat-sheet.md)** · **[Docs](https://brepjs.dev/)**
|
|
10
10
|
|
|
11
11
|
Shapes are exact mathematical boundaries - not triangle meshes - so booleans are precise, measurements are real, and you can export to STEP. TypeScript types prove the geometry is valid at compile time.
|
|
12
12
|
|
|
@@ -69,16 +69,16 @@ Imports flow downward only. Boundaries are enforced in CI.
|
|
|
69
69
|
|
|
70
70
|
The chapter-based guide is the recommended starting point:
|
|
71
71
|
|
|
72
|
-
- **[Why brepjs](https://
|
|
73
|
-
- **[Install & Initialize](https://
|
|
74
|
-
- **[Your First Solid](https://
|
|
75
|
-
- **[Cheat Sheet](https://
|
|
76
|
-
- **[Core Concepts](https://
|
|
77
|
-
- **[Common Tasks](https://
|
|
78
|
-
- **[Three.js Integration](https://
|
|
79
|
-
- **[Migration](https://
|
|
80
|
-
- **[Extending brepjs](https://
|
|
81
|
-
- **[Reference](https://
|
|
72
|
+
- **[Why brepjs](https://brepjs.dev/introduction/why-brepjs)** — what makes it different, who it's for
|
|
73
|
+
- **[Install & Initialize](https://brepjs.dev/getting-started/install)** — three init styles, bundler notes
|
|
74
|
+
- **[Your First Solid](https://brepjs.dev/getting-started/first-solid)** — the canonical drill-fillet-export workflow
|
|
75
|
+
- **[Cheat Sheet](https://brepjs.dev/getting-started/cheat-sheet)** — single-page reference
|
|
76
|
+
- **[Core Concepts](https://brepjs.dev/concepts/brep-vs-mesh)** — B-Rep, topology, types, kernels, tolerance
|
|
77
|
+
- **[Common Tasks](https://brepjs.dev/tasks/booleans)** — booleans, fillets, sketching, lofts, sweeps, finders, measurement, IO
|
|
78
|
+
- **[Three.js Integration](https://brepjs.dev/integration/threejs)** — meshing and rendering
|
|
79
|
+
- **[Migration](https://brepjs.dev/migration/replicad)** — coming from Replicad, OpenSCAD, or Three.js
|
|
80
|
+
- **[Extending brepjs](https://brepjs.dev/extending/architecture)** — custom kernels, custom operations, architecture
|
|
81
|
+
- **[Reference](https://brepjs.dev/reference/glossary)** — glossary, function lookup, error codes, ADRs
|
|
82
82
|
- **[API Reference (TypeDoc)](https://andymai.github.io/brepjs/)** — searchable type-level reference
|
|
83
83
|
|
|
84
84
|
Legacy single-page docs in [./docs/](./docs/) remain available; the chapter site is the canonical location going forward.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "brepjs",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.4.1",
|
|
4
4
|
"description": "Web CAD library with pluggable geometry kernel",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cad",
|
|
@@ -212,6 +212,7 @@
|
|
|
212
212
|
"docs:preview": "npm -C docs-site run preview",
|
|
213
213
|
"docs:extract-tests": "npx tsx scripts/extract-doc-tests.ts",
|
|
214
214
|
"docs:render-images": "npx tsx scripts/render-doc-images.ts",
|
|
215
|
+
"gen:og": "bash scripts/gen-og.sh",
|
|
215
216
|
"test:docs": "npm run docs:extract-tests && vitest run --project occt tests/docs",
|
|
216
217
|
"conformance:generate": "npx tsx scripts/generateConformance.ts",
|
|
217
218
|
"sync:brepkit-types": "npx tsx scripts/sync-brepkit-types.ts",
|