Klasse DotChart


public class DotChart extends VisualizationElement
Represents a dot chart to visualize sort algorithms.
  • Felddetails

    • DOT_DIAMETER

      private static final int DOT_DIAMETER
      Siehe auch:
    • START_X_POS

      private static final int START_X_POS
      Siehe auch:
    • startYPos

      private int startYPos
    • startXPos

      private int startXPos
    • height

      private int height
    • width

      private int width
    • values

      private Vector<Integer> values
  • Konstruktordetails

    • DotChart

      public DotChart(Vector<Integer> values, int height, int width)
      Creates a new dot chart.
      Parameter:
      values - Vector with values the dot chart visualizes.
      height - Height of the dot chart.
      width - Width of the dot chart.
    • DotChart

      public DotChart(int[] values, int height, int width)
      Creates a new dot chart.
      Parameter:
      values - Array with values the dot chart visualizes.
      height - Height of the dot chart.
      width - Width of the dot chart.
  • Methodendetails

    • draw

      public void draw(Graphics g)
      Beschreibung aus Klasse kopiert: VisualizationElement
      Draws the visualization element.
      Angegeben von:
      draw in Klasse VisualizationElement
      Parameter:
      g - The Graphics object to draw the element to the DrawArea.
    • setValues

      public void setValues(Vector<Integer> values)
      Parameter:
      values - the values to set
    • getValues

      public Vector<Integer> getValues()
      Gibt zurück:
      Returns the values.
    • setStartXPos

      public void setStartXPos(int startXPos)
      Parameter:
      startXPos - the startXPos to set
    • getStartXPos

      public int getStartXPos()
      Gibt zurück:
      the startXPos
    • setHeight

      public void setHeight(int height)
      Parameter:
      height - the height to set
    • getHeight

      public int getHeight()
      Gibt zurück:
      the height
    • setWidth

      public void setWidth(int width)
      Parameter:
      width - the width to set
    • getWidth

      public int getWidth()
      Gibt zurück:
      the width