inkstitch/lib/svg/path.py

50 wiersze
1.6 KiB
Python
Czysty Zwykły widok Historia

2018-06-21 19:41:06 +00:00
import simpletransform
from .units import get_viewbox_transform
2018-08-22 00:32:50 +00:00
2018-06-21 19:41:06 +00:00
def apply_transforms(path, node):
transform = get_node_transform(node)
# apply the combined transform to this node's path
simpletransform.applyTransformToPath(transform, path)
return path
2018-08-22 00:32:50 +00:00
def get_node_transform(node):
2018-06-21 19:41:06 +00:00
# start with the identity transform
transform = [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]]
2018-07-30 20:03:27 +00:00
# this if is because sometimes inkscape likes to create paths outside of a layer?!
if node.getparent() is not None:
# combine this node's transform with all parent groups' transforms
transform = simpletransform.composeParents(node, transform)
2018-06-21 19:41:06 +00:00
# add in the transform implied by the viewBox
viewbox_transform = get_viewbox_transform(node.getroottree().getroot())
transform = simpletransform.composeTransform(viewbox_transform, transform)
return transform
2018-07-30 18:57:54 +00:00
2018-08-22 00:32:50 +00:00
2018-08-17 02:50:34 +00:00
def get_correction_transform(node, child=False):
"""Get a transform to apply to new siblings or children of this SVG node"""
2018-07-30 18:57:54 +00:00
# if we want to place our new nodes in the same group/layer as this node,
# then we'll need to factor in the effects of any transforms set on
# the parents of this node.
2018-08-17 02:50:34 +00:00
if child:
transform = get_node_transform(node)
else:
# we can ignore the transform on the node itself since it won't apply
# to the objects we add
transform = get_node_transform(node.getparent())
2018-07-30 18:57:54 +00:00
# now invert it, so that we can position our objects in absolute
# coordinates
transform = simpletransform.invertTransform(transform)
return simpletransform.formatTransform(transform)