From d184c5fc9e715f1cf6217ad6efa5933a2ddb5c67 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Thu, 27 Sep 2018 17:37:01 -0700 Subject: [PATCH] use merge_config for SpecialThreeDScene configuration --- active_projects/quaternions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/active_projects/quaternions.py b/active_projects/quaternions.py index 6efae67a..8447337d 100644 --- a/active_projects/quaternions.py +++ b/active_projects/quaternions.py @@ -476,7 +476,8 @@ class SpecialThreeDScene(ThreeDScene): high_quality = True else: high_quality = False - config = get_three_d_scene_config(high_quality) + default_config = get_three_d_scene_config(high_quality) + config = merge_config([self.CONFIG, kwargs, default_config]) ThreeDScene.__init__(self, **config) def get_axes(self):