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

Function bloom_draw_cylinder

native/android/src/lib.rs:701–703  ·  view source on GitHub ↗
(x: f64, y: f64, z: f64, rt: f64, rb: f64, h: f64, r: f64, g: f64, b: f64, a: f64)

Source from the content-addressed store, hash-verified

699}
700#[no_mangle]
701pub extern "C" fn bloom_draw_cylinder(x: f64, y: f64, z: f64, rt: f64, rb: f64, h: f64, r: f64, g: f64, b: f64, a: f64) {
702 engine().renderer.draw_cylinder(x, y, z, rt, rb, h, r, g, b, a);
703}
704#[no_mangle]
705pub extern "C" fn bloom_draw_plane(x: f64, y: f64, z: f64, w: f64, d: f64, r: f64, g: f64, b: f64, a: f64) {
706 engine().renderer.draw_plane(x, y, z, w, d, r, g, b, a);

Callers

nothing calls this directly

Calls 2

draw_cylinderMethod · 0.80
engineFunction · 0.70

Tested by

no test coverage detected