ux-dx 0.2.1

3D Graphics Primitives for Angular Rust
Documentation
1
2
3
4
5
6
7
8
9
use super::*;
pub struct Id;

impl Id {
    pub fn handle(id: u64, ops: Option<HandleOptions>) -> Handle {
        // TODO: should prevent overrride the ROOT_HANDLE
        Handle::global().nest(id, ops)
    }
}