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.GXNet
Assembly:  geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntax
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
)

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