okgeometry-api 1.1.5 → 1.1.6
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/dist/Mesh.d.ts +3 -3
- package/dist/Mesh.js +3 -3
- package/dist/wasm-base64.d.ts +1 -1
- package/dist/wasm-base64.d.ts.map +1 -1
- package/dist/wasm-base64.js +1 -1
- package/dist/wasm-base64.js.map +1 -1
- package/package.json +3 -2
- package/src/Mesh.ts +11 -11
- package/src/wasm-base64.ts +1 -1
- package/wasm/okgeometrycore.d.ts +1 -1
- package/wasm/okgeometrycore.js +2 -2
- package/wasm/okgeometrycore_bg.wasm +0 -0
- package/wasm/package.json +1 -1
package/wasm/okgeometrycore.d.ts
CHANGED
|
@@ -326,7 +326,7 @@ export function mesh_create_cylinder(radius: number, height: number, segments: n
|
|
|
326
326
|
export function mesh_create_prism(radius: number, height: number, sides: number): Float64Array;
|
|
327
327
|
|
|
328
328
|
/**
|
|
329
|
-
* Create a sphere mesh and return buffers
|
|
329
|
+
* Create a geodesic sphere mesh matching Manifold's sphere topology and return buffers
|
|
330
330
|
*/
|
|
331
331
|
export function mesh_create_sphere(radius: number, segments: number, rings: number): Float64Array;
|
|
332
332
|
|
package/wasm/okgeometrycore.js
CHANGED
|
@@ -872,7 +872,7 @@ export function mesh_create_prism(radius, height, sides) {
|
|
|
872
872
|
}
|
|
873
873
|
|
|
874
874
|
/**
|
|
875
|
-
* Create a sphere mesh and return buffers
|
|
875
|
+
* Create a geodesic sphere mesh matching Manifold's sphere topology and return buffers
|
|
876
876
|
* @param {number} radius
|
|
877
877
|
* @param {number} segments
|
|
878
878
|
* @param {number} rings
|
|
@@ -1777,7 +1777,7 @@ export function version() {
|
|
|
1777
1777
|
function __wbg_get_imports() {
|
|
1778
1778
|
const import0 = {
|
|
1779
1779
|
__proto__: null,
|
|
1780
|
-
|
|
1780
|
+
__wbg___okgeometry_boolean_should_cancel_5ddaf5d663ad58f8: function() {
|
|
1781
1781
|
const ret = globalThis.__okgeometry_boolean_should_cancel();
|
|
1782
1782
|
return ret;
|
|
1783
1783
|
},
|
|
Binary file
|
package/wasm/package.json
CHANGED