Generic constructor
(int type)
| 4737 | |
| 4738 | /** Generic constructor */ |
| 4739 | PlotObject(int type) { |
| 4740 | this.type = type; |
| 4741 | } |
| 4742 | |
| 4743 | /** Constructor for XY_DATA, i.e., a curve or set of points */ |
| 4744 | PlotObject(float[] xValues, float[] yValues, float[] yErrorBars, int shape, float lineWidth, Color color, Color color2, String yLabel, DisplacementArrowControl offScreenDisplacementArrowControl) { |