[android-developers] Re: Plot quadratic equation graph

2011-05-31 Thread Peter Webb
http://developer.android.com/reference/android/graphics/Path.html rCubicTo, rQuadTo and other methods provide interpolated curves. On May 29, 2:50 am, SamuelXiao wrote: > Hi Webb, > > Could you explain in more details please? I studied the Path class but > from other examples, it seems path ca

[android-developers] Re: Plot quadratic equation graph

2011-05-30 Thread SamuelXiao
Hi Webb, Could you explain in more details please? I studied the Path class but from other examples, it seems path cannot generate smoothed lines Thanks. On May 24, 10:27 am, Peter Webb wrote: > You can draw lines using canvas.drawline. > > You can make these smoothed lines by specifying yo

[android-developers] Re: Plot quadratic equation graph

2011-05-23 Thread Peter Webb
You can draw lines using canvas.drawline. You can make these smoothed lines by specifying your points in a Path class. Once you load your points in the Path array, it is a couple of lines of code to draw it with the Canvas class. If this is all you want to do, it doesn't need any third party lib