(position: Vec3, radius: number, color: Color)
| 228 | } |
| 229 | |
| 230 | export function drawSphere(position: Vec3, radius: number, color: Color): void { |
| 231 | bloom_draw_sphere(position.x, position.y, position.z, radius, color.r, color.g, color.b, color.a); |
| 232 | } |
| 233 | |
| 234 | export function drawSphereWires(position: Vec3, radius: number, color: Color): void { |
| 235 | bloom_draw_sphere_wires(position.x, position.y, position.z, radius, color.r, color.g, color.b, color.a); |
no test coverage detected