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

Function drawCubeWires

src/models/index.ts:226–228  ·  view source on GitHub ↗
(position: Vec3, width: number, height: number, depth: number, color: Color)

Source from the content-addressed store, hash-verified

224}
225
226export function drawCubeWires(position: Vec3, width: number, height: number, depth: number, color: Color): void {
227 bloom_draw_cube_wires(position.x, position.y, position.z, width, height, depth, color.r, color.g, color.b, color.a);
228}
229
230export 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);

Callers 1

main.tsFile · 0.90

Calls 1

bloom_draw_cube_wiresFunction · 0.50

Tested by

no test coverage detected