Drawing a Bezier curve in QGraphicsScene[SOLVED]
General and Desktop
2
Posts
1
Posters
3.9k
Views
1
Watching
-
Hi,
In my application I have to draw an Edge (curve) defined by 10 control points (Spline) as a QPainterPathItem in a graphic scene. The QPainterPath class provides only two functions to draw Bezier curves (4 control points) which are : cubicTo() and quadTo().Is theire any solution to do that such as transforming the Spline to a Bezier curves ?
thanks in advance.