Enforcing naming convention

This commit is contained in:
Jaime van Kessel 2015-07-14 13:19:46 +02:00
parent 2683fa0958
commit 9475c8e0c1

View file

@ -20,9 +20,9 @@ class ConvexHullJob(Job):
return
mesh = self._node.getMeshData()
vertexData = mesh.getTransformed(self._node.getWorldTransformation()).getVertices()
vertex_data = mesh.getTransformed(self._node.getWorldTransformation()).getVertices()
hull = Polygon(numpy.rint(vertexData[:, [0, 2]]).astype(int))
hull = Polygon(numpy.rint(vertex_data[:, [0, 2]]).astype(int))
# First, calculate the normal convex hull around the points
hull = hull.getConvexHull()