Click or drag to resize
CIPJGetPlaneEquation2 Method
Get the equation of a plane with reprojection.

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

Namespace: GeoEngine.Core.GXNetX
Assembly: geoengine.core.gxnetx (in geoengine.core.gxnetx.dll)
Notes
This is the same as GetPlaneEquation_IPJ, but the input projected coordinate system (PCS) may be different from that of the IPJ you want the plane equation values described in. This may be required, for instance, when a 3D view has been created in one PCS, and an oriented grid from a different PCS is to be displayed in that view. If the two input IPJs share the same PCS then the GetPlaneEquation_IPJ function is called directly, using the input IPJ.
Syntax
public void GetPlaneEquation2(
	CIPJ ip_jo,
	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

ip_jo
Type: GeoEngine.Core.GXNetXCIPJ
IPJ object for the output values
min_x
Type: SystemDouble
Min X of surface (in grid coords)
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) (in view coords)
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 (in view coords)
y
Type: SystemDouble
Y offset of plane
z
Type: SystemDouble
Z offset of plane
sx
Type: SystemDouble
X scale (in view coords)
sy
Type: SystemDouble
Y scale
str_val
Type: SystemDouble
Z scale
See Also