Click or drag to resize

CVVUFindGaps3D Method

Return indices of locations separated from previous locations by more than the input gap distance.

Namespace:  Geosoft.Desktop.GXNetX
Assembly:  geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2025.1.0.25
Syntax
public static void FindGaps3D(
	CGXNETCore gxNetShared,
	CVV vv_x,
	CVV vv_y,
	CVV vv_z,
	double gap,
	CVV vv_g
)

public static void FindGaps3D(
	CGXNETCore gxNetShared,
	CVV vv_x,
	CVV vv_y,
	CVV vv_z,
	double gap,
	CVV vv_g
)

Parameters

gxNetShared
Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
vv_x
Type: GeoEngine.Core.GXNetXCVV
X VV,REAL VV
vv_y
Type: GeoEngine.Core.GXNetXCVV
Y VV,REAL VV
vv_z
Type: GeoEngine.Core.GXNetXCVV
Z VV,REAL VV
gap
Type: SystemDouble
Gap size (must be greater than zero)
vv_g
Type: GeoEngine.Core.GXNetXCVV
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