From bf84b1933bb0976b41be4d44a2f4561eeb55f42f Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Wed, 11 Jan 2023 20:31:30 -0800 Subject: [PATCH] Remove unnecessary flat stroke specification --- manimlib/mobject/three_dimensions.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/manimlib/mobject/three_dimensions.py b/manimlib/mobject/three_dimensions.py index 6f82830f..dc49f7ab 100644 --- a/manimlib/mobject/three_dimensions.py +++ b/manimlib/mobject/three_dimensions.py @@ -36,7 +36,6 @@ class SurfaceMesh(VGroup): stroke_width: float = 1, stroke_color: ManimColor = GREY_A, normal_nudge: float = 1e-2, - flat_stroke: bool = False, depth_test: bool = True, joint_type: str = 'no_joint', **kwargs @@ -44,7 +43,6 @@ class SurfaceMesh(VGroup): self.uv_surface = uv_surface self.resolution = resolution self.normal_nudge = normal_nudge - self.flat_stroke = flat_stroke super().__init__( stroke_color=stroke_color,