Package com.compomics.util
Class XYZDataPoint
java.lang.Object
com.compomics.util.XYZDataPoint
public class XYZDataPoint extends Object
Object that stores data about one data point in an XYZ plot.
- Author:
- Harald Barsnes
-
Constructor Summary
Constructors Constructor Description XYZDataPoint()
Empty default constructorXYZDataPoint(double x, double y, double z)
Create a new XYZDataPoint. -
Method Summary
-
Constructor Details
-
XYZDataPoint
public XYZDataPoint()Empty default constructor -
XYZDataPoint
public XYZDataPoint(double x, double y, double z)Create a new XYZDataPoint.- Parameters:
x
- the x valuey
- the y valuez
- the z value
-
-
Method Details
-
getX
public double getX()Returns the x value.- Returns:
- the x
-
setX
public void setX(double x)Sets the x value.- Parameters:
x
- the x to set
-
getY
public double getY()Returns the y value.- Returns:
- the y
-
setY
public void setY(double y)Sets the y value.- Parameters:
y
- the y to set
-
getZ
public double getZ()Returns the z value.- Returns:
- the z
-
setZ
public void setZ(double z)Sets the z value.- Parameters:
z
- the z to set
-