 | CMVUGetRangeGOCADSurface Method |
Get the XYZ range of a GOCAD surface.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void GetRangeGOCADSurface(
string file,
ref double min_x,
ref double min_y,
ref double min_z,
ref double max_x,
ref double max_y,
ref double max_z
)
public static void GetRangeGOCADSurface(
string file,
ref double min_x,
ref double min_y,
ref double min_z,
ref double max_x,
ref double max_y,
ref double max_z
)
Public Shared Sub GetRangeGOCADSurface (
file As String,
ByRef min_x As Double,
ByRef min_y As Double,
ByRef min_z As Double,
ByRef max_x As Double,
ByRef max_y As Double,
ByRef max_z As Double
)
Public Shared Sub GetRangeGOCADSurface (
file As String,
ByRef min_x As Double,
ByRef min_y As Double,
ByRef min_z As Double,
ByRef max_x As Double,
ByRef max_y As Double,
ByRef max_z As Double
)
public:
static void GetRangeGOCADSurface(
String^ file,
double% min_x,
double% min_y,
double% min_z,
double% max_x,
double% max_y,
double% max_z
)
public:
static void GetRangeGOCADSurface(
String^ file,
double% min_x,
double% min_y,
double% min_z,
double% max_x,
double% max_y,
double% max_z
)
static member GetRangeGOCADSurface :
file : string *
min_x : float byref *
min_y : float byref *
min_z : float byref *
max_x : float byref *
max_y : float byref *
max_z : float byref -> unit
static member GetRangeGOCADSurface :
file : string *
min_x : float byref *
min_y : float byref *
min_z : float byref *
max_x : float byref *
max_y : float byref *
max_z : float byref -> unit
Parameters
- file
- Type: SystemString
GOCAD file name - min_x
- Type: SystemDouble
Min X value - min_y
- Type: SystemDouble
Min Y value - min_z
- Type: SystemDouble
Min Z value - max_x
- Type: SystemDouble
Max X value - max_y
- Type: SystemDouble
Max Y value - max_z
- Type: SystemDouble
Max Z value
Remarks
Required to set up a map view before doing the actual
surface import.
See Also