Revert "Merge pull request #4203 from Ultimaker/CURA-5538-fix-one-at-a-time-order-2"

This reverts commit 82e1a7c5fc, reversing
changes made to 1915659393.
This commit is contained in:
Ian Paschal 2018-08-10 11:45:25 +02:00
parent c190c8d05a
commit 89ed2bcff8
3 changed files with 95 additions and 94 deletions

View file

@ -229,7 +229,7 @@ class ConvexHullDecorator(SceneNodeDecorator):
return offset_hull
def _getHeadAndFans(self):
return Polygon(numpy.array(self._global_stack.getHeadAndFansCoordinates(), numpy.float32))
return Polygon(numpy.array(self._global_stack.getProperty("machine_head_with_fans_polygon", "value"), numpy.float32))
def _compute2DConvexHeadFull(self):
return self._compute2DConvexHull().getMinkowskiHull(self._getHeadAndFans())