hello
I am trying to write an Pocketcube (like a Rubik's Cube) simulator and I am using an user-created method to draw the net of the cube in an Applet.
I am using this code to create my method:
class Draw extends Applet
{
public void drawpiece(String position, String color, Graphics g)
{
....
}
}
When I try to use that method [ Draw.drawpiece("ftl","rwg") ] I get a compile error:
F:\fun\minicube1.java:36: drawpiece(java.lang.String,java.lang.String,java.a wt.Graphics) in Draw cannot be applied to (java.lang.String,java.lang.String)
Draw.drawpiece("ftl","rwg");
I do not use any extern graphic files so I cant write anything behind the two Strings in my method, but I also cant delete the "Graphics g" when I create my method or I get a comiple error when I use "g.fillRect()" later.
Can anybody help me? I am pretty much stuck at this point and dont see another way to do it.
thank you
Florian
^