(slices: number, spacing: number)
| 244 | } |
| 245 | |
| 246 | export function drawGrid(slices: number, spacing: number): void { |
| 247 | bloom_draw_grid(slices, spacing); |
| 248 | } |
| 249 | |
| 250 | export function drawRay(origin: Vec3, direction: Vec3, color: Color): void { |
| 251 | bloom_draw_ray(origin.x, origin.y, origin.z, direction.x, direction.y, direction.z, color.r, color.g, color.b, color.a); |
no test coverage detected