Class SimpleLineData

java.lang.Object
detectionPlotFX.plots.simple2d.SimpleLineData

public class SimpleLineData extends Object
Class to hold information for plotting a line on top of the simple2Dplot.
Author:
Doug Gillespie
  • Constructor Details

    • SimpleLineData

      public SimpleLineData(double[] xValues, double[] yValues, PamAxisFX xAxis, PamAxisFX yAxis)
    • SimpleLineData

      public SimpleLineData(double[] xValues, double[] yValues, PamAxisFX xAxis, PamAxisFX yAxis, javafx.scene.paint.Paint lineStroke, Double lineWidth)
  • Method Details

    • getLineStroke

      public javafx.scene.paint.Paint getLineStroke()
      Returns:
      the lineStroke
    • setLineStroke

      public void setLineStroke(javafx.scene.paint.Paint lineStroke)
      Parameters:
      lineStroke - the lineStroke to set
    • getLineWidth

      public double getLineWidth()
      Returns:
      the lineWidth
    • setLineWidth

      public void setLineWidth(double lineWidth)
      Parameters:
      lineWidth - the lineWidth to set
    • getxValues

      public double[] getxValues()
      Returns:
      the xValues
    • getyValues

      public double[] getyValues()
      Returns:
      the yValues
    • getxAxis

      public PamAxisFX getxAxis()
      Returns:
      the xAxis
    • getyAxis

      public PamAxisFX getyAxis()
      Returns:
      the yAxis