Metadata-Version: 2.1
Name: float-raster
Version: 0.5
Summary: High-precision anti-aliasing polygon rasterizer
Home-page: https://mpxd.net/code/jan/float_raster
Author: Jan Petykiewicz
Author-email: anewusername@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Manufacturing
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: scipy

# float_raster README

float_raster is a Python module for accurately drawing polygons onto non-uniform rectangular grids

float_raster calculates pixel values with float64 precision and is capable of drawing on grids
with variable pixel widths and heights.


- [Source repository](https://mpxd.net/code/jan/float_raster)
- [PyPi](https://pypi.org/project/float_raster)


## Installation

Requirements:
* python 3 (written and tested with 3.5)
* numpy

Install with pip:
```bash
pip3 install float_raster
```

Alternatively, install via git
```bash
pip3 install git+https://mpxd.net/code/jan/float_raster.git@release
```


