 | CDUXyzLine Method |
Break up a line based on tolerance of lateral distance.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void XyzLine(
CDB db,
int line,
int x_ch,
int y_ch,
int dirctn,
double tolrnc
)
public static void XyzLine(
CDB db,
int line,
int x_ch,
int y_ch,
int dirctn,
double tolrnc
)
Public Shared Sub XyzLine (
db As CDB,
line As Integer,
x_ch As Integer,
y_ch As Integer,
dirctn As Integer,
tolrnc As Double
)
Public Shared Sub XyzLine (
db As CDB,
line As Integer,
x_ch As Integer,
y_ch As Integer,
dirctn As Integer,
tolrnc As Double
)
public:
static void XyzLine(
CDB^ db,
int line,
int x_ch,
int y_ch,
int dirctn,
double tolrnc
)
public:
static void XyzLine(
CDB^ db,
int line,
int x_ch,
int y_ch,
int dirctn,
double tolrnc
)
static member XyzLine :
db : CDB *
line : int *
x_ch : int *
y_ch : int *
dirctn : int *
tolrnc : float -> unit
static member XyzLine :
db : CDB *
line : int *
x_ch : int *
y_ch : int *
dirctn : int *
tolrnc : float -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - line
- Type: SystemInt32
Line to be broken up - x_ch
- Type: SystemInt32
Channel X - y_ch
- Type: SystemInt32
Channel Y - dirctn
- Type: SystemInt32
Line direction, 0-any, 1-X, 2-Y. - tolrnc
- Type: SystemDouble
Tolerance, DUMMY for the default (10% of the separation between the first two points.
RemarksThe original line will be deleted.
See Also