View Javadoc

1   /*
2    * Created on Jul 25, 2004
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
6    */
7   package net.sourceforge.kamiwaai.geometricalgebra;
8   
9   import java.awt.Graphics;
10  
11  /***
12   * @author Administrator
13   *
14   * TODO To change the template for this generated type comment go to
15   * Window - Preferences - Java - Code Style - Code Templates
16   */
17  public interface SwingDrawable {
18  	void draw(Graphics g);
19  	void drawZ(Graphics g);
20  }