mirror of
https://github.com/3b1b/manim.git
synced 2025-11-14 01:17:47 +00:00
Remove num_axis_pieces arg from ThreeDAxes
This commit is contained in:
parent
41f0239e9d
commit
0ce972991b
1 changed files with 0 additions and 3 deletions
|
|
@ -508,7 +508,6 @@ class ThreeDAxes(Axes):
|
|||
z_axis_config: dict = dict(),
|
||||
z_normal: Vect3 = DOWN,
|
||||
depth: float = 6.0,
|
||||
num_axis_pieces: int = 20,
|
||||
**kwargs
|
||||
):
|
||||
Axes.__init__(self, x_range, y_range, **kwargs)
|
||||
|
|
@ -533,8 +532,6 @@ class ThreeDAxes(Axes):
|
|||
self.axes.add(self.z_axis)
|
||||
self.add(self.z_axis)
|
||||
|
||||
for axis in self.axes:
|
||||
axis.insert_n_curves(num_axis_pieces - 1)
|
||||
|
||||
def get_all_ranges(self) -> list[Sequence[float]]:
|
||||
return [self.x_range, self.y_range, self.z_range]
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue