v_36cell = [
(1, 0, 0, 0),
(0, 0, 1, 0),
(0, -1, 0, 0),
(0, 0, 0, -1),
(1, 1, 0, 0),
(-1, -1, 0, 0),
(0, 1, 0, 0),
(-1, 0, 0, 0),
(0, 0, 1, 1),
(0, 0, 0, 1),
(0, 0, -1, -1),
(0, 0, -1, 0) ]
from tope import Tope
from tope.net import *
from tope.orth import *
from tests import normalize_polygon from typing import *
import json, os, numpy as np
rng = np.random.default_rng()
with open("polys.json") as fd: polys = json.load(fd)
logger.remove()
import matplotlib.pyplot as plt from matplotlib.collections import LineCollection # container for line segments from matplotlib.text import Text, Annotation import matplotlib.cm as cm # colour mappings import random