mirror of
https://github.com/3b1b/manim.git
synced 2025-08-01 17:29:06 +08:00
Go back to non-flat-stroke as the default
This commit is contained in:
@ -530,7 +530,6 @@ class ThreeDAxes(Axes):
|
|||||||
z_axis_config: dict = dict(),
|
z_axis_config: dict = dict(),
|
||||||
z_normal: Vect3 = DOWN,
|
z_normal: Vect3 = DOWN,
|
||||||
depth: float | None = None,
|
depth: float | None = None,
|
||||||
flat_stroke: bool = False,
|
|
||||||
**kwargs
|
**kwargs
|
||||||
):
|
):
|
||||||
Axes.__init__(self, x_range, y_range, **kwargs)
|
Axes.__init__(self, x_range, y_range, **kwargs)
|
||||||
@ -554,7 +553,6 @@ class ThreeDAxes(Axes):
|
|||||||
self.z_axis.shift(self.x_axis.n2p(0))
|
self.z_axis.shift(self.x_axis.n2p(0))
|
||||||
self.axes.add(self.z_axis)
|
self.axes.add(self.z_axis)
|
||||||
self.add(self.z_axis)
|
self.add(self.z_axis)
|
||||||
self.set_flat_stroke(flat_stroke)
|
|
||||||
|
|
||||||
def get_all_ranges(self) -> list[Sequence[float]]:
|
def get_all_ranges(self) -> list[Sequence[float]]:
|
||||||
return [self.x_range, self.y_range, self.z_range]
|
return [self.x_range, self.y_range, self.z_range]
|
||||||
|
@ -38,7 +38,6 @@ class SurfaceMesh(VGroup):
|
|||||||
normal_nudge: float = 1e-2,
|
normal_nudge: float = 1e-2,
|
||||||
depth_test: bool = True,
|
depth_test: bool = True,
|
||||||
joint_type: str = 'no_joint',
|
joint_type: str = 'no_joint',
|
||||||
flat_stroke: bool = False,
|
|
||||||
**kwargs
|
**kwargs
|
||||||
):
|
):
|
||||||
self.uv_surface = uv_surface
|
self.uv_surface = uv_surface
|
||||||
@ -50,7 +49,6 @@ class SurfaceMesh(VGroup):
|
|||||||
stroke_width=stroke_width,
|
stroke_width=stroke_width,
|
||||||
depth_test=depth_test,
|
depth_test=depth_test,
|
||||||
joint_type=joint_type,
|
joint_type=joint_type,
|
||||||
flat_stroke=flat_stroke,
|
|
||||||
**kwargs
|
**kwargs
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ class VMobject(Mobject):
|
|||||||
long_lines: bool = False,
|
long_lines: bool = False,
|
||||||
# Could also be "no_joint", "bevel", "miter"
|
# Could also be "no_joint", "bevel", "miter"
|
||||||
joint_type: str = "auto",
|
joint_type: str = "auto",
|
||||||
flat_stroke: bool = True,
|
flat_stroke: bool = False,
|
||||||
use_simple_quadratic_approx: bool = False,
|
use_simple_quadratic_approx: bool = False,
|
||||||
# Measured in pixel widths
|
# Measured in pixel widths
|
||||||
anti_alias_width: float = 1.5,
|
anti_alias_width: float = 1.5,
|
||||||
|
Reference in New Issue
Block a user