mirror of
https://github.com/3b1b/manim.git
synced 2025-08-20 05:14:12 +00:00
Small bug fix
This commit is contained in:
parent
f23fd5444d
commit
6de931968e
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ class DashedLine(Line):
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def get_start(self):
|
def get_start(self):
|
||||||
if len(self) > 0:
|
if len(self.points) > 0:
|
||||||
return self[0].points[0]
|
return self[0].points[0]
|
||||||
else:
|
else:
|
||||||
return self.start
|
return self.start
|
||||||
|
|
Loading…
Add table
Reference in a new issue