mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-25 11:51:41 -07:00
Revert "Account for getConvexHullTransformedVertices returning None"
This reverts commit 564a97d5a8.
This commit is contained in:
parent
63f7902fca
commit
502332ee3e
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ class ConvexHullDecorator(SceneNodeDecorator):
|
|||
# Do not throw away vertices: the convex hull may be too small and objects can collide.
|
||||
# vertex_data = vertex_data[vertex_data[:,1] >= -0.01]
|
||||
|
||||
if vertex_data and len(vertex_data) >= 4:
|
||||
if len(vertex_data) >= 4:
|
||||
# Round the vertex data to 1/10th of a mm, then remove all duplicate vertices
|
||||
# This is done to greatly speed up further convex hull calculations as the convex hull
|
||||
# becomes much less complex when dealing with highly detailed models.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue