Cleanup imports and add file-wide comments

This commit is contained in:
Ian Jauslin 2022-09-23 21:21:38 -04:00
parent c09600cd10
commit 7a044a1619
4 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,5 @@
# check that a file is creatable/writable/editable
import os.path import os.path
# check that a file can be edited # check that a file can be edited

View File

@ -1,3 +1,5 @@
# define background lattices
from point import Point from point import Point
# parent class of all lattices # parent class of all lattices

View File

@ -1,3 +1,5 @@
# main drawing class
import sys import sys
import math import math
from kivy.uix.widget import Widget from kivy.uix.widget import Widget

View File

@ -1,3 +1,5 @@
# two-dimensional point structure
import math import math
# point in two dimensions # point in two dimensions