Forum: Java Aug 11th, 2009 |
| Replies: 3 Views: 715 Shouldn't be too hard if you just need something simple. Just use g.drawLine(x,y,x,y) repeatedly.
while([points left]) {
[g.drawLine]
}
To do dashes, just make two drawLine calls to to... |
Forum: Java Aug 11th, 2009 |
| Replies: 15 Views: 3,747 |
Forum: Java Aug 11th, 2009 |
| Replies: 0 Views: 219 Hello,
Is there a way to center or offset a canvas component inside of a Java Frame (AWT)? I've tried a number of strategies based around frame.add(canvas), and whether I'm using a full screen... |