2019-09-30 23:14:13 -07:00
|
|
|
"""
|
|
|
|
Module for rasterizing polygons, with float-precision anti-aliasing on
|
|
|
|
a non-uniform rectangular grid.
|
|
|
|
|
|
|
|
See the documentation for float_raster.raster(...) for details.
|
|
|
|
"""
|
|
|
|
|
2024-07-29 00:37:20 -07:00
|
|
|
from .float_raster import (
|
|
|
|
raster as raster,
|
|
|
|
find_intersections as find_intersections,
|
|
|
|
create_vertices as create_vertices,
|
|
|
|
clip_vertices_to_window as clip_vertices_to_window,
|
|
|
|
get_raster_parts as get_raster_parts,
|
|
|
|
)
|
|
|
|
|
2019-09-30 23:14:13 -07:00
|
|
|
|
|
|
|
__author__ = 'Jan Petykiewicz'
|
2022-08-18 23:10:39 -07:00
|
|
|
__version__ = '0.7'
|