mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Remove unnecessary flat stroke specification
This commit is contained in:
parent
5a56a2a5ec
commit
bf84b1933b
1 changed files with 0 additions and 2 deletions
|
@ -36,7 +36,6 @@ class SurfaceMesh(VGroup):
|
||||||
stroke_width: float = 1,
|
stroke_width: float = 1,
|
||||||
stroke_color: ManimColor = GREY_A,
|
stroke_color: ManimColor = GREY_A,
|
||||||
normal_nudge: float = 1e-2,
|
normal_nudge: float = 1e-2,
|
||||||
flat_stroke: bool = False,
|
|
||||||
depth_test: bool = True,
|
depth_test: bool = True,
|
||||||
joint_type: str = 'no_joint',
|
joint_type: str = 'no_joint',
|
||||||
**kwargs
|
**kwargs
|
||||||
|
@ -44,7 +43,6 @@ class SurfaceMesh(VGroup):
|
||||||
self.uv_surface = uv_surface
|
self.uv_surface = uv_surface
|
||||||
self.resolution = resolution
|
self.resolution = resolution
|
||||||
self.normal_nudge = normal_nudge
|
self.normal_nudge = normal_nudge
|
||||||
self.flat_stroke = flat_stroke
|
|
||||||
|
|
||||||
super().__init__(
|
super().__init__(
|
||||||
stroke_color=stroke_color,
|
stroke_color=stroke_color,
|
||||||
|
|
Loading…
Add table
Reference in a new issue