DEFAULT_CONFIG -> CONFIG

This commit is contained in:
Grant Sanderson
2016-02-27 16:32:53 -08:00
parent 8376ac431e
commit a06848a219
24 changed files with 87 additions and 87 deletions

View File

@ -5,7 +5,7 @@ from mobject import Mobject, Mobject1D, Mobject
from helpers import *
class FunctionGraph(Mobject1D):
DEFAULT_CONFIG = {
CONFIG = {
"color" : BLUE,
"x_min" : -10,
"x_max" : 10,
@ -27,7 +27,7 @@ class FunctionGraph(Mobject1D):
class ParametricFunction(Mobject1D):
DEFAULT_CONFIG = {
CONFIG = {
"start" : 0,
"end" : 1,
}