chiark / gitweb /
Add option to save GCode file. Re-center the objects on the bed when you add a new...
[cura.git] / Cura / util / meshLoaders / stl.py
index 068154ece4c5f08b2d5efee8622b72168c4fa072..ab9c935400a2f13db3d58b326836a117f1a539f4 100644 (file)
@@ -35,7 +35,7 @@ def _loadBinary(m, f):
                data = struct.unpack("<ffffffffffffH", f.read(50))
                m._addFace(data[3], data[4], data[5], data[6], data[7], data[8], data[9], data[10], data[11])
 
-def loadSTLscene(filename):
+def loadScene(filename):
        obj = mesh.printableObject()
        m = obj._addMesh()