From 2cdb85cae90b41e5fe43abc2e63a2d8d5db2ec25 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 6 Nov 2023 12:32:47 -0500 Subject: [PATCH] Don't assign a fixed default depth to ThreeDAxes --- manimlib/mobject/coordinate_systems.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/mobject/coordinate_systems.py b/manimlib/mobject/coordinate_systems.py index 1acde16f..fcd11612 100644 --- a/manimlib/mobject/coordinate_systems.py +++ b/manimlib/mobject/coordinate_systems.py @@ -529,7 +529,7 @@ class ThreeDAxes(Axes): z_range: RangeSpecifier = (-4.0, 4.0, 1.0), z_axis_config: dict = dict(), z_normal: Vect3 = DOWN, - depth: float = 6.0, + depth: float | None = None, flat_stroke: bool = False, **kwargs ):