Click or drag to resize
CIPJGetPlaneEquation Method
Get the equation of a plane

Available since Oasis montaj version: 5.1.6
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNetX
Assembly: geoengine.core.gxnetx (in geoengine.core.gxnetx.dll)
Notes
Two opposite corners of the plane are required. Because the origin of the plane does not necessarily have a stable back-projection into true 3d coordinates. In practice, use the current view extents, or the corners of a grid.
Syntax
public void GetPlaneEquation(
	double min_x,
	double min_y,
	double max_x,
	double max_y,
	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 str_val
)

Parameters

min_x
Type: SystemDouble
Min X of surface
min_y
Type: SystemDouble
Min Y of surface
max_x
Type: SystemDouble
Max X of surface
max_y
Type: SystemDouble
Max Y of surface
pitch
Type: SystemDouble
Pitch angle (between -360 and 360)
yaw
Type: SystemDouble
Yaw angle (between -360 and 360)
roll
Type: SystemDouble
Roll angles (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
str_val
Type: SystemDouble
Z scale
See Also