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 Link icon

    • SimpleLineData Link icon

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

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

    • getLineStroke Link icon

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

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

      public double getLineWidth()
      Returns:
      the lineWidth
    • setLineWidth Link icon

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

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

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

      public PamAxisFX getxAxis()
      Returns:
      the xAxis
    • getyAxis Link icon

      public PamAxisFX getyAxis()
      Returns:
      the yAxis