Applied digest_config to almost all __init__ functions

This commit is contained in:
Grant Sanderson
2015-09-28 16:25:18 -07:00
parent 8f2a8f032e
commit 0d60cf6207
14 changed files with 436 additions and 397 deletions

View File

@ -2,7 +2,7 @@ import os
import numpy as np
GENERALLY_BUFF_POINTS = True
GENERALLY_BUFFER_POINTS = True
PRODUCTION_QUALITY_DISPLAY_CONFIG = {
"height" : 1440,
@ -27,14 +27,16 @@ SPACE_HEIGHT = 4.0
SPACE_WIDTH = SPACE_HEIGHT * DEFAULT_WIDTH / DEFAULT_HEIGHT
DEFAULT_MOBJECT_TO_EDGE_BUFFER = 0.5
DEFAULT_MOBJECT_TO_MOBJECT_BUFFER = 0.2
#All in seconds
DEFAULT_FRAME_DURATION = 0.04
DEFAULT_ANIMATION_RUN_TIME = 1.0
DEFAULT_TRANSFORM_RUN_TIME = 1.0
DEFAULT_DITHER_TIME = 1.0
DEFAULT_NUM_STARS = 1000
ORIGIN = np.array(( 0, 0, 0))
UP = np.array(( 0, 1, 0))