charmae
charmae

Reputation: 1080

Java 2d graphics animation frameworks

do you guys know some java framework that can actually do the same stuff as this?

http://cs.joensuu.fi/jeliot/files/jeliotSimple.html

Upvotes: 1

Views: 1302

Answers (2)

Joe John
Joe John

Reputation: 21

Ok, so a late response, but just in case anyone comes searching. I would definitely recommend the netbeans visual library.

Upvotes: 2

Hendrik Ebbers
Hendrik Ebbers

Reputation: 2600

You can use TimingFramework http://java.net/projects/timingframework if you use Swing/Java2D. The Controls are done in swing and the theater-panel is done in java2D (paintComponent-Methode). See http://docs.oracle.com/javase/tutorial/2d/index.html for more Infos. If you start a new project use JavaFX.

Upvotes: 2

Related Questions