Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. class drawhere{
  2. Paint p;
  3. Line l1;
  4. Line l2;
  5. Circle circ;
  6. void onDraw(Canvas canvas){
  7. canvas.drawLine(l1);
  8. canvas.drawLine(l2);
  9. canvas.drawCircle(circ);
  10. }
  11.  
  12. void initFileds(){
  13. p = new Paint();
  14. l1 = new Line(0, 0, 100, 100, p);
  15. l2 = new Line(0,100, 200, 200, p);
  16. circ = new Circle( 500, 500, 100, p);
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement