 | CVVURangeVectorMag Method |
Find the range of hypotenuse values of two VVs.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void RangeVectorMag(
CVV vv1,
CVV vv2,
ref double min,
ref double max
)
public static void RangeVectorMag(
CVV vv1,
CVV vv2,
ref double min,
ref double max
)
Public Shared Sub RangeVectorMag (
vv1 As CVV,
vv2 As CVV,
ByRef min As Double,
ByRef max As Double
)
Public Shared Sub RangeVectorMag (
vv1 As CVV,
vv2 As CVV,
ByRef min As Double,
ByRef max As Double
)
public:
static void RangeVectorMag(
CVV^ vv1,
CVV^ vv2,
double% min,
double% max
)
public:
static void RangeVectorMag(
CVV^ vv1,
CVV^ vv2,
double% min,
double% max
)
static member RangeVectorMag :
vv1 : CVV *
vv2 : CVV *
min : float byref *
max : float byref -> unit
static member RangeVectorMag :
vv1 : CVV *
vv2 : CVV *
min : float byref *
max : float byref -> unit
Parameters
- vv1
- Type: GeoEngine.Core.GXNetCVV
First VV (X) - vv2
- Type: GeoEngine.Core.GXNetCVV
First VV (Y) - min
- Type: SystemDouble
Min value (returned) - max
- Type: SystemDouble
Max value (returned)
Remarks
For each value in the VVs, finds sqrt(dV1*dV1 + dV2*dV2)
and returns the min and max values.
See Also