I have the following Problem: I have a JLayeredPane and I need to add a Circle and some Lines to it. The Problem wit the Lines is, that they should be able to be redrawn/to move position (The Lines Symbolize some moving Vectors) When I just add some GLines to the Graphics JLayeredPane.getGraphics() they are permanent. Or is there any possibility to Redraw the JLayeredPane.getGraphics()?

Please Help!

link|improve this question
What is a 'GLines'? For better help sooner, post an SSCCE. – Andrew Thompson Feb 23 at 22:16
feedback

1 Answer

LinePanel shows one approach, but it can be adapted to any Shape. For many lines, your program might maintain a List<Shape>. In any case the example may serve as a foundation for your sscce.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.