 | CMVIEWSetPlaneEquation Method |
Set the equation of a plane
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void SetPlaneEquation(
int plane,
double pitch,
double yaw,
double roll,
double x,
double y,
double z,
double sx,
double sy,
double sz
)
public void SetPlaneEquation(
int plane,
double pitch,
double yaw,
double roll,
double x,
double y,
double z,
double sx,
double sy,
double sz
)
Public Sub SetPlaneEquation (
plane As Integer,
pitch As Double,
yaw As Double,
roll As Double,
x As Double,
y As Double,
z As Double,
sx As Double,
sy As Double,
sz As Double
)
Public Sub SetPlaneEquation (
plane As Integer,
pitch As Double,
yaw As Double,
roll As Double,
x As Double,
y As Double,
z As Double,
sx As Double,
sy As Double,
sz As Double
)
public:
void SetPlaneEquation(
int plane,
double pitch,
double yaw,
double roll,
double x,
double y,
double z,
double sx,
double sy,
double sz
)
public:
void SetPlaneEquation(
int plane,
double pitch,
double yaw,
double roll,
double x,
double y,
double z,
double sx,
double sy,
double sz
)
member SetPlaneEquation :
plane : int *
pitch : float *
yaw : float *
roll : float *
x : float *
y : float *
z : float *
sx : float *
sy : float *
sz : float -> unit
member SetPlaneEquation :
plane : int *
pitch : float *
yaw : float *
roll : float *
x : float *
y : float *
z : float *
sx : float *
sy : float *
sz : float -> unit
Parameters
- plane
- Type: SystemInt32
Plane index - pitch
- Type: SystemDouble
Rotation about X (Z toward Y +ve, between -360 and 360) - yaw
- Type: SystemDouble
Rotation about Y (Z toward X +ve, between -360 and 360) - roll
- Type: SystemDouble
Rotation about Z (Y toward X +ve, between -360 and 360) - x
- Type: SystemDouble
X offset of plane - y
- Type: SystemDouble
Y offset of plane - z
- Type: SystemDouble
Z offset of plane - sx
- Type: SystemDouble
X scale - sy
- Type: SystemDouble
Y scale - sz
- Type: SystemDouble
Z scale
Remarks
For a grid with the "Y" axis giving elevation:
use rotations = (-90, 0, 0) for a section with azimuth 90 (E-W)
use rotations = (-90, 0, -90) for a section with azimuth 0 (N-S)
See Also