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:
authormeta-androcto <meta.androcto1@gmail.com>2017-03-30 09:31:07 +0300
committermeta-androcto <meta.androcto1@gmail.com>2017-03-30 09:31:07 +0300
commitba89ec341ccea23d480d3c23c51ebaaf2bb88ee5 (patch)
treee32332cba3cb599b7c1e19126b9273a5d14964e1 /mesh_extra_tools/pkhg_faces.py
parentf53017167bdd9854a65690c23cbc90cf1f9d37ea (diff)
Update Mesh Edit Tools: T50680
Diffstat (limited to 'mesh_extra_tools/pkhg_faces.py')
-rw-r--r--mesh_extra_tools/pkhg_faces.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/mesh_extra_tools/pkhg_faces.py b/mesh_extra_tools/pkhg_faces.py
index 10b0ca97..36992e65 100644
--- a/mesh_extra_tools/pkhg_faces.py
+++ b/mesh_extra_tools/pkhg_faces.py
@@ -461,33 +461,6 @@ class MESH_OT_add_faces_to_object(Operator):
return {'FINISHED'}
-class VIEW3D_Faces_Panel(Panel):
- bl_label = "Face Extrude"
- bl_space_type = "VIEW_3D"
- bl_region_type = "TOOLS"
- bl_category = "Tools"
- bl_options = {"DEFAULT_CLOSED"}
-
- @classmethod
- def poll(cls, context):
- result = False
- active_object = context.active_object
- if active_object:
- mesh_objects_name = [el.name for el in bpy.data.objects if el.type == "MESH"]
- if active_object.name in mesh_objects_name:
- if active_object.mode == "OBJECT":
- result = True
- return result
-
- def draw(self, context):
- layout = self.layout
-
- row = layout.split(0.8, align=True)
- row.operator("mesh.add_faces_to_object", "Selected Faces")
- row.operator("mesh.extra_tools_help",
- icon="LAYER_USED").help_ids = "pkhg_faces"
-
-
def find_one_ring(sel_vertices):
ring0 = sel_vertices.pop(0)
to_delete = []