From 47af3159f330b35b9b8f38aecf407568866dd36b Mon Sep 17 00:00:00 2001 From: Andrew Somerville Date: Thu, 28 May 2020 18:17:50 -0400 Subject: [PATCH] fix: eliminate exception on linux by changing import of numpy2sdl to come from stl_tools --- stl_tools/image2stl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stl_tools/image2stl.py b/stl_tools/image2stl.py index 7fddcc2..fa8e42c 100644 --- a/stl_tools/image2stl.py +++ b/stl_tools/image2stl.py @@ -1,7 +1,7 @@ from argparse import ArgumentParser import numpy as np -from numpy2stl import numpy2stl +from stl_tools.numpy2stl import numpy2stl from pylab import imread from scipy.ndimage import gaussian_filter