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

mesh_select_by_type.py « mesh_select_tools « mesh_extra_tools - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b718d453753ff8ad21dc94e31ac7ef577fbdf377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# ##### BEGIN GPL LICENSE BLOCK #####
#
#  This program is free software; you can redistribute it and/or
#  modify it under the terms of the GNU General Public License
#  as published by the Free Software Foundation; either version 2
#  of the License, or (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software Foundation,
#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####

# By CoDEmanX

import bpy
from bpy.types import Operator
from bpy.props import (
        EnumProperty,
        BoolProperty,
        )


class DATA_OP_facetype_select(Operator):
    bl_idname = "data.facetype_select"
    bl_label = "Select by face type"
    bl_description = "Select all faces of a certain type"
    bl_options = {'REGISTER', 'UNDO'}

    face_type = EnumProperty(
                    name="Select faces:",
                    items=(("3", "Triangles", "Faces made up of 3 vertices"),
                           ("4", "Quads", "Faces made up of 4 vertices"),
                           ("5", "Ngons", "Faces made up of 5 and more vertices")),
                    default="5"
                    )
    extend = BoolProperty(
                    name="Extend",
                    description="Extend Selection",
                    default=False
                    )

    @classmethod
    def poll(cls, context):
        return context.active_object is not None and context.active_object.type == 'MESH'

    def execute(self, context):
        try:
            bpy.ops.object.mode_set(mode='EDIT')

            if not self.extend:
                bpy.ops.mesh.select_all(action='DESELECT')

            context.tool_settings.mesh_select_mode = (False, False, True)

            if self.face_type == "3":
                bpy.ops.mesh.select_face_by_sides(number=3, type='EQUAL')
            elif self.face_type == "4":
                bpy.ops.mesh.select_face_by_sides(number=4, type='EQUAL')
            else:
                bpy.ops.mesh.select_face_by_sides(number=4, type='GREATER')

            return {'FINISHED'}

        except Exception as e:
            print("\n[Select by face type]\nERROR:\n")

            import traceback
            traceback.printexc()

            self.report('WARNING', "Face selection could not be performed (Check the console for more info)")

            return {'CANCELLED'}