rename spiral.py to main.py

This commit is contained in:
Alexander Bass 2024-06-05 12:27:03 -04:00
parent fd7b0ec647
commit 69973b24f4
2 changed files with 3 additions and 4 deletions

View file

@ -1,12 +1,12 @@
# Alexander Bass
# Created 4/10/24
# Last Edited 4/13/24
# Last Edited 6/5/24
import time
from math import pi, cos, sin, sqrt # noqa: F401
from math import sin
from point import Point, Rotator
from grass_donut import DonutEntity
from real_donut import RealDonutEntity
from entity import Entity, PointBlobEntity
from entity import PointBlobEntity
from util import to_rad
WIDTH = 150

View file

@ -44,7 +44,6 @@ class RealDonutEntity(PointBlobEntity):
tf.build()
for p in self.points:
p.rotate(tf)
# pass
def shift(self, x, y, z):
for p in self.points: