• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Graphics2D

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi
I want to have something like a speedometer. I draw it with Java2D

If I have now an event, then I want to change to position of "filledPolygon". How can I do that?
I found out, that i can translate the Graphics2D-Object, but this does not affect on my already created "filledPolygon" !
Any ideas?
Thanks, Flavio
[ May 27, 2003: Message edited by: Flavio Grisch ]
[ May 27, 2003: Message edited by: Flavio Grisch ]
[ May 27, 2003: Message edited by: Flavio Grisch ]
 
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If you are doing this inside the paint() method of an AWT component, or the paintComponent() method of a Swing component, you'll simply update all of the values you need to (i.e. x, y, yo1, yu1, x1, x2, yo2, etc.), and then call repaint().
 
reply
    Bookmark Topic Watch Topic
  • New Topic