I'm not sure what the best api for simple 2d graphics with Java is. I know java.awt.Graphics2D was the standard but has it been replaced? Swing is the new API for Java GUI apps but it seems a bit heavy for what I want. What I really want is something like the C SDL library.
| ||||
|
feedback
|
closed as not constructive by Mat, templatetypedef, Tim Post♦ Sep 21 '11 at 6:21
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.
|
Java 2D ( | |||
|
feedback
|
|
If you want to have the least work possible if you're building a game (or even if not) use http://slick.cokeandcode.com/ | |||
|
feedback
|
|
A Java binding to SDL can be found here: | |||
|
feedback
|
|
Processing.org has some good easy-to-use 2D stuff (and 3D). It has a PApplet class that implements Applet from AWT together with a bunch of useful operations and works well together with Java2D. If you just want to mess around with 2d graphics it has a "sketchpad IDE" where you don't need to put it in your java IDE if you just want to experiment with it. | |||
|
feedback
|
|
Piccolo can be a good choice for drawing graphics. It is a 2D graphics toolkit that supports zoomable user interface. Available for both Java and .Net. | ||||
|
feedback
|