Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public void paint(Graphics g){
  2. g.setColor(color);
  3. int xPoints[] = {x, x+50, x+100};
  4. int yPoints[] = {y, y-50,y};
  5. g.fillPolygon(xPoints, yPoints ,xPoints.length);
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement