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

Function bloom_draw_sphere

native/windows/src/lib.rs:930–932  ·  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

928}
929#[no_mangle]
930pub extern "C" fn bloom_draw_sphere(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) {
931 engine().renderer.draw_sphere(x, y, z, radius, r, g, b, a);
932}
933#[no_mangle]
934pub extern "C" fn bloom_draw_sphere_wires(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) {
935 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