Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-01-14 16:01:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-01-14 16:01:04 +0300
commit7a56d60eebbbb18ac8912a9869c342a5cbba7b18 (patch)
treef86935cc9af6b69a560e6560e0eb4fc165806c9c /io_mesh_stl
parentbfbabc0592b820ec948fa355805ed78a882f4943 (diff)
rename IOHelperOrientation -> OrientationHelper
Diffstat (limited to 'io_mesh_stl')
-rw-r--r--io_mesh_stl/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index 884fc11d..c3d628d5 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -65,13 +65,13 @@ from bpy.props import (StringProperty,
)
from bpy_extras.io_utils import (ImportHelper,
ExportHelper,
- IOHelperOrientation,
+ OrientationHelper,
axis_conversion,
)
from bpy.types import Operator, OperatorFileListElement
-class ImportSTL(Operator, ImportHelper, IOHelperOrientation):
+class ImportSTL(Operator, ImportHelper, OrientationHelper):
"""Load STL triangle mesh data"""
bl_idname = "import_mesh.stl"
bl_label = "Import STL"
@@ -139,7 +139,7 @@ class ImportSTL(Operator, ImportHelper, IOHelperOrientation):
return {'FINISHED'}
-class ExportSTL(Operator, ExportHelper, IOHelperOrientation):
+class ExportSTL(Operator, ExportHelper, OrientationHelper):
"""Save STL triangle mesh data from the active object"""
bl_idname = "export_mesh.stl"
bl_label = "Export STL"