You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This package includes a custom build of the OpenCascade.js library, which compiles the C++ OpenCascade Technology (OCCT) kernel into Web Assembly (wasm) using emscripten. Our aim with this library is to abstract the OCCT kernel and provide a straightforward JavaScript API for its use.
56
+
This package includes a custom build of the C++ OpenCascade Technology (OCCT) kernel into Web Assembly (wasm) using emscripten. Our aim with this library is to abstract the OCCT kernel and provide a straightforward JavaScript API for its use.
57
57
58
58
The "bitbybit-occt" is independent of front-end frameworks or game engines. It can run both on the browser and on NodeJS apps. This makes this package very versatile as it can even run 3D CAD algorithms on the server.
Copy file name to clipboardExpand all lines: docs/blog/2024-04-13-testing-3d-geometry-algorithms.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ We've been working on improving the quality of our core codebase by adding new u
14
14
15
15
### What is @bitbybit-dev/occt?
16
16
17
-
`@bitbybit-dev/occt` is the core CAD (Computer-Aided Design) layer of our platform, shared with the open-source community under the MIT license. This layer is built on top of the powerful [OpenCascade Technology (OCCT)](https://www.opencascade.com/doc/occt-7.6.0/overview/html/occt__ov.html) 3D kernel, accessed through the [OpenCascade.js](https://github.com/occt-web-viewer/opencascade.js) library.
17
+
`@bitbybit-dev/occt` is the core CAD (Computer-Aided Design) layer of our platform, shared with the open-source community under the MIT license. This layer is built on top of the powerful [OpenCascade Technology (OCCT)](https://github.com/Open-Cascade-SAS/OCCT) 3D kernel.
18
18
19
19
Over time, numerous 3D geometry algorithms have been developed within this layer, enabling our users to create intricate and complex 3D designs. As the codebase grew steadily, it became necessary to split it into smaller, more manageable modules. However, before embarking on this significant refactoring, it was imperative to write comprehensive unit tests. This ensures that any restructuring would not inadvertently disrupt existing functionality or introduce regressions.
Copy file name to clipboardExpand all lines: docs/blog/2024-04-23-introducing-bitbybit-runner.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,6 +162,6 @@ While the process is designed to be straightforward, there are still a few steps
162
162
163
163
First, you must include the `BITBYBIT-RUNNER.JS` script on your website. This single script will automatically load all the necessary resources, including WebAssembly modules, and instantiate web workers and physics engines. Once that's done, you can run your exported scripts and interact with them.
164
164
165
-
The JavaScript file is hosted on the JSDelivr CDN and can be included on your website by adding this script tag to your HTML (usually in the `<head>` or before the closing `</body>` tag):
165
+
The JavaScript file is hosted on the Bitbybit CDN and can be included on your website by adding this script tag to your HTML (usually in the `<head>` or before the closing `</body>` tag):
**Note:** You should replace `<version-number-of-bitbybit>` with an actual version number (e.g., `<Version />`). You can find all the official versions of Bitbybit.dev here:
Copy file name to clipboardExpand all lines: docs/blog/2026-01-06-playcanvas-support.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,19 +66,19 @@ The PlayCanvas Runner follows the same architecture as our other runners, suppor
66
66
67
67
### How to Include the PlayCanvas Runner
68
68
69
-
The runners are served from the **jsDelivr CDN**. Include them in your website with these script tags (replace `<version-number-of-bitbybit>` with the actual version):
69
+
The runners are served from the **Bitbybit CDN**. Include them in your website with these script tags (replace `<version-number-of-bitbybit>` with the actual version):
70
70
71
71
:::tip Self-Hosting
72
72
For production applications, consider [**self-hosting the runners and assets**](/learn/hosting-and-cdn) for improved reliability and performance.
import Version from '@site/src/components/Version';
10
+
9
11

10
12
11
13
TLDR
12
14
```bash
13
15
npx @bitbybit-dev/create-app my-awesome-project
14
16
```
15
17
16
-
Bitbybit version 0.21.1 brings a brand new developer experience to the table. Say hello to `@bitbybit-dev/create-app`, a CLI tool that lets you scaffold fully-configured 3D CAD projects in just a few seconds.
18
+
Bitbybit brings a brand new developer experience to the table. Say hello to `@bitbybit-dev/create-app`, a CLI tool that lets you scaffold fully-configured 3D CAD projects in just a few seconds.
0 commit comments