shambler 0.2.0

A rusty, hulking, lighting-tossing geometry processor.
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Debug, Default, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct LineId(pub usize);

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