From 67e725370c3cab278acab9f5fe1431b52cca6406 Mon Sep 17 00:00:00 2001 From: Dealga McArdle Date: Fri, 10 Sep 2021 14:17:23 +0200 Subject: [PATCH] no edges required for new calc_mesh_normals(bmesh) --- old_nodes/mesh_select.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/old_nodes/mesh_select.py b/old_nodes/mesh_select.py index d0579d28c..84e5c07ac 100644 --- a/old_nodes/mesh_select.py +++ b/old_nodes/mesh_select.py @@ -137,7 +137,7 @@ class SvMeshSelectNode(bpy.types.Node, SverchCustomTreeNode): return result def by_normal(self, vertices, edges, faces): - vertex_normals, face_normals = calc_mesh_normals(vertices, edges, faces) + vertex_normals, face_normals = calc_mesh_normals(vertices, faces) percent = self.inputs['Percent'].sv_get(default=[1.0])[0][0] direction = self.inputs['Direction'].sv_get()[0][0] values = [Vector(n).dot(direction) for n in face_normals] -- GitLab