mirror of
https://github.com/3b1b/manim.git
synced 2025-09-19 04:41:56 +00:00
fix a small bug
This commit is contained in:
parent
05b3c9852e
commit
8205edcc4c
1 changed files with 1 additions and 0 deletions
|
@ -569,6 +569,7 @@ class _PathStringParser:
|
||||||
def __init__(self, arguments, rules):
|
def __init__(self, arguments, rules):
|
||||||
self.args = []
|
self.args = []
|
||||||
arguments = bytearray(arguments, "ascii")
|
arguments = bytearray(arguments, "ascii")
|
||||||
|
self._strip_array(arguments)
|
||||||
while arguments:
|
while arguments:
|
||||||
for rule in rules:
|
for rule in rules:
|
||||||
self._rule_to_function_map[rule](arguments)
|
self._rule_to_function_map[rule](arguments)
|
||||||
|
|
Loading…
Add table
Reference in a new issue