Methods Summary |
---|
public void | drawString(java.lang.String s)
System.out.println("Draw the string \"" + s + "\"");
|
void | moveTo(int absx, int absy)move to absolute location
curx = absx;
cury = absy;
System.out.println("moveTo ["+curx+","+cury+"]");
|
void | penColor(int c)
penColor = c;
System.out.println("PenColor is ["+penColor+"]");
|
void | penDown()
setPenState(false);
|
void | penUp()
setPenState(true);
|
void | rmoveTo(int incrx, int incry)move to relative location
curx += incrx;
cury += incry;
System.out.println("rmoveTo ["+curx+","+cury+"]");
|
public void | setFont(java.lang.String fName, int fSize)
System.out.println("set Font to " + fName);
|
void | setPenState(boolean up)
penIsUp = up;
System.out.println("Pen Up is ["+penIsUp+"]");
|