lightgraph.gui.Paintable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of light-weight-graphing Show documentation
Show all versions of light-weight-graphing Show documentation
Library for creating graphs in a swing environment. Can produce png or svg.
The newest version!
package lightgraph.gui;
import java.awt.*;
/**
* Items for the graph panel for creating overlays and the such.
*
* User: melkor
* Date: 9/29/13
* Time: 9:36 AM
*/
public interface Paintable {
public void paint(Graphics2D graphics);
}