From 69973b24f47578b383c7f3a102aec55aba1cd55f Mon Sep 17 00:00:00 2001 From: Alexander Bass Date: Wed, 5 Jun 2024 12:27:03 -0400 Subject: [PATCH] rename spiral.py to main.py --- spiral.py => main.py | 6 +++--- real_donut.py | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) rename spiral.py => main.py (96%) diff --git a/spiral.py b/main.py similarity index 96% rename from spiral.py rename to main.py index bde8c56..5495edd 100644 --- a/spiral.py +++ b/main.py @@ -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 diff --git a/real_donut.py b/real_donut.py index 65634c2..101de3a 100644 --- a/real_donut.py +++ b/real_donut.py @@ -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: