(x: f64, y: f64, z: f64, w: f64, h: f64, d: f64, r: f64, g: f64, b: f64, a: f64)
| 510 | |
| 511 | #[wasm_bindgen] |
| 512 | pub fn bloom_draw_cube_wires(x: f64, y: f64, z: f64, w: f64, h: f64, d: f64, r: f64, g: f64, b: f64, a: f64) { |
| 513 | engine().renderer.draw_cube_wires(x, y, z, w, h, d, r, g, b, a); |
| 514 | } |
| 515 | |
| 516 | #[wasm_bindgen] |
| 517 | pub fn bloom_draw_sphere(cx: f64, cy: f64, cz: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
nothing calls this directly
no test coverage detected