|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of DoubleArray in com.quinncurtis.chart3djava |
---|
Subclasses of DoubleArray in com.quinncurtis.chart3djava | |
---|---|
class |
TimeArray
|
Fields in com.quinncurtis.chart3djava declared as DoubleArray | |
---|---|
DoubleArray |
GroupPoint3D.ygroup
The y-coordinate of this GroupPoint3D . |
Methods in com.quinncurtis.chart3djava that return DoubleArray | |
---|---|
DoubleArray[] |
DoubleArray2D.DataBuffer()
This method returns a reference to the protected dataBuffer. |
DoubleArray |
GroupDataset.getGroupDatasetColumnSum()
This method returns an array of double, that contains the sum of the group values for each index, 0 to numberDatapoints-1. |
DoubleArray |
DoubleArray2D.getRowObject(int row)
Returns a reference to the DoubleArray object that holds the data for the given row. |
DoubleArray |
ChartDataset.getXDataObj()
This method returns a reference to the protected DoubleArray object used to store the x-data values. |
DoubleArray |
SimpleDataset.getYDataObj()
This method returns a reference to the DoubleArray object used to store the y-data values. |
DoubleArray |
SimpleDataset3D.getZDataObj()
This method returns a reference to the protected DoubleArray used to store the z-values. |
DoubleArray |
ChartDataset.getZDataObj()
This method returns a reference to the DoubleArray object used to store the y-values of the dataset. |
static DoubleArray |
ChartSupport.makeCompressArray(int ctype,
int wSkip,
int lFirst,
int lLast,
DoubleArray source,
BoolArray validflags)
This methods creates and returns a new array that is the data reduced version of the source array. |
static DoubleArray |
ChartSupport.makeTimeCompressArray(int compresstimefield,
int compresstype,
int lFirst,
int lLast,
DoubleArray sourcetime,
DoubleArray sourcey,
BoolArray validflags)
This methods creates and returns a new array of time based values that is the data reduced version of the source array of time based values. |
Methods in com.quinncurtis.chart3djava with parameters of type DoubleArray | |
---|---|
int |
DoubleArray2D.addColumn(DoubleArray r)
Adds a new column of data to the end of the array, increasing the number of columns by one. |
int |
DoubleArray2D.addRow(DoubleArray r)
Adds a new row of data to the end of the array, increasing the number of rows by one. |
void |
DoubleArray.copy(DoubleArray source)
Copies the source array to the current instance. |
static void |
DoubleArray2D.copyArray(DoubleArray2D source,
int sourcerow,
int sourceoffset,
DoubleArray dest,
int destoffset,
int count)
Static routine copies a row of a DoubleArray2D to a DoubleArray. |
static void |
DoubleArray2D.copyArray(DoubleArray source,
int sourceoffset,
DoubleArray2D dest,
int destrow,
int destoffset,
int count)
Static routine copies a row of a DoubleArray2D to a DoubleArray. |
static void |
DoubleArray.copyArray(DoubleArray source,
int sourceoffset,
DoubleArray dest,
int destoffset,
int count)
Static routine copies all or part of one array to another. |
static double |
ChartSupport.getMaximum(DoubleArray r)
This method returns the maximum value in an array. |
static double |
ChartSupport.getMaximum(DoubleArray r,
BoolArray valid)
This method returns the maximum value in an array. |
static double |
ChartSupport.getMinimum(DoubleArray r)
This method returns the minimum value in an array. |
static double |
ChartSupport.getMinimum(DoubleArray r,
BoolArray valid)
This method returns the minimum value in an array. |
int |
DoubleArray2D.insertColumn(int index,
DoubleArray r)
Inserts a column in the array at the specified column index, increasing the NumColumns property of the array by one. |
int |
DoubleArray2D.insertRow(int index,
DoubleArray r)
Inserts a new row of data at the specified index, increasing the number of rows by one. |
static DoubleArray |
ChartSupport.makeCompressArray(int ctype,
int wSkip,
int lFirst,
int lLast,
DoubleArray source,
BoolArray validflags)
This methods creates and returns a new array that is the data reduced version of the source array. |
static DoubleArray |
ChartSupport.makeTimeCompressArray(int compresstimefield,
int compresstype,
int lFirst,
int lLast,
DoubleArray sourcetime,
DoubleArray sourcey,
BoolArray validflags)
This methods creates and returns a new array of time based values that is the data reduced version of the source array of time based values. |
void |
DoubleArray.nDCopy(DoubleArray source)
Non-Destructive copy does not reallocate buffers, limits copy to the number of elements in the smaller of two arrays, the source or the current instance. |
void |
DoubleArray2D.setColumn(int column,
DoubleArray source)
Sets all of the row values in the specified column. |
int |
DoubleArray.setElements(DoubleArray source)
Initializes the elements of the array, starting at element 0. |
int |
DoubleArray.setElements(DoubleArray source,
int count)
Initializes the elements of the array, starting at element 0 and continuing for count elements. |
void |
DoubleArray2D.setRow(int row,
DoubleArray source)
Sets all of the column values in the specified row. |
void |
Polygon3D.setVertices(DoubleArray x,
DoubleArray y,
DoubleArray z,
ChartAttribute outsideattrib)
Sets the vertices and attribute of the polygon. |
void |
ChartDataset.setXData(DoubleArray xvalues)
This method sets the values of the xData array, the array of x-values for simple and group datasets. |
void |
SimpleDataset.setYData(DoubleArray yvalues)
This method sets the values of the yData array, the array of y-values for simple and group datasets. |
void |
SimpleDataset3D.setZData(DoubleArray value)
This method sets the DoubleArray object used to store the z-values of the dataset. |
void |
PhysicalCoordinates.wPolyLineAbs(java.awt.geom.GeneralPath path,
DoubleArray x,
DoubleArray y,
DoubleArray z,
int stepmode)
This method adds multiple line segments, defined using physical coordinates, to the specified path. |
void |
PhysicalCoordinates.wPolyLineAbs(java.awt.Graphics2D g2,
DoubleArray x,
DoubleArray y,
DoubleArray z,
int stepmode)
This method converts the specified x- and y-arrays to device coordinates, and draws the resulting line as a polyline. |
Constructors in com.quinncurtis.chart3djava with parameters of type DoubleArray | |
---|---|
GroupPoint2D(double px,
DoubleArray py)
Constructs and initializes a GroupPoint2D with the specified coordinates. |
|
GroupPoint3D(double px,
DoubleArray py,
double pz)
Constructs and initializes a GroupPoint3D with the specified coordinates. |
|
Polygon3D(PhysicalCoordinates transform,
DoubleArray x,
DoubleArray y,
DoubleArray z,
ChartAttribute outsideattrib)
Constructor initializes a polygon. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |