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

Function bloom_draw_sphere

native/android/src/lib.rs:693–695  ·  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

691}
692#[no_mangle]
693pub extern "C" fn bloom_draw_sphere(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) {
694 engine().renderer.draw_sphere(x, y, z, radius, r, g, b, a);
695}
696#[no_mangle]
697pub extern "C" fn bloom_draw_sphere_wires(x: f64, y: f64, z: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) {
698 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