blob: 98e2b396a9a72fdcbb4bd05872b245065c564575 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
//! 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;
|