Graphics Programming

I've been getting a few questions about Java graphics:
"Do you know of any good graphics tutorials for java? I am working with one that might work, but any suggestions you have would be great."
Below are some links that I found useful:
 
http://docs.oracle.com/javase/tutorial/2d/index.html
http://www.corewebprogramming.com/PDF/ch10.pdf
http://www.deitel.com/articles/java_tutorials/20050923/IntroductionToJava2D.html
 
Java has an advanced graphics 2D API. It is quite sophisticated and might be daunting for beginners who just want do something fun. I found that for casual programming, Processing is more approachable and you can write a fairly complex program with it. Also, one of the most popular Java client side graphics libraries is Android (of course, it's not really Java at runtime on the device).  

Popular posts from this blog

Building A Toy Language Interpreter in Go

Space Race: a simple Rust game built on the Bevy framework

Building a Toy Language Compiler in Go