MCPcopy Create free account
hub / github.com/Bloom-Engine/engine / drawRectLines

Function drawRectLines

src/shapes/index.ts:26–28  ·  view source on GitHub ↗
(x: number, y: number, width: number, height: number, thickness: number, color: Color)

Source from the content-addressed store, hash-verified

24}
25
26export function drawRectLines(x: number, y: number, width: number, height: number, thickness: number, color: Color): void {
27 bloom_draw_rect_lines(x, y, width, height, thickness, color.r, color.g, color.b, color.a);
28}
29
30export function drawCircle(centerX: number, centerY: number, radius: number, color: Color): void {
31 bloom_draw_circle(centerX, centerY, radius, color.r, color.g, color.b, color.a);

Callers 1

main.tsFile · 0.90

Calls 1

bloom_draw_rect_linesFunction · 0.50

Tested by

no test coverage detected