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

mesh.py « op « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e57bc440d10a780a8310c33a8a8e0245a4b7e9f (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
# ##### 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., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#
# ##### END GPL LICENSE BLOCK #####

import bpy

def main(context):
    ob = context.active_object
    bpy.ops.mesh.selection_type(type='FACE')
    is_editmode = (ob.mode=='EDIT')
    if is_editmode:
        bpy.ops.object.mode_set(mode='OBJECT', toggle=False)

    mesh = ob.data

    face_list = [face for face in mesh.faces]
    face_edge_keys = [face.edge_keys for face in face_list]

    edge_face_count = mesh.edge_face_count_dict

    def test_interior(index):
        for key in face_edge_keys[index]:
            if edge_face_count[key] < 3:
                return False
        return True

    for index, face in enumerate(face_list):
        if(test_interior(index)):
            face.selected = True
        else:
            face.selected = False

    if is_editmode:
        bpy.ops.object.mode_set(mode='EDIT', toggle=False)

class MeshSelectInteriorFaces(bpy.types.Operator):
    '''Select faces where all edges have more then 2 face users.'''

    bl_idname = "mesh.faces_select_interior"
    bl_label = "Select Interior Faces"
    bl_register = True
    bl_undo = True

    def poll(self, context):
        ob = context.active_object
        return (ob and ob.type == 'MESH')

    def execute(self, context):
        main(context)
        return ('FINISHED',)


# Register the operator
bpy.ops.add(MeshSelectInteriorFaces)

if __name__ == "__main__":
    bpy.ops.mesh.faces_select_interior()