diff --git a/blmath/__init__.py b/blmath/__init__.py index cd7ca49..a6221b3 100644 --- a/blmath/__init__.py +++ b/blmath/__init__.py @@ -1 +1 @@ -__version__ = '1.0.1' +__version__ = '1.0.2' diff --git a/blmath/geometry/primitives/polyline.py b/blmath/geometry/primitives/polyline.py index 6c6fd1e..bf2be22 100644 --- a/blmath/geometry/primitives/polyline.py +++ b/blmath/geometry/primitives/polyline.py @@ -43,7 +43,7 @@ def as_lines(self): Return a Lines instance with our vertices and edges. ''' - from lace.lines import Lines + from bodylabs.mesh.lines import Lines return Lines(v=self.v, e=self.e) def to_dict(self, decimals=3):