Revert "Account for getConvexHullTransformedVertices returning None"

This reverts commit 564a97d5a80545f5eebdc63de7c48a1a435ad2ea.
This commit is contained in:
Ghostkeeper 2018-01-05 09:17:02 +01:00
parent 63f7902fca
commit 502332ee3e
No known key found for this signature in database
GPG Key ID: 5252B696FB5E7C7A

View File

@ -177,7 +177,7 @@ class ConvexHullDecorator(SceneNodeDecorator):
# Do not throw away vertices: the convex hull may be too small and objects can collide. # 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] # 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 # 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 # 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. # becomes much less complex when dealing with highly detailed models.