ezel 0.0.1

A good plotting library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[derive(Default, Clone)]
pub struct Mapping {
    x: Option<String>,
    y: Option<String>,
    z: Option<String>,
    r: Option<String>,
}

impl Mapping {
    pub fn merge(self, other: Mapping) -> Self {
        Self {
            x: other.x.or(self.x),
            y: other.y.or(self.y),
            z: other.z.or(self.z),
            r: other.r.or(self.r),
        }
    }
}