(centerX: number, centerY: number, sides: number, radius: number, rotation: number, color: Color)
| 40 | } |
| 41 | |
| 42 | export function drawPoly(centerX: number, centerY: number, sides: number, radius: number, rotation: number, color: Color): void { |
| 43 | bloom_draw_poly(centerX, centerY, sides, radius, rotation, color.r, color.g, color.b, color.a); |
| 44 | } |
| 45 | |
| 46 | // Bezier curve drawing (pure TS — subdivides cubic bezier into line segments) |
| 47 |
nothing calls this directly
no test coverage detected