i want to know how i can draw ellipse with the three points marked in the qgraphicsscene . say if the user selects three points in the scene using mousePress i will highlight the pressed points with marks . now using the the three marks i have to draw an ellipse around the three marks or making the points as a boundary for the ellipse i draw .
for implementation painterpath drawEllipse will work ..?
I have worked on a similar problem with PySide. You can easily adapt this code in C++:
The goal is to calculate the bounding rectangle of the ellipse considering that the three points are the ends of the two axis.
So, the first step find the longer axis. The second step finds the small axis.
The rectangle is defined by the axis lengths and we just need to rotate the painter to draw our ellipse.
A better solution should exist but the mine seems to work, for the moment...
Edit: It's quick and dirty. So, it will not work for a lot of cases. A better solution would use the property: for each point on the ellipse, the sum of distance between the point and two static points is constant. So, you can calcuate this distance and determine the two other points and determine the two axis.