(cx: f64, cy: f64, cz: f64, radius: f64, r: f64, g: f64, b: f64, a: f64)
| 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) { |
| 518 | engine().renderer.draw_sphere(cx, cy, cz, radius, r, g, b, a); |
| 519 | } |
| 520 | |
| 521 | #[wasm_bindgen] |
| 522 | pub fn bloom_draw_sphere_wires(cx: f64, cy: f64, cz: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) { |
nothing calls this directly
no test coverage detected