Package de.gsi.dataset
Interface DataSet3D
-
- All Superinterfaces:
DataSet,EventSource,GridDataSet,java.io.Serializable
- All Known Implementing Classes:
DoubleGridDataSet
public interface DataSet3D extends GridDataSet
ADataSetextension used to represent 3-dimensional data points. This class only contains convenience methods to make- Author:
- gkruk, rstein
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default doublegetZ(int xIndex, int yIndex)Returns Z coordinate for the specified data point.-
Methods inherited from interface de.gsi.dataset.DataSet
get, getAxisDescription, getAxisDescriptions, getDataCount, getDataLabel, getDimension, getIndex, getName, getStyle, getStyle, getValue, getValues, lock, recomputeLimits, set, set, setStyle
-
Methods inherited from interface de.gsi.dataset.event.EventSource
addListener, autoNotification, invokeListener, invokeListener, invokeListener, isAutoNotification, removeListener, updateEventListener
-
Methods inherited from interface de.gsi.dataset.GridDataSet
get, getGrid, getGridIndex, getGridValues, getNGrid, getShape, getShape
-
-
-
-
Method Detail
-
getZ
default double getZ(int xIndex, int yIndex)Returns Z coordinate for the specified data point. This is a convenience interface not used by chartfx internally. Always returns the first non grid coordinate, so for dim > 3 it is not actually Z.- Parameters:
xIndex- index of X coordinateyIndex- index of Y coordinate- Returns:
- Z coordinate
-
-