nodi-modular 0.0.26 → 0.0.27

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/index.d.ts CHANGED
@@ -1,6 +1,11 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  export function do_nothing_just_tell_wasm_bindgen_to_generate_types(): void;
4
+ export interface GeometryTransformInterop {
5
+ geometry: GeometryProxy;
6
+ transform: TransformInterop;
7
+ }
8
+
4
9
  export type NodeOutput = (Map<string, Item[]> | undefined)[];
5
10
 
6
11
  /**
@@ -8,11 +13,6 @@ export type NodeOutput = (Map<string, Item[]> | undefined)[];
8
13
  */
9
14
  export type Item = { variant: "Bool"; data: boolean } | { variant: "String"; data: string } | { variant: "Number"; data: number } | { variant: "Domain"; data: Domain } | { variant: "Vector3"; data: Vector3<number> } | { variant: "Matrix4"; data: Matrix4<number> } | { variant: "Complex"; data: Complex<number> } | { variant: "Point3"; data: Point3<number> } | { variant: "Plane"; data: Plane } | { variant: "GeometryTransform"; data: GeometryTransformInterop } | { variant: "MeshFace"; data: MeshTriangleFace };
10
15
 
11
- export interface GeometryTransformInterop {
12
- geometry: GeometryProxy;
13
- transform: TransformInterop;
14
- }
15
-
16
16
  export interface GroupInteropHandle {
17
17
  objects: GeometryInteropHandleProxy[];
18
18
  }
@@ -871,8 +871,8 @@ export interface InitOutput {
871
871
  readonly __externref_table_dealloc: (a: number) => void;
872
872
  readonly __externref_drop_slice: (a: number, b: number) => void;
873
873
  readonly __wbindgen_free: (a: number, b: number, c: number) => void;
874
- readonly closure865_externref_shim: (a: number, b: number, c: any) => void;
875
- readonly closure3552_externref_shim: (a: number, b: number, c: any, d: any) => void;
874
+ readonly closure864_externref_shim: (a: number, b: number, c: any) => void;
875
+ readonly closure3551_externref_shim: (a: number, b: number, c: any, d: any) => void;
876
876
  readonly __wbindgen_start: () => void;
877
877
  }
878
878
 
package/index.js CHANGED
@@ -225,11 +225,11 @@ export function do_nothing_just_tell_wasm_bindgen_to_generate_types() {
225
225
  }
226
226
 
227
227
  function __wbg_adapter_52(arg0, arg1, arg2) {
228
- wasm.closure865_externref_shim(arg0, arg1, arg2);
228
+ wasm.closure864_externref_shim(arg0, arg1, arg2);
229
229
  }
230
230
 
231
231
  function __wbg_adapter_129(arg0, arg1, arg2, arg3) {
232
- wasm.closure3552_externref_shim(arg0, arg1, arg2, arg3);
232
+ wasm.closure3551_externref_shim(arg0, arg1, arg2, arg3);
233
233
  }
234
234
 
235
235
  const ModularFinalization = (typeof FinalizationRegistry === 'undefined')
@@ -643,8 +643,8 @@ function __wbg_get_imports() {
643
643
  const ret = false;
644
644
  return ret;
645
645
  };
646
- imports.wbg.__wbindgen_closure_wrapper3636 = function(arg0, arg1, arg2) {
647
- const ret = makeMutClosure(arg0, arg1, 866, __wbg_adapter_52);
646
+ imports.wbg.__wbindgen_closure_wrapper3639 = function(arg0, arg1, arg2) {
647
+ const ret = makeMutClosure(arg0, arg1, 865, __wbg_adapter_52);
648
648
  return ret;
649
649
  };
650
650
  imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
package/index_bg.wasm CHANGED
Binary file
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Masatatsu Nakamura <masatatsu.nakamura@gmail.com"
6
6
  ],
7
7
  "description": "Modular is a module project designed to import node graphs created in Nodi in JSON format, enabling the extraction of geometric data generated based on the node graph structure.",
8
- "version": "0.0.26",
8
+ "version": "0.0.27",
9
9
  "license": "MIT",
10
10
  "repository": {
11
11
  "type": "git",