mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Change behavior of Z in svg commands
This commit is contained in:
parent
247f3ac2c4
commit
1e0c701733
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: None, 0),
|
"Z": (self.close_path, 0),
|
||||||
}
|
}
|
||||||
|
|
||||||
def get_original_path_string(self):
|
def get_original_path_string(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue