  | CVVUOffsetCorrect3 Method  | 
 Same as OffsetCorrect2_VVU, but specify smoothing interval.
 
    Namespace: 
   Geosoft.Desktop.GXNetX
    Assembly:
   geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2025.1.0.25
Syntaxpublic static void OffsetCorrect3(
	CGXNETCore gxNetShared,
	CVV vv_xi,
	CVV vv_yi,
	double dist,
	double azimuth,
	double interval,
	CVV vv_xo,
	CVV vv_yo
)
public static void OffsetCorrect3(
	CGXNETCore gxNetShared,
	CVV vv_xi,
	CVV vv_yi,
	double dist,
	double azimuth,
	double interval,
	CVV vv_xo,
	CVV vv_yo
)
Public Shared Sub OffsetCorrect3 ( 
	gxNetShared As CGXNETCore,
	vv_xi As CVV,
	vv_yi As CVV,
	dist As Double,
	azimuth As Double,
	interval As Double,
	vv_xo As CVV,
	vv_yo As CVV
)
Public Shared Sub OffsetCorrect3 ( 
	gxNetShared As CGXNETCore,
	vv_xi As CVV,
	vv_yi As CVV,
	dist As Double,
	azimuth As Double,
	interval As Double,
	vv_xo As CVV,
	vv_yo As CVV
)
public:
static void OffsetCorrect3(
	CGXNETCore^ gxNetShared, 
	CVV^ vv_xi, 
	CVV^ vv_yi, 
	double dist, 
	double azimuth, 
	double interval, 
	CVV^ vv_xo, 
	CVV^ vv_yo
)
public:
static void OffsetCorrect3(
	CGXNETCore^ gxNetShared, 
	CVV^ vv_xi, 
	CVV^ vv_yi, 
	double dist, 
	double azimuth, 
	double interval, 
	CVV^ vv_xo, 
	CVV^ vv_yo
)
static member OffsetCorrect3 : 
        gxNetShared : CGXNETCore * 
        vv_xi : CVV * 
        vv_yi : CVV * 
        dist : float * 
        azimuth : float * 
        interval : float * 
        vv_xo : CVV * 
        vv_yo : CVV -> unit 
static member OffsetCorrect3 : 
        gxNetShared : CGXNETCore * 
        vv_xi : CVV * 
        vv_yi : CVV * 
        dist : float * 
        azimuth : float * 
        interval : float * 
        vv_xo : CVV * 
        vv_yo : CVV -> unit 
Parameters
- gxNetShared
 - Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - vv_xi
 - Type: GeoEngine.Core.GXNetXCVV
Input X - vv_yi
 - Type: GeoEngine.Core.GXNetXCVV
Input Y - dist
 - Type: SystemDouble
Offset distance - azimuth
 - Type: SystemDouble
Offset azimuth (degrees counter-clockwise from straight ahead) - interval
 - Type: SystemDouble
Averaging interval - <define>rDUMMY</define> for default - vv_xo
 - Type: GeoEngine.Core.GXNetXCVV
Output X - vv_yo
 - Type: GeoEngine.Core.GXNetXCVV
Output Y 
RemarksSee the algorithm note #2 above for the default smoothing interval.
See Also