I want to draw a line passing through a point P and Q on an elliptic curve.
plotE = E.plot()
plotE += line([P.xy(),R.xy()],color='red')
Using this only draw a line segment from P to Q. How can I draw a line? I've looked on the doc but did not see an option for this. Any solution?