| DfsFactoryCreateAxisCurveLinearD3 Method  | 
            Create a 3D curve-linear spatial axis. See 
IDfsAxisCurveLinearD3 for details.
            This 3D axis is used for special types of dfs3 files.
            
 
Namespace: DHI.Generic.MikeZero.DFSAssembly: DHI.Generic.MikeZero.DFS (in DHI.Generic.MikeZero.DFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntaxpublic IDfsAxisCurveLinearD3 CreateAxisCurveLinearD3(
	eumUnit axisUnit,
	int xCount,
	int yCount,
	int zCount,
	double[] xCoords,
	double[] yCoords,
	double[] zCoords
)
Public Function CreateAxisCurveLinearD3 ( 
	axisUnit As eumUnit,
	xCount As Integer,
	yCount As Integer,
	zCount As Integer,
	xCoords As Double(),
	yCoords As Double(),
	zCoords As Double()
) As IDfsAxisCurveLinearD3
public:
IDfsAxisCurveLinearD3^ CreateAxisCurveLinearD3(
	eumUnit axisUnit, 
	int xCount, 
	int yCount, 
	int zCount, 
	array<double>^ xCoords, 
	array<double>^ yCoords, 
	array<double>^ zCoords
)
member CreateAxisCurveLinearD3 : 
        axisUnit : eumUnit * 
        xCount : int * 
        yCount : int * 
        zCount : int * 
        xCoords : float[] * 
        yCoords : float[] * 
        zCoords : float[] -> IDfsAxisCurveLinearD3 
Parameters
- axisUnit
 - Type: eumUnit
Unit of the axis coordinate values. - xCount
 - Type: SystemInt32
Number of data points in the x direction - yCount
 - Type: SystemInt32
Number of data points in the Y direction - zCount
 - Type: SystemInt32
Number of data points in the Z direction - xCoords
 - Type: SystemDouble
X-coordinates of the grid. - yCoords
 - Type: SystemDouble
Y-coordinates of the grid. - zCoords
 - Type: SystemDouble
Z-coordinates of the grid. 
Return Value
Type: 
IDfsAxisCurveLinearD3
See Also