2016-03-15 19:12:39 -07:00
|
|
|
# Masque README
|
|
|
|
|
|
|
|
Masque is a Python module for designing lithography masks.
|
|
|
|
|
|
|
|
The general idea is to implement something resembling the GDSII file-format, but
|
|
|
|
with some vectorized element types (eg. circles, not just polygons), better support for
|
|
|
|
E-beam doses, and the ability to output to multiple formats.
|
|
|
|
|
2019-04-07 17:58:11 -07:00
|
|
|
- [Source repository](https://mpxd.net/code/jan/masque)
|
|
|
|
- [PyPi](https://pypi.org/project/masque)
|
|
|
|
|
|
|
|
|
2016-03-15 19:12:39 -07:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
Requirements:
|
2017-10-15 13:48:55 -07:00
|
|
|
* python >= 3.5 (written and tested with 3.6)
|
2016-03-15 19:12:39 -07:00
|
|
|
* numpy
|
2019-09-30 23:50:40 -07:00
|
|
|
* matplotlib (optional, used for `visualization` functions and `text`)
|
|
|
|
* python-gdsii (optional, used for `gdsii` i/o)
|
|
|
|
* svgwrite (optional, used for `svg` output)
|
|
|
|
* freetype (optional, used for `text`)
|
2016-03-15 19:12:39 -07:00
|
|
|
|
|
|
|
|
2019-04-07 17:53:16 -07:00
|
|
|
Install with pip:
|
2016-03-29 13:56:36 -07:00
|
|
|
```bash
|
2019-09-30 23:50:40 -07:00
|
|
|
pip3 install 'masque[visualization,gdsii,svg,text]'
|
2019-04-07 17:53:16 -07:00
|
|
|
```
|
|
|
|
|
|
|
|
Alternatively, install from git
|
|
|
|
```bash
|
|
|
|
pip3 install git+https://mpxd.net/code/jan/masque.git@release
|
2016-03-29 13:56:36 -07:00
|
|
|
```
|
2017-04-19 18:56:14 -07:00
|
|
|
|
|
|
|
## TODO
|
2019-04-07 17:58:11 -07:00
|
|
|
|
2017-04-19 18:56:14 -07:00
|
|
|
* Polygon de-embedding
|
|
|
|
* Construct from bitmap
|
2017-10-15 13:48:55 -07:00
|
|
|
* Boolean operations on polygons (using pyclipper)
|
|
|
|
* Output to OASIS (using fatamorgana)
|