 | CVVUiQCFillGaps Method |
Calculate fill in line segments
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static int iQCFillGaps(
CVV vvx,
CVV vvy,
CVV vvf,
CVV vvd,
double dist
)
public static int iQCFillGaps(
CVV vvx,
CVV vvy,
CVV vvf,
CVV vvd,
double dist
)
Public Shared Function iQCFillGaps (
vvx As CVV,
vvy As CVV,
vvf As CVV,
vvd As CVV,
dist As Double
) As Integer
Public Shared Function iQCFillGaps (
vvx As CVV,
vvy As CVV,
vvf As CVV,
vvd As CVV,
dist As Double
) As Integer
public:
static int iQCFillGaps(
CVV^ vvx,
CVV^ vvy,
CVV^ vvf,
CVV^ vvd,
double dist
)
public:
static int iQCFillGaps(
CVV^ vvx,
CVV^ vvy,
CVV^ vvf,
CVV^ vvd,
double dist
)
static member iQCFillGaps :
vvx : CVV *
vvy : CVV *
vvf : CVV *
vvd : CVV *
dist : float -> int
static member iQCFillGaps :
vvx : CVV *
vvy : CVV *
vvf : CVV *
vvd : CVV *
dist : float -> int
Parameters
- vvx
- Type: GeoEngine.Core.GXNetCVV
Input/output X VV on which to operate Required in <define>GS_DOUBLE</define> or <define>GS_FLOAT</define> - vvy
- Type: GeoEngine.Core.GXNetCVV
Input/output Y VV on which to operate In <define>GS_DOUBLE</define> or <define>GS_FLOAT</define> - vvf
- Type: GeoEngine.Core.GXNetCVV
Input Flag VV Required in <define>GS_BYTE</define> - vvd
- Type: GeoEngine.Core.GXNetCVV
Input Gap VV to use for locating the fill inline segments In <define>GS_DOUBLE</define> or <define>GS_FLOAT</define> - dist
- Type: SystemDouble
Min segment length (required)
Return Value
Type:
Int321 if error, 0 if successful
RemarksThe X & Y VVs are returned as the calculated fill in line segments.
See Also