gdsr 0.0.1-alpha.3

A GDSII reader and writer for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod element;
pub mod gds_box;
pub mod node;
pub mod path;
pub mod polygon;
pub mod reference;
pub mod text;

pub use element::Element;
pub use gds_box::GdsBox;
pub use node::Node;
pub use path::{Path, PathType};
pub use polygon::Polygon;
pub use reference::{Instance, Reference};
pub use text::Text;