egui-ark 0.37.0

Bindings between the egui GUI library and ark
Documentation
1
2
3
4
5
6
7
8
9
10
//! Bindings between egui and Ark module Applet

// crate-specific exceptions:
#![allow(clippy::trivially_copy_pass_by_ref)] // for &ark::applet::Applet
#![allow(unsafe_code)] // SAFETY: transmuting triangle indices (avoids a copy)

#[cfg(target_arch = "wasm32")]
mod implementation;
#[cfg(target_arch = "wasm32")]
pub use implementation::*;