本文整理匯總了Python中UM.Operations.SetTransformOperation.SetTransformOperation類的典型用法代碼示例。如果您正苦於以下問題:Python SetTransformOperation類的具體用法?Python SetTransformOperation怎麽用?Python SetTransformOperation使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了SetTransformOperation類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: centerObject
def centerObject(self, object_id):
node = self.getController().getScene().findObject(object_id)
if not node and object_id != 0: #Workaround for tool handles overlapping the selected object
node = Selection.getSelectedObject(0)
if node:
op = SetTransformOperation(node, Vector())
op.push()
示例2: setScaleZ
def setScaleZ(self, scale):
obj = Selection.getSelectedObject(0)
if obj:
obj_scale = obj.getScale()
if obj_scale.z != scale:
obj_scale.setZ(scale)
if not self._non_uniform_scale:
obj_scale.setY(scale)
obj_scale.setX(scale)
operation = SetTransformOperation(obj, None, None, obj_scale)
operation.push()
示例3: setObjectHeight
def setObjectHeight(self, height):
obj = Selection.getSelectedObject(0)
if obj:
obj_scale = obj.getScale()
obj_height = obj.getBoundingBox().height / obj_scale.y
target_scale = float(height) / obj_height
if obj_scale.y != target_scale:
obj_scale.setY(target_scale)
if not self._non_uniform_scale:
obj_scale.setX(target_scale)
obj_scale.setZ(target_scale)
operation = SetTransformOperation(obj, None, None, obj_scale)
operation.push()
示例4: setObjectDepth
def setObjectDepth(self, depth):
obj = Selection.getSelectedObject(0)
if obj:
obj_scale = obj.getScale()
obj_depth = obj.getBoundingBox().depth / obj_scale.z
target_scale = float(depth) / obj_depth
if obj_scale.z != target_scale:
obj_scale.setZ(target_scale)
if not self._non_uniform_scale:
obj_scale.setY(target_scale)
obj_scale.setX(target_scale)
operation = SetTransformOperation(obj, None, None, obj_scale)
operation.push()
示例5: centerObject
def centerObject(self, object_id):
node = self.getController().getScene().findObject(object_id)
if node:
op = SetTransformOperation(node, Vector())
op.push()