The Intersection library from Kevin Lindsey allows to easily compute intersections between several types of svg
elements (paths, rectangles, lines...).
However, it does not seem to take into account the transformations applied via transform="translate(x,y) rotate(r)"
to any of the objects.
<svg>
<polygon id="machine" transform="translate(40,25) rotate(45)"... />
<path id="outer" ... />
</svg>
<script>
var machine = document.getElementById("machine")
var outer = document.getElementById("outer")
var m = new Polygon(machine)
var o = new Path(outer)
Intersection.intersectPathShape(o, m) // incorrect
</script>
Is there a way to take the transformations applied to any element into account while computing intersections?
You could try changing the values of to their 'screen' values, extracting the transforms. Below are some examples for polygons and paths(except arcs): Note on paths: Chrome deprecated pathSegList recently and now requires a polyfill, https://github.com/progers/pathseg