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

Function drawPlane

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

Source from the content-addressed store, hash-verified

240}
241
242export 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
246export function drawGrid(slices: number, spacing: number): void {
247 bloom_draw_grid(slices, spacing);

Callers 1

main.tsFile · 0.90

Calls 1

bloom_draw_planeFunction · 0.50

Tested by

no test coverage detected