Slight addition to Plot.

This commit is contained in:
Marcel Kronfeld 2010-09-02 14:35:12 +00:00
parent cf3e9aa7b9
commit e91ff6082f

View File

@ -83,6 +83,18 @@ public class Plot implements PlotInterface, Serializable {
m_PlotArea.addDElement(points);
}
/**
* A basic constructor.
*
* @param PlotName
* @param xname
* @param yname
* @param init
*/
public Plot(String PlotName, String xname, String yname) {
this(PlotName, xname, yname, true);
}
/**
* A basic constructor.
*