Skip to content

Commit

Permalink
Remove num_axis_pieces arg from ThreeDAxes
Browse files Browse the repository at this point in the history
  • Loading branch information
3b1b committed Feb 9, 2023
1 parent 41f0239 commit 0ce9729
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions manimlib/mobject/coordinate_systems.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,6 @@ def __init__(
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)
Expand All @@ -533,8 +532,6 @@ def __init__(
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]
Expand Down

0 comments on commit 0ce9729

Please sign in to comment.