gdsdk 0.1.1

Gdsii file development kit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13

/// geometry coord, in Lib units
#[derive(Default, Debug)]
pub struct Points {
    pub x: f64,
    pub y: f64,
}

impl Points {
    pub fn new(x: f64, y: f64) -> Self {
        Points { x, y }
    }
}