 | CVVUFindGaps3D Method |
Return indices of locations separated from previous locations by more than the input gap distance.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void FindGaps3D(
CVV vv_x,
CVV vv_y,
CVV vv_z,
double gap,
CVV vv_g
)
public static void FindGaps3D(
CVV vv_x,
CVV vv_y,
CVV vv_z,
double gap,
CVV vv_g
)
Public Shared Sub FindGaps3D (
vv_x As CVV,
vv_y As CVV,
vv_z As CVV,
gap As Double,
vv_g As CVV
)
Public Shared Sub FindGaps3D (
vv_x As CVV,
vv_y As CVV,
vv_z As CVV,
gap As Double,
vv_g As CVV
)
public:
static void FindGaps3D(
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z,
double gap,
CVV^ vv_g
)
public:
static void FindGaps3D(
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z,
double gap,
CVV^ vv_g
)
static member FindGaps3D :
vv_x : CVV *
vv_y : CVV *
vv_z : CVV *
gap : float *
vv_g : CVV -> unit
static member FindGaps3D :
vv_x : CVV *
vv_y : CVV *
vv_z : CVV *
gap : float *
vv_g : CVV -> unit
Parameters
- vv_x
- Type: GeoEngine.Core.GXNetCVV
X VV,REAL VV - vv_y
- Type: GeoEngine.Core.GXNetCVV
Y VV,REAL VV - vv_z
- Type: GeoEngine.Core.GXNetCVV
Z VV,REAL VV - gap
- Type: SystemDouble
Gap size (must be greater than zero) - vv_g
- Type: GeoEngine.Core.GXNetCVV
Returned indices of start of sections after gaps (INT VV)
Remarks
Locate the starting points of line segements determined by an input gap distance.
The returned indices indicate where to break the line, given an input gap.
The number of returned indices is one less than the number of line segments.
(So if there are no gaps the returned VV has zero length).
See Also