Skip to content

Instantly share code, notes, and snippets.

@itsjoekent
Created April 27, 2013 16:57
Show Gist options
  • Save itsjoekent/5473777 to your computer and use it in GitHub Desktop.
Save itsjoekent/5473777 to your computer and use it in GitHub Desktop.
public void render(Graphics2D g, int w, int h){
g.setColor(Color.WHITE);
g.translate(x, y);
g.scale(z * scale, z * scale);
g.drawPolygon(frontCollision.xpoints, frontCollision.ypoints, frontCollision.npoints);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment