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

Function bloom_draw_sphere

native/linux/src/lib.rs:1077–1079  ·  view source on GitHub ↗
(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64)

Source from the content-addressed store, hash-verified

1075}
1076#[no_mangle]
1077pub extern "C" fn bloom_draw_sphere(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) {
1078 engine().renderer.draw_sphere(x, y, z, radius, r, g, b, a);
1079}
1080#[no_mangle]
1081pub extern "C" fn bloom_draw_sphere_wires(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) {
1082 engine().renderer.draw_sphere_wires(x, y, z, radius, r, g, b, a);

Callers

nothing calls this directly

Calls 2

draw_sphereMethod · 0.80
engineFunction · 0.70

Tested by

no test coverage detected