fluidcad 0.0.4 → 0.0.5
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 +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,23 @@
|
|
|
6
6
|
|
|
7
7
|
<p align="center"><strong>Write CAD models in JavaScript. See the result in real time.</strong></p>
|
|
8
8
|
|
|
9
|
+
<p align="center">
|
|
10
|
+
<a href="https://fluidcad.io/docs/getting-started">Getting Started</a> ·
|
|
11
|
+
<a href="https://fluidcad.io/docs/tutorials/">Tutorials</a> ·
|
|
12
|
+
<a href="https://fluidcad.io/docs/guides">Guides</a>
|
|
13
|
+
</p>
|
|
14
|
+
|
|
9
15
|
> FluidCAD is under active development. APIs and features may change as the project evolves.
|
|
16
|
+
>
|
|
17
|
+
> I'm not accepting pull requests just yet -- I'm still finalizing the design and putting together a roadmap. Once I hit **v0.1.0**, I'd love to have contributions from the community. Stay tuned!
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Under the Hood
|
|
22
|
+
|
|
23
|
+
FluidCAD is built on [OpenCascade](https://dev.opencascade.org/), a full B-Rep (boundary representation) modeling kernel, through the [opencascade.js](https://ocjs.org/) WebAssembly binding. This means precise, production-grade geometry -- exact edges, fillets, and booleans -- not mesh approximations.
|
|
24
|
+
|
|
25
|
+
A huge thanks to the [opencascade.js](https://ocjs.org/) team for making this possible.
|
|
10
26
|
|
|
11
27
|
---
|
|
12
28
|
|