Public Member Functions | |
XYZDataItem (Number x, Number y, Number z) | |
Constructs a new data pair. | |
XYZDataItem (double x, double y, double z) | |
Constructs a new data pair. | |
Number | getX () |
Returns the x-value. | |
Number | getY () |
Returns the y-value. | |
Number | getZ () |
Returns the z-value. | |
void | setY (Number y) |
Sets the y-value for this data pair. | |
void | setZ (Number z) |
Sets the z-value for this data pair. | |
Private Attributes | |
Number | x |
The x-value. | |
Number | y |
The y-value. | |
Number | z |
The z-value. |
Originally from JFreeChart - I modified it. Original author - David Gilbert
Title: Data Visualizer
Description:
Copyright: Copyright (c) Charles D. Canham 2003
Company: Institute of Ecosystem Studies
datavisualizer::XYZDataItem::XYZDataItem | ( | Number | x, | |
Number | y, | |||
Number | z | |||
) | [inline] |
Constructs a new data pair.
x | the x-value. | |
y | the y-value. | |
z | the z-value. |
datavisualizer::XYZDataItem::XYZDataItem | ( | double | x, | |
double | y, | |||
double | z | |||
) | [inline] |
Constructs a new data pair.
x | the x-value. | |
y | the y-value. | |
z | the z-value. |
Number datavisualizer::XYZDataItem::getX | ( | ) | [inline] |
Returns the x-value.
Number datavisualizer::XYZDataItem::getY | ( | ) | [inline] |
Returns the y-value.
Number datavisualizer::XYZDataItem::getZ | ( | ) | [inline] |
Returns the z-value.
void datavisualizer::XYZDataItem::setY | ( | Number | y | ) | [inline] |
Sets the y-value for this data pair.
Note that there is no corresponding method to change the x-value.
y | the new y-value. |
void datavisualizer::XYZDataItem::setZ | ( | Number | z | ) | [inline] |
Sets the z-value for this data pair.
Note that there is no corresponding method to change the x-value.
z | the new z-value. |