add flocking pkg/

This commit is contained in:
John Gatward
2026-03-20 19:50:57 +00:00
parent 6afbbc5d99
commit d4ca596cdd
6 changed files with 491 additions and 1 deletions

View File

@@ -0,0 +1,20 @@
/* tslint:disable */
/* eslint-disable */
export const memory: WebAssembly.Memory;
export const __wbg_simulationwasm_free: (a: number, b: number) => void;
export const simulationwasm_add_boid: (a: number) => void;
export const simulationwasm_boid_buffer_len: (a: number) => number;
export const simulationwasm_boid_buffer_ptr: (a: number) => number;
export const simulationwasm_boid_buffer_stride: (a: number) => number;
export const simulationwasm_get_align_mult: (a: number) => number;
export const simulationwasm_get_boid_count: (a: number) => number;
export const simulationwasm_get_cohesion_mult: (a: number) => number;
export const simulationwasm_get_separation_mult: (a: number) => number;
export const simulationwasm_new: (a: number, b: number, c: number) => number;
export const simulationwasm_remove_boid: (a: number) => void;
export const simulationwasm_resize: (a: number, b: number, c: number) => void;
export const simulationwasm_set_align_mult: (a: number, b: number) => void;
export const simulationwasm_set_cohesion_mult: (a: number, b: number) => void;
export const simulationwasm_set_separation_mult: (a: number, b: number) => void;
export const simulationwasm_step: (a: number) => void;
export const __wbindgen_export: (a: number) => void;