Click or drag to resize
CVVUFindGaps3D Method
Return indices of locations separated from previous locations by more than the input gap distance.

Available since Oasis montaj version: 8.1
License: Available to anyone with an Oasis Montaj license.  

Namespace: Geosoft.Desktop.GXNetX
Assembly: geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll)
Notes
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).
Syntax
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)
See Also