OctoPrint/Cura/cura_sf/fabmetheus_utilities/geometry/manipulation_matrix/_scale.py

66 lines
2.0 KiB
Python

"""
Boolean geometry scale.
"""
from __future__ import absolute_import
from fabmetheus_utilities.geometry.creation import solid
from fabmetheus_utilities.geometry.geometry_utilities import matrix
from fabmetheus_utilities.vector3 import Vector3
__author__ = 'Enrique Perez (perez_enrique@yahoo.com)'
__credits__ = 'Art of Illusion <http://www.artofillusion.org/>'
__date__ = '$Date: 2008/02/05 $'
__license__ = 'GNU Affero General Public License http://www.gnu.org/licenses/agpl.html'
globalExecutionOrder = 340
def getManipulatedGeometryOutput(elementNode, geometryOutput, prefix):
"Get equated geometryOutput."
scalePoints( elementNode, matrix.getVertexes(geometryOutput), prefix )
return geometryOutput
def getManipulatedPaths(close, elementNode, loop, prefix, sideLength):
"Get equated paths."
scalePoints( elementNode, loop, prefix )
return [loop]
def getNewDerivation(elementNode, prefix, sideLength):
'Get new derivation.'
return ScaleDerivation(elementNode)
def manipulateElementNode(elementNode, target):
"Manipulate the xml element."
derivation = ScaleDerivation(elementNode)
if derivation.scaleTetragrid == None:
print('Warning, scaleTetragrid was None in scale so nothing will be done for:')
print(elementNode)
return
matrix.setAttributesToMultipliedTetragrid(target, derivation.scaleTetragrid)
def processElementNode(elementNode):
"Process the xml element."
solid.processElementNodeByFunction(elementNode, manipulateElementNode)
def scalePoints(elementNode, points, prefix):
"Scale the points."
scaleVector3Default = Vector3(1.0, 1.0, 1.0)
scaleVector3 = matrix.getCumulativeVector3Remove(scaleVector3Default.copy(), elementNode, prefix)
if scaleVector3 == scaleVector3Default:
return
for point in points:
point.x *= scaleVector3.x
point.y *= scaleVector3.y
point.z *= scaleVector3.z
class ScaleDerivation(object):
"Class to hold scale variables."
def __init__(self, elementNode):
'Set defaults.'
self.scaleTetragrid = matrix.getScaleTetragrid(elementNode, '')