mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Correct for inverted Z in ProcessSlicedObjectListJob
This commit is contained in:
parent
462b68f389
commit
be168bace0
1 changed files with 2 additions and 0 deletions
|
@ -49,6 +49,8 @@ class ProcessSlicedObjectListJob(Job):
|
|||
points[:,0] -= self._center.x
|
||||
points[:,2] -= self._center.z
|
||||
|
||||
points[:,2] *= -1
|
||||
|
||||
#points = numpy.pad(points, ((0,0), (0,1)), 'constant', constant_values=(0.0, 1.0))
|
||||
#inverse = node.getWorldTransformation().getInverse().getData()
|
||||
#points = points.dot(inverse)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue