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

Function bloom_draw_circle

native/web/src/lib.rs:445–447  ·  view source on GitHub ↗
(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64)

Source from the content-addressed store, hash-verified

443
444#[wasm_bindgen]
445pub fn bloom_draw_circle(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) {
446 engine().renderer.draw_circle(cx, cy, radius, r, g, b, a);
447}
448
449#[wasm_bindgen]
450pub fn bloom_draw_circle_lines(cx: f64, cy: f64, radius: f64, r: f64, g: f64, b: f64, a: f64) {

Callers

nothing calls this directly

Calls 2

draw_circleMethod · 0.80
engineFunction · 0.70

Tested by

no test coverage detected