0
votes
2answers
32 views
How can I draw a portion of my Java2D simulation that doesn’t change to an image/buffer so I don’t have to redraw it’s primitives each time?
How can I draw a portion of my Java2D simulation that doesn't change to an image/buffer so I don't have to redraw it's primitives each time?
I have a portion of my Java2D simulati …
1
vote
3answers
90 views
How do I do double buffering in Java2D?
I'm drawing a bunch of primitives using Java2D on the screen and I'm getting a lot of tearing/flicker.
How can I enable/use double-buffering so it draws it off screen then shows …
0
votes
2answers
46 views
Paint component doesn’t print polygon according to intended coordinate
I have problem drawing the triangle polygons based on the coordinates which are stored in linked list. When I checked the linked list elements using System.out.println in paint com …
0
votes
1answer
85 views
Scala 2D Animation library
Can anyone recommend a good 2D animation package for Scala? I prefer something which already have some basic events handling, more like JavaFX than like processing.org.
0
votes
2answers
44 views
What is the best way to call repaint() at regular intervals in my Java2D program?
I'm looking to call repaint() in my Java2D simulator at regular intervals.
What would be the best way to do this? Should I start another thread and have a loop that keeps track o …
1
vote
2answers
429 views
Best API for simple 2d graphics with Java
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 …
1
vote
1answer
144 views
Lift image upload, resize, store in database, display
Is there a succinct example of how to upload an image, resize it, store it in a database and then serve the image up using Lift?
I'm sure I could piece it together from the file u …
0
votes
3answers
525 views
Java2D: Is it always safe to cast Graphics into Graphics2D
Assuming we always use a Sun JVM (say, 1.5+), is it always safe to cast a Graphics reference to Graphics2D?
I haven't seen it cause any problems yet and, to my understanding, th …
1
vote
2answers
61 views
Combined re-scaling and color reduction of an image in Java?
Given a rectangular input image I'd like to create an output image of size 40x40 pixels using a maximum of 10 colors. Hence, the two operatons needed are re-scaling and color reduc …
2
votes
4answers
137 views
Do I need to use OpenGL in my 2D Java sim game?
Hi all.
I have recently been developing a sim game in java, as many of my questions show, and it's come a long way! Graphically, it is somewhat lacking, and at current I'm using sh …
2
votes
1answer
149 views
How to disable the default painting behaviour of wheel scroll event on JScroolPane
I recently purchased the book Filthy Rich Clients and i found it really useful and fun. Building on one example from the book i tried implementing a custom ScrollPane that displays …
0
votes
0answers
52 views
[Java2D] Resize problems
Hi gentlemens (and ladys)
I am currently creating an Eclipse View that has to contribute an Eclipse RCP app' and which must be nice (and only this one, I don't need an eclipse ski …
3
votes
2answers
212 views
Inside clipping with Java Graphics
I need to draw a line using java.awt.Graphis, but only the portion of the line that lies outside a rectangle should be rendered.
Is it possible to use the Graphics clipping suppor …
0
votes
0answers
56 views
How to determine the pixel size of text using Groovy’s GraphicsBuilder module?
If I am drawing images using Groovy's GraphicsBuilder, how do I determine the size of the text I am drawing?
I could use Java's FontMetrics class but it requires a Graphics objec …
1
vote
1answer
100 views
Write text along a curve in Java.
I was wondering if it were possible to fit text along the curve of a circle. It would be great if there were a way to accomplish this in Java2D.
