 | CMVIEWGetPlaneEquation Method |
Get 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 GetPlaneEquation(
int plane,
ref double pitch,
ref double yaw,
ref double roll,
ref double x,
ref double y,
ref double z,
ref double sx,
ref double sy,
ref double sz
)
public void GetPlaneEquation(
int plane,
ref double pitch,
ref double yaw,
ref double roll,
ref double x,
ref double y,
ref double z,
ref double sx,
ref double sy,
ref double sz
)
Public Sub GetPlaneEquation (
plane As Integer,
ByRef pitch As Double,
ByRef yaw As Double,
ByRef roll As Double,
ByRef x As Double,
ByRef y As Double,
ByRef z As Double,
ByRef sx As Double,
ByRef sy As Double,
ByRef sz As Double
)
Public Sub GetPlaneEquation (
plane As Integer,
ByRef pitch As Double,
ByRef yaw As Double,
ByRef roll As Double,
ByRef x As Double,
ByRef y As Double,
ByRef z As Double,
ByRef sx As Double,
ByRef sy As Double,
ByRef sz As Double
)
public:
void GetPlaneEquation(
int plane,
double% pitch,
double% yaw,
double% roll,
double% x,
double% y,
double% z,
double% sx,
double% sy,
double% sz
)
public:
void GetPlaneEquation(
int plane,
double% pitch,
double% yaw,
double% roll,
double% x,
double% y,
double% z,
double% sx,
double% sy,
double% sz
)
member GetPlaneEquation :
plane : int *
pitch : float byref *
yaw : float byref *
roll : float byref *
x : float byref *
y : float byref *
z : float byref *
sx : float byref *
sy : float byref *
sz : float byref -> unit
member GetPlaneEquation :
plane : int *
pitch : float byref *
yaw : float byref *
roll : float byref *
x : float byref *
y : float byref *
z : float byref *
sx : float byref *
sy : float byref *
sz : float byref -> unit
Parameters
- plane
- Type: SystemInt32
Plane index - pitch
- Type: SystemDouble
Rotation about X (Y toward Z +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
See Also