This commit is contained in:
Michael Fogleman 2018-02-25 13:52:00 -05:00
parent 7e53657a2d
commit a0336eac8b
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class Drawing(object):
@property
def length(self):
if self._length is None:
length = self._down_length
length = self.down_length
for p0, p1 in zip(self.paths, self.paths[1:]):
x0, y0 = p0[-1]
x1, y1 = p1[0]