 | CDURotate Method |
Rotate coordinates.
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void Rotate(
CDB db,
int line,
int in_x_ch,
int in_y_ch,
int out_x_ch,
int out_y_ch,
double x0,
double y0,
double deg
)
public static void Rotate(
CDB db,
int line,
int in_x_ch,
int in_y_ch,
int out_x_ch,
int out_y_ch,
double x0,
double y0,
double deg
)
Public Shared Sub Rotate (
db As CDB,
line As Integer,
in_x_ch As Integer,
in_y_ch As Integer,
out_x_ch As Integer,
out_y_ch As Integer,
x0 As Double,
y0 As Double,
deg As Double
)
Public Shared Sub Rotate (
db As CDB,
line As Integer,
in_x_ch As Integer,
in_y_ch As Integer,
out_x_ch As Integer,
out_y_ch As Integer,
x0 As Double,
y0 As Double,
deg As Double
)
public:
static void Rotate(
CDB^ db,
int line,
int in_x_ch,
int in_y_ch,
int out_x_ch,
int out_y_ch,
double x0,
double y0,
double deg
)
public:
static void Rotate(
CDB^ db,
int line,
int in_x_ch,
int in_y_ch,
int out_x_ch,
int out_y_ch,
double x0,
double y0,
double deg
)
static member Rotate :
db : CDB *
line : int *
in_x_ch : int *
in_y_ch : int *
out_x_ch : int *
out_y_ch : int *
x0 : float *
y0 : float *
deg : float -> unit
static member Rotate :
db : CDB *
line : int *
in_x_ch : int *
in_y_ch : int *
out_x_ch : int *
out_y_ch : int *
x0 : float *
y0 : float *
deg : float -> unit
Parameters
- db
- Type: GeoEngine.Core.GXNetCDB
Database - line
- Type: SystemInt32
Line symbol - in_x_ch
- Type: SystemInt32
Input X channel [<define>DB_LOCK_READONLY</define>] - in_y_ch
- Type: SystemInt32
Input Y channel [<define>DB_LOCK_READONLY</define>] - out_x_ch
- Type: SystemInt32
Output X channel [<define>DB_LOCK_READWRITE</define>] - out_y_ch
- Type: SystemInt32
Output Y channel [<define>DB_LOCK_READWRITE</define>] - x0
- Type: SystemDouble
X point about which to rotate - y0
- Type: SystemDouble
Y of point about which to rotate - deg
- Type: SystemDouble
Angle in degrees CCW
See Also