11 lines
271 B
Python
11 lines
271 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 .VERSION import __version__
|
|
from .float_raster import *
|
|
|
|
__author__ = 'Jan Petykiewicz'
|