From 89d0611cfc4fa3bff7449d949ccfd4690f778fce Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Mon, 29 Jul 2024 00:37:20 -0700 Subject: [PATCH] repeat names for re-export --- float_raster/__init__.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/float_raster/__init__.py b/float_raster/__init__.py index 5324115..b3bf735 100644 --- a/float_raster/__init__.py +++ b/float_raster/__init__.py @@ -5,7 +5,14 @@ Module for rasterizing polygons, with float-precision anti-aliasing on See the documentation for float_raster.raster(...) for details. """ -from .float_raster import * +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, + ) + __author__ = 'Jan Petykiewicz' __version__ = '0.7'