i have a software (school project), that computes the radius of circle,and other conic shapes.. All I need now is the graph, I have seen the Canvasing way, but I don't get it well, how do I make a cartesian plane on the screen?
PLease Help me?
i have a software (school project), that computes the radius of circle,and other conic shapes.. All I need now is the graph, I have seen the Canvasing way, but I don't get it well, how do I make a cartesian plane on the screen?
PLease Help me?
Hi chinito15,
when using Canvas, you have several graphic primitives you can use to draw your charts.
To draw a cartesian plane you would only need to use these Graphics methods:
* setColor() to set the color of your lines
* drawLine() to draw your plane axis
Anyway, a look at Canvas JavaDocs would surely help:
http://www.forum.nokia.com/document/...ui/Canvas.html
Hope it helps,
Pit