12 lines
258 B
Python
12 lines
258 B
Python
"""
|
|
Module for rasterizing polygons, with float-precision anti-aliasing on
|
|
a non-uniform rectangular grid.
|
|
|
|
See the documentation for float_raster.raster(...) for details.
|
|
"""
|
|
|
|
from .float_raster import *
|
|
|
|
__author__ = 'Jan Petykiewicz'
|
|
__version__ = '0.7'
|