[Solved] Distance between QLineF and QPointF
-
I need to calculate the difference between a QLineF and a QPointF. I couldn't find a built-in method for that in the Qt library so I guess I have to do it myself. But before I start spending time I just want to double check: Is there really no built-in support for this? It is quite a common thing to do, no?
-
Doesn't look like there is one. Though I saw this thread that was discussing the same thing: http://www.qtcentre.org/threads/953-Selecting-a-QLine
The last post has a dist() function that may be what you need.
You can always submit a JIRA to suggest it to be added to the QLineF class.
-
Awesome, thank you very much for your answer!