Skip to content

Instantly share code, notes, and snippets.

@codenameone
Created February 25, 2015 12:38
Show Gist options
  • Save codenameone/0ffc181b7605e50b3e8e to your computer and use it in GitHub Desktop.
Save codenameone/0ffc181b7605e50b3e8e to your computer and use it in GitHub Desktop.
public void paint(Graphics g) {
g.setColor(0x0000ff);
g.rotate((float)(Math.PI/4.0), getAbsoluteX(), getAbsoluteY());
g.drawRect(getX() + 5, getY() + 5, getWidth() - 10, getHeight() - 10);
g.rotate(-(float) (Math.PI / 4.0), getAbsoluteX(), getAbsoluteY());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment