Interface IFreeSurfaceDataSeries3DValues<TX,TY,TZ>
Defines the interface to and FreeSurfaceDataSeries3D values, 2D grid based free shaped 3D surface.
Implements
com.scichart.charting3d.model.dataSeries.xyz.IXyzDataSeries3DValues<TX,TY,TZ>
Namespace:
Assembly: .dll
Syntax
public interface IFreeSurfaceDataSeries3DValues<TX,TY,TZ> extends dataSeriesIXyzDataSeries3DValues<TX,TY,TZ>
Type Parameters
| Name | Description |
|---|---|
| TX | |
| TY | |
| TZ |
Methods
getOffsetX()
Gets a data offset by X axis of the Surface.
Declaration
public abstract TX getOffsetX()
Returns
| Type | Description |
|---|---|
| TX | The current offset by X axis |
getOffsetY()
Gets a data offset by Y axis of the Surface.
Declaration
public abstract TY getOffsetY()
Returns
| Type | Description |
|---|---|
| TY | The current offset by Y axis |
getOffsetZ()
Gets a data offset by Z axis of the Surface.
Declaration
public abstract TZ getOffsetZ()
Returns
| Type | Description |
|---|---|
| TZ | The current offset by Z axis |
getUSize()
Gets number of U segments of the 2D grid
Declaration
public abstract int getUSize()
Returns
| Type | Description |
|---|---|
| int | The number of U segments |
getVSize()
Gets number of V segments of the 2D grid
Declaration
public abstract int getVSize()
Returns
| Type | Description |
|---|---|
| int | The number of V segments |
Implements
com.scichart.charting3d.model.dataSeries.xyz.IXyzDataSeries3DValues<TX,TY,TZ>