
I propose the following: pressing H and V in the Node tool already flips the selected nodes; all you need to do is to check if any of the selected nodes is mouseovered and if so, use it as the center.
Thanks for this suggestion! IMHO it's indeed the best way to do it. Just one question: What is the best way to easily obtain the current active (= mouseovered) node (if there is any)? The variable active_node in nodepath.cpp seems to serve precisely this purpose. But it's declared global static, so it can't be accessed from other files. Is there a good reason for this? Why not make it a static member of, say, Inkscape::NodePath::Path? This was my first approach, and it works perfectly. But I want to make sure I'm not missing anything.
Thanks, Max