gdsr 0.0.1-alpha.3

A GDSII reader and writer for Rust
Documentation
mod cell;
mod config;
mod elements;
mod error;
mod geometry;
mod grid;
mod library;
mod point;
#[cfg(test)]
mod property_tests;
mod stats;
mod traits;
mod transformation;
mod types;
mod units;
mod utils;

pub use cell::Cell;
pub use elements::text::{HorizontalPresentation, VerticalPresentation};
pub use elements::{Element, GdsBox, Instance, Node, Path, PathType, Polygon, Reference, Text};
pub use error::GdsError;
pub use grid::Grid;
pub use library::{DanglingCellReference, Library};
pub use point::Point;
pub use stats::{CellStats, LibraryStats};
pub use traits::{Dimensions, Movable, ToGds, Transformable};
pub use transformation::{Reflection, Rotation, Scale, Transformation, Translation};
pub use types::{AngleInRadians, DataType, Layer, LayerMapping};
pub use units::{DEFAULT_FLOAT_UNITS, DEFAULT_INTEGER_UNITS, FloatUnit, IntegerUnit, Unit};
pub use utils::svg::cell_to_svg;