(position: Vec3, width: number, depth: number, color: Color)
| 240 | } |
| 241 | |
| 242 | export function drawPlane(position: Vec3, width: number, depth: number, color: Color): void { |
| 243 | bloom_draw_plane(position.x, position.y, position.z, width, depth, color.r, color.g, color.b, color.a); |
| 244 | } |
| 245 | |
| 246 | export function drawGrid(slices: number, spacing: number): void { |
| 247 | bloom_draw_grid(slices, spacing); |
no test coverage detected