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:
authorMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2019-09-20 22:35:45 +0300
committerMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2019-09-20 22:35:55 +0300
commitb58094246600c2c27ee5cf6a56d662c3977d6d4c (patch)
treeaf6b37b7b4621a8d3b70846ea86a71e373e2c0e9 /object_print3d_utils/__init__.py
parent0ca49e9352d55a7d7773a6e02fed42e5cc5a4dc8 (diff)
Print3D: Cleanup style
Format class names according to Blender code style guide.
Diffstat (limited to 'object_print3d_utils/__init__.py')
-rw-r--r--object_print3d_utils/__init__.py50
1 files changed, 25 insertions, 25 deletions
diff --git a/object_print3d_utils/__init__.py b/object_print3d_utils/__init__.py
index 151923da..09be0501 100644
--- a/object_print3d_utils/__init__.py
+++ b/object_print3d_utils/__init__.py
@@ -55,7 +55,7 @@ else:
)
-class Print3D_Scene_Props(PropertyGroup):
+class SceneProperties(PropertyGroup):
export_format: EnumProperty(
name="Format",
description="Format type to export to",
@@ -126,29 +126,29 @@ class Print3D_Scene_Props(PropertyGroup):
classes = (
- Print3D_Scene_Props,
-
- ui.VIEW3D_PT_Print3D_Object,
- ui.VIEW3D_PT_Print3D_Mesh,
-
- operators.MESH_OT_Print3D_Info_Volume,
- operators.MESH_OT_Print3D_Info_Area,
- operators.MESH_OT_Print3D_Check_Degenerate,
- operators.MESH_OT_Print3D_Check_Distorted,
- operators.MESH_OT_Print3D_Check_Solid,
- operators.MESH_OT_Print3D_Check_Intersections,
- operators.MESH_OT_Print3D_Check_Thick,
- operators.MESH_OT_Print3D_Check_Sharp,
- operators.MESH_OT_Print3D_Check_Overhang,
- operators.MESH_OT_Print3D_Check_All,
- operators.MESH_OT_Print3D_Clean_Isolated,
- operators.MESH_OT_Print3D_Clean_Distorted,
- # operators.MESH_OT_Print3D_Clean_Thin,
- operators.MESH_OT_Print3D_Clean_Non_Manifold,
- operators.MESH_OT_Print3D_Select_Report,
- operators.MESH_OT_Print3D_Scale_To_Volume,
- operators.MESH_OT_Print3D_Scale_To_Bounds,
- operators.MESH_OT_Print3D_Export,
+ SceneProperties,
+
+ ui.VIEW3D_PT_print3d_object,
+ ui.VIEW3D_PT_print3d_mesh,
+
+ operators.MESH_OT_print3d_info_volume,
+ operators.MESH_OT_print3d_info_area,
+ operators.MESH_OT_print3d_check_degenerate,
+ operators.MESH_OT_print3d_check_distorted,
+ operators.MESH_OT_print3d_check_solid,
+ operators.MESH_OT_print3d_check_intersections,
+ operators.MESH_OT_print3d_check_thick,
+ operators.MESH_OT_print3d_check_sharp,
+ operators.MESH_OT_print3d_check_overhang,
+ operators.MESH_OT_print3d_check_all,
+ operators.MESH_OT_print3d_clean_isolated,
+ operators.MESH_OT_print3d_clean_distorted,
+ # operators.MESH_OT_print3d_clean_thin,
+ operators.MESH_OT_print3d_clean_non_manifold,
+ operators.MESH_OT_print3d_select_report,
+ operators.MESH_OT_print3d_scale_to_volume,
+ operators.MESH_OT_print3d_scale_to_bounds,
+ operators.MESH_OT_print3d_export,
)
@@ -156,7 +156,7 @@ def register():
for cls in classes:
bpy.utils.register_class(cls)
- bpy.types.Scene.print_3d = PointerProperty(type=Print3D_Scene_Props)
+ bpy.types.Scene.print_3d = PointerProperty(type=SceneProperties)
def unregister():