From 57d4732ef12f88744c8abf81e3149bb9c9affee1 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 31 Jul 2024 15:23:59 +0200 Subject: [PATCH] Remove unused lines --- manimlib/mobject/coordinate_systems.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/manimlib/mobject/coordinate_systems.py b/manimlib/mobject/coordinate_systems.py index fcd11612..0502b19e 100644 --- a/manimlib/mobject/coordinate_systems.py +++ b/manimlib/mobject/coordinate_systems.py @@ -603,9 +603,6 @@ class ThreeDAxes(Axes): **kwargs ) -> ParametricSurface: surface = ParametricSurface(func, color=color, opacity=opacity, **kwargs) - xu = self.x_axis.get_unit_size() - yu = self.y_axis.get_unit_size() - zu = self.z_axis.get_unit_size() axes = [self.x_axis, self.y_axis, self.z_axis] for dim, axis in zip(range(3), axes): surface.stretch(axis.get_unit_size(), dim, about_point=ORIGIN)