mirror of
https://github.com/3b1b/manim.git
synced 2025-08-19 21:08:53 +00:00
Change behavior of Z command in svgs
This commit is contained in:
parent
050ed718e5
commit
247f3ac2c4
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,7 @@ class VMobjectFromSVGPathstring(VMobject):
|
||||||
"Q": (self.add_quadratic_bezier_curve_to, 2),
|
"Q": (self.add_quadratic_bezier_curve_to, 2),
|
||||||
"T": (self.add_smooth_curve_to, 1),
|
"T": (self.add_smooth_curve_to, 1),
|
||||||
"A": (self.add_quadratic_bezier_curve_to, 2), # TODO
|
"A": (self.add_quadratic_bezier_curve_to, 2), # TODO
|
||||||
"Z": (lambda: self.add_line_to(self.points[0]), 0),
|
"Z": (lambda: None, 0),
|
||||||
}
|
}
|
||||||
|
|
||||||
def get_original_path_string(self):
|
def get_original_path_string(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue