PrinterPlottable.java

/**
An interface for dirt-simple character-cell-based plotting.

@author Walt Leipold
*/
public interface PrinterPlottable
{
    /**
    Draw an object onto a <code>PlotContext</code> using
    a specified character to draw each 'pixel'.

    @param pc the <code>PlotContext</code> to draw on
    @param drawChar the character to plot for each 'pixel'
    */
    void draw(PlotContext pc,char drawChar);
}