Formwork area calculation now unions objects before remeshing to account for overlapping geometry

This commit is contained in:
Dion Moult
2021-10-27 09:58:29 +11:00
parent 80b8da629d
commit 341451f59b
3 changed files with 27 additions and 15 deletions
+1
View File
@@ -99,6 +99,7 @@ def i_add_a_cube():
bpy.ops.object.modifier_add(type="ARRAY")
@given(parsers.parse('I add a cube of size "{size}" at "{location}"'))
@when(parsers.parse('I add a cube of size "{size}" at "{location}"'))
def i_add_a_cube_of_size_size_at_location(size, location):
bpy.ops.mesh.primitive_cube_add(size=float(size), location=[float(co) for co in location.split(",")])