blob: 98e2b396a9a72fdcbb4bd05872b245065c564575 (
plain) (
tree)
|
|
//! Draw custom primitives.
use crate::core::{Rectangle, Size};
use crate::graphics::Transformation;
use crate::primitive;
use std::any::{Any, TypeId};
use std::collections::HashMap;
use std::fmt::Debug;
|