@bldrs-ai/conway 0.21.915 → 0.23.940
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 +3 -0
- package/compiled/Dist/ConwayGeomWasmNode.js +1 -1
- package/compiled/Dist/ConwayGeomWasmNodeMT.js +1 -1
- package/compiled/Dist/ConwayGeomWasmWeb.js +1 -1
- package/compiled/Dist/ConwayGeomWasmWebMT.js +1 -1
- package/compiled/Dist/ConwayGeomWasmWebMT.wasm +0 -0
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmNode.js +1 -1
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmNodeMT.js +1 -1
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWeb.js +1 -1
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWebMT.js +1 -1
- package/compiled/dependencies/conway-geom/Dist/ConwayGeomWasmWebMT.wasm +0 -0
- package/compiled/dependencies/conway-geom/index.d.ts +1 -0
- package/compiled/dependencies/conway-geom/index.d.ts.map +1 -1
- package/compiled/dependencies/conway-geom/index.js +1 -0
- package/compiled/dependencies/conway-geom/interface/conway_geometry.d.ts +14 -0
- package/compiled/dependencies/conway-geom/interface/conway_geometry.d.ts.map +1 -1
- package/compiled/dependencies/conway-geom/interface/conway_geometry.js +18 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_get_block.d.ts +8 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_get_block.d.ts.map +1 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_get_block.js +1 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_get_rectangle_profile_curve.d.ts +3 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_get_rectangle_profile_curve.d.ts.map +1 -1
- package/compiled/dependencies/conway-geom/interface/parameters/params_get_revolved_area_solid.d.ts +14 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_get_revolved_area_solid.d.ts.map +1 -0
- package/compiled/dependencies/conway-geom/interface/parameters/params_get_revolved_area_solid.js +1 -0
- package/compiled/examples/browser-bundled.cjs +1 -1
- package/compiled/examples/cli-bundled.cjs +360 -116
- package/compiled/examples/validator-bundled.cjs +1 -1
- package/compiled/src/ifc/ifc_block_extraction.test.d.ts +2 -0
- package/compiled/src/ifc/ifc_block_extraction.test.d.ts.map +1 -0
- package/compiled/src/ifc/ifc_block_extraction.test.js +66 -0
- package/compiled/src/ifc/ifc_geometry_extraction.d.ts +21 -5
- package/compiled/src/ifc/ifc_geometry_extraction.d.ts.map +1 -1
- package/compiled/src/ifc/ifc_geometry_extraction.js +214 -38
- package/compiled/src/rendering/threejs/html_viewer.d.ts +9 -0
- package/compiled/src/rendering/threejs/html_viewer.d.ts.map +1 -1
- package/compiled/src/rendering/threejs/html_viewer.js +12 -0
- package/compiled/src/rendering/threejs/simple_viewer_scene.d.ts +21 -0
- package/compiled/src/rendering/threejs/simple_viewer_scene.d.ts.map +1 -1
- package/compiled/src/rendering/threejs/simple_viewer_scene.js +101 -0
- package/compiled/src/version/version.js +1 -1
- package/compiled/tsconfig.tsbuildinfo +1 -1
- package/package.json +10 -1
package/README.md
CHANGED
|
@@ -8,6 +8,9 @@ Conway includes two major subcomponents:
|
|
|
8
8
|
|
|
9
9
|
## Getting Started
|
|
10
10
|
|
|
11
|
+
### Codex Setup
|
|
12
|
+
1. Ignore the below and refer to AGENTS.md.
|
|
13
|
+
|
|
11
14
|
### Windows Setup
|
|
12
15
|
1. [Install MinGW-64](https://github.com/msys2/msys2-installer/releases/download/2022-06-03/msys2-x86_64-20220603.exe) and add ```g++.exe``` location to your PATH variable.
|
|
13
16
|
|