I am currently trying to make a graph plotter which will create the math graph with create graphics method. So i was wondering if there was a way of creating curve points.
eg dim points() as point = {For x =1 to 50
'and from each step receive
a new point for the location of the next drawcurve point
next }
graphicsfun.drawcurve(Pens.Black,
points())
thanks