 | CTINRangeXY Method |
Find the range in X and Y of the TINned region.
Namespace:
Geosoft.Desktop.GXNetX
Assembly:
geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void RangeXY(
ref double x_min,
ref double y_min,
ref double x_max,
ref double y_max
)
public void RangeXY(
ref double x_min,
ref double y_min,
ref double x_max,
ref double y_max
)
Public Sub RangeXY (
ByRef x_min As Double,
ByRef y_min As Double,
ByRef x_max As Double,
ByRef y_max As Double
)
Public Sub RangeXY (
ByRef x_min As Double,
ByRef y_min As Double,
ByRef x_max As Double,
ByRef y_max As Double
)
public:
void RangeXY(
double% x_min,
double% y_min,
double% x_max,
double% y_max
)
public:
void RangeXY(
double% x_min,
double% y_min,
double% x_max,
double% y_max
)
member RangeXY :
x_min : float byref *
y_min : float byref *
x_max : float byref *
y_max : float byref -> unit
member RangeXY :
x_min : float byref *
y_min : float byref *
x_max : float byref *
y_max : float byref -> unit
Parameters
- x_min
- Type: SystemDouble
Min X (returned) - y_min
- Type: SystemDouble
Min Y - x_max
- Type: SystemDouble
Max X - y_max
- Type: SystemDouble
Max Y
Remarks
The TINned range is the range of X and Y covered by
the TIN triangles. It can thus be less than the full
X and Y range of the nodes themselves, if a full
convex hull is not calculated.
See Also