 | CVVUSpline Method |
Spline a Y VV onto an X VV.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void Spline(
CVV vv_x,
CVV vv_y,
CVV vv_o,
int length,
double start,
double incr,
double gap,
int ext,
int type
)
public static void Spline(
CVV vv_x,
CVV vv_y,
CVV vv_o,
int length,
double start,
double incr,
double gap,
int ext,
int type
)
Public Shared Sub Spline (
vv_x As CVV,
vv_y As CVV,
vv_o As CVV,
length As Integer,
start As Double,
incr As Double,
gap As Double,
ext As Integer,
type As Integer
)
Public Shared Sub Spline (
vv_x As CVV,
vv_y As CVV,
vv_o As CVV,
length As Integer,
start As Double,
incr As Double,
gap As Double,
ext As Integer,
type As Integer
)
public:
static void Spline(
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_o,
int length,
double start,
double incr,
double gap,
int ext,
int type
)
public:
static void Spline(
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_o,
int length,
double start,
double incr,
double gap,
int ext,
int type
)
static member Spline :
vv_x : CVV *
vv_y : CVV *
vv_o : CVV *
length : int *
start : float *
incr : float *
gap : float *
ext : int *
type : int -> unit
static member Spline :
vv_x : CVV *
vv_y : CVV *
vv_o : CVV *
length : int *
start : float *
incr : float *
gap : float *
ext : int *
type : int -> unit
Parameters
- vv_x
- Type: GeoEngine.Core.GXNetCVV
X (no dummies) - vv_y
- Type: GeoEngine.Core.GXNetCVV
Y to be splined (no dummies) - vv_o
- Type: GeoEngine.Core.GXNetCVV
Y output - length
- Type: SystemInt32
Output Length - start
- Type: SystemDouble
Starting Location - incr
- Type: SystemDouble
Separation Distance - gap
- Type: SystemDouble
Maximum gap to interpolate across - ext
- Type: SystemInt32
Number of elements to extend - type
- Type: SystemInt32
<define>VVU_SPL</define>
See Also