Class InterpolPunkte

java.lang.Object
  |
  +--InterpolPunkte
All Implemented Interfaces:
Darstellbar

public class InterpolPunkte
extends java.lang.Object
implements Darstellbar

Abstrakte Klasse.
Die grafisch dargestellbaren Interpolationspunkte sind Subklassen von Klasse InterpolPunkte.


Field Summary
protected  int anzahl
           
protected  double[] koordX
           
protected  double[] koordY
           
 java.lang.String Name
           
 
Constructor Summary
InterpolPunkte(double[] koordX, double[] koordY)
           
 
Method Summary
 void draw(java.awt.Graphics g, double gminX, double gmaxX, double gminY, double gmaxY, Bild fst)
          Zeichnet die Punkte
Parameter:
   gminX - minimale Wert der Koordinate X
   gmaxX - maximale Wert der Koordinate X
   gminX - minimale Wert der Koordinate Y
   gmaxX - maximale Wert der Koordinate Y
   fst - Bild in dem die Punkte gezeichnet werden
Ausgabe: -
 MinMax getMinMaxX()
          Gibt minimale und maximale Koordinate x der Interpolationspunkte
Parameter: -
Ausgabe: minimale und maximale Koordinate x der Interpolationspunkte
 MinMax getMinMaxY()
          Gibt minimale und maximale Koordinate Y der Interpolationspunkte
Parameter: -
Ausgabe: minimale und maximale Koordinate Y der Interpolationspunkte
 java.lang.String getName()
          Gibt Name der Punkten
Parameter: -
Ausgabe: Name der Punkten
 void setAufloesung(int aufloesung)
           
 void setIntervall(double min, double max)
           
 void setName(java.lang.String name)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

koordX

protected double[] koordX

koordY

protected double[] koordY

anzahl

protected int anzahl

Name

public java.lang.String Name
Constructor Detail

InterpolPunkte

public InterpolPunkte(double[] koordX,
                      double[] koordY)
Method Detail

getMinMaxX

public MinMax getMinMaxX()
Gibt minimale und maximale Koordinate x der Interpolationspunkte
Parameter: -
Ausgabe: minimale und maximale Koordinate x der Interpolationspunkte

Specified by:
getMinMaxX in interface Darstellbar

getMinMaxY

public MinMax getMinMaxY()
Gibt minimale und maximale Koordinate Y der Interpolationspunkte
Parameter: -
Ausgabe: minimale und maximale Koordinate Y der Interpolationspunkte

Specified by:
getMinMaxY in interface Darstellbar

getName

public java.lang.String getName()
Gibt Name der Punkten
Parameter: -
Ausgabe: Name der Punkten

Specified by:
getName in interface Darstellbar

setName

public void setName(java.lang.String name)
Specified by:
setName in interface Darstellbar

draw

public void draw(java.awt.Graphics g,
                 double gminX,
                 double gmaxX,
                 double gminY,
                 double gmaxY,
                 Bild fst)
Zeichnet die Punkte
Parameter:
   gminX - minimale Wert der Koordinate X
   gmaxX - maximale Wert der Koordinate X
   gminX - minimale Wert der Koordinate Y
   gmaxX - maximale Wert der Koordinate Y
   fst - Bild in dem die Punkte gezeichnet werden
Ausgabe: -

Specified by:
draw in interface Darstellbar

setIntervall

public void setIntervall(double min,
                         double max)
Specified by:
setIntervall in interface Darstellbar

setAufloesung

public void setAufloesung(int aufloesung)
Specified by:
setAufloesung in interface Darstellbar