Let's say I have an hierarchy of nodes, each with its own local transformations, that eventually carries over to its children.
Is there mathematically a way to apply some transformation to a specific node in the hierarchy, without it being applied to any children of this node?
Take the inverse of the transformation you wish to apply, Then apply it to the children of the node. So effectively you have moved the node independent of its children. (If you need to do this often, then the question is why the children are considered children, maybe they should be siblings).