Renamed DEFAULT_HEIGHT to DEFAULT_PIXEL_HEIGHT

This commit is contained in:
Grant Sanderson
2018-03-30 11:36:06 -07:00
parent 213c615870
commit 3ec4d89e10
2 changed files with 5 additions and 5 deletions

View File

@ -16,7 +16,7 @@ import time
class Camera(object):
CONFIG = {
"background_image" : None,
"pixel_shape" : (DEFAULT_HEIGHT, DEFAULT_WIDTH),
"pixel_shape" : (DEFAULT_PIXEL_HEIGHT, DEFAULT_PIXEL_WIDTH),
# Note: frame_shape will be resized to match pixel_shape
"frame_shape" : (FRAME_HEIGHT, FRAME_WIDTH),
"space_center" : ORIGIN,