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.
17 lines
352 B
17 lines
352 B
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 |
|
LOADED = 5 |
|
CHOOSE_CENTROIDS = 6 # TODO: Can replace with choose weighted or something |
|
GROUP = 7
|
|
|