Problemer med AWT og Graphics g
HejProblemer med AWT og Graphics g
Nå jeg stater test class tegner den ikke noget.
Hilsen Chris
package bor_cnc;
import java.awt.*;
public class test
{
public static void main(String[] args) {
Frame f = new Frame("test example");
f.setSize(600,600);
f.setBackground(SystemColor.control);
f.show();
tegn d = new tegn(20,20);
d.tt();
}
}
-----------------------------------------------------
package bor_cnc;
import java.awt.*;
import java.io.*;
public class tegn {
int xx;
int yy;
public tegn(int x,int y)
{
xx = x;
yy = y;
}
public void tt(Graphics g)
{
Graphics2D g2 = (Graphics2D) g;
g2.drawLine(xx,yy,xx+60,yy+60);
}