Don't assign a fixed default depth to ThreeDAxes

This commit is contained in:
Grant Sanderson 2023-11-06 12:32:47 -05:00
parent 0d046a7eab
commit 2cdb85cae9

View file

@ -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
):