Merge pull request #20 from mirefek/master

3 little fixes + SVG matrix transform support
This commit is contained in:
Grant Sanderson
2017-04-14 23:32:46 -07:00
committed by GitHub
3 changed files with 36 additions and 13 deletions

View File

@ -220,7 +220,7 @@ class VMobject(Mobject):
def get_subpath_mobjects(self):
return filter(
lambda m : m.is_subpath,
lambda m : hasattr(m, 'is_subpath') and m.is_subpath,
self.submobjects
)