shambler 0.2.0

A rusty, hulking, lighting-tossing geometry processor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::fmt::Display;

#[derive(Debug, Default, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct BrushId(pub usize);

impl Display for BrushId {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        Display::fmt(&self.0, f)
    }
}