__init__.py

848 B · python · 30 lines

1VOID = 02FILL = 13GRID = 24UP = 35LEFT = 46RIGHT = 578from .models import Cell6d9from .geometry import (10    Orientation, is_cube, is_hex, get_orientation, check_orientation,11    blank, pad, iso, pro, cut,12    tessellate, get_tile_mask, tile, tile_crop,13    get_radial_mask, radial, radial_crop,14)15from .renderer import (16    triangle_north, triangle_south, triangle_east, triangle_west,17    get_triangles, draw, svg, rect_draw, rect_svg,18)19from .serializer import to_dict_6d, from_dict_6d20from .designs import (21    carpet_iso, carpet_pro, carpet_cut,22    net_iso, net_pro, net_cut,23    tree_iso, tree_pro, tree_cut,24    void_iso, void_pro, void_cut,25    xtree_iso, xtree_pro, xtree_cut,26    ytree_iso, ytree_pro, ytree_cut,27    ztree_iso, ztree_pro, ztree_cut,28    level_set_iso, level_set_pro, level_set_cut,29    anti_iso, anti_pro, anti_cut,30)