A computational geometry learning and experimentation tool.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from enum import Enum |
|
|
|
|
|
class Mode(Enum): |
|
""" |
|
Class to make it easier to figure out what mode |
|
we are operating in when the OpenGL window is |
|
clicked. |
|
""" |
|
OFF = 0 |
|
ADD = 1 |
|
EDIT = 2 |
|
MOVE = 3 |
|
DELETE = 4
|
|
|