mirror of
https://github.com/3b1b/manim.git
synced 2025-09-19 04:41:56 +00:00
use merge_config for SpecialThreeDScene configuration
This commit is contained in:
parent
ce05b01598
commit
d184c5fc9e
1 changed files with 2 additions and 1 deletions
|
@ -476,7 +476,8 @@ class SpecialThreeDScene(ThreeDScene):
|
||||||
high_quality = True
|
high_quality = True
|
||||||
else:
|
else:
|
||||||
high_quality = False
|
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)
|
ThreeDScene.__init__(self, **config)
|
||||||
|
|
||||||
def get_axes(self):
|
def get_axes(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue