Skip to content

Instantly share code, notes, and snippets.

@avh4
Created February 9, 2012 18:18
Show Gist options
  • Save avh4/1781768 to your computer and use it in GitHub Desktop.
Save avh4/1781768 to your computer and use it in GitHub Desktop.
Simple Graphics methods (Java Swing)
g.setColor(Color.GREEN);
g.drawRect(50, 50, 100, 100);
g.fillRect(50, 50, 100, 100);
g.drawOval(50, 50, 100, 100);
g.fillOval(50, 50, 100, 100);
g.drawLine(50, 50, 100, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment