lt.monarch.chart.chart2D.series
Class ContourStrategy.Line2D

java.lang.Object
  extended by lt.monarch.chart.chart2D.series.ContourStrategy.Line2D
All Implemented Interfaces:
java.io.Serializable
Enclosing class:
ContourStrategy<ChartProjector extends Projector>

protected static class ContourStrategy.Line2D
extends java.lang.Object
implements java.io.Serializable

See Also:
Serialized Form

Field Summary
Modifier and Type Field and Description
 int contourIx
          Index of contour to which this line belongs.
 double x1
          x coordinate of the first point of the line.
 double x2
          x coordinate of the second point of the line.
 double y1
          y coordinate of the first point of the line.
 double y2
          y coordinate of the second point of the line.
 
Constructor Summary
Constructor and Description
ContourStrategy.Line2D(double x1, double y1, double x2, double y2, int contourIx)
          Constructor of line data object.
 
Method Summary
Modifier and Type Method and Description
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

x1

public double x1
x coordinate of the first point of the line.


y1

public double y1
y coordinate of the first point of the line.


x2

public double x2
x coordinate of the second point of the line.


y2

public double y2
y coordinate of the second point of the line.


contourIx

public int contourIx
Index of contour to which this line belongs.

Constructor Detail

ContourStrategy.Line2D

public ContourStrategy.Line2D(double x1,
                              double y1,
                              double x2,
                              double y2,
                              int contourIx)
Constructor of line data object.

Parameters:
x1 - x coordinate of the first point of the line.
y1 - y coordinate of the first point of the line.
x2 - x coordinate of the second point of the line.
y2 - y coordinate of the second point of the line.
contourIx - index of contour to which this line belongs.