Click or drag to resize
CCHIMERATriPlot2 Method
Plot the TriPlot on a map using symbol number, size and color VVs.

Available since Oasis montaj version: 5.1.6
License: Available to specially licensed modules.  

Namespace: Geosoft.Desktop.GXNetX
Assembly: geosoft.desktop.gxnetx (in geosoft.desktop.gxnetx.dll)
Notes
The mask channel VV is used for plotting precedence; those points with mask = dummy are plotted first, then overwritten with the non-masked values, so you don't get "good" points being covered up by masked values. The view scaling is not altered with any projection. The base view is best as the input.
Syntax
public static void TriPlot2(
	CGXNETCore gxNetShared,
	CMVIEW mview,
	string title,
	double x1,
	double y1,
	double width,
	double height,
	CVV x_vv,
	CVV y_vv,
	CVV z_vv,
	CVV m_vv,
	string sym_font,
	CVV sym_num_vv,
	CVV sym_siz_vv,
	CVV sym_col_vv,
	string x_chan,
	string y_chan,
	string z_chan,
	double xr_min,
	double xr_max,
	double yr_min,
	double yr_max,
	double zr_min,
	double zr_max,
	int use_xr_min,
	int use_xr_max,
	int use_yr_min,
	int use_yr_max,
	int use_zr_min,
	int use_zr_max,
	int grid,
	double tic,
	double grid_inc
)

Parameters

gxNetShared
Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
mview
Type: GeoEngine.Core.GXNetXCMVIEW
View
title
Type: SystemString
Title
x1
Type: SystemDouble
X location (bottom left corner of box)
y1
Type: SystemDouble
Y location
width
Type: SystemDouble
Box width
height
Type: SystemDouble
Box height
x_vv
Type: GeoEngine.Core.GXNetXCVV
X channel
y_vv
Type: GeoEngine.Core.GXNetXCVV
Y channel
z_vv
Type: GeoEngine.Core.GXNetXCVV
Z channel
m_vv
Type: GeoEngine.Core.GXNetXCVV
Mask channel
sym_font
Type: SystemString
Decorated font name, "" for default symbol font (normally symbols.gfn)
sym_num_vv
Type: GeoEngine.Core.GXNetXCVV
Symbol numbers
sym_siz_vv
Type: GeoEngine.Core.GXNetXCVV
Symbol sizes
sym_col_vv
Type: GeoEngine.Core.GXNetXCVV
Colors if symbol number or color == 0, do not plot
x_chan
Type: SystemString
X channel name
y_chan
Type: SystemString
Y channel name
z_chan
Type: SystemString
Z channel name
xr_min
Type: SystemDouble
Min. X range value
xr_max
Type: SystemDouble
Max. X range value
yr_min
Type: SystemDouble
Min. Y range value
yr_max
Type: SystemDouble
Max. Y range value
zr_min
Type: SystemDouble
Min. Z range value
zr_max
Type: SystemDouble
Max. Z range value
use_xr_min
Type: SystemInt32
Use Min X Range selection?
use_xr_max
Type: SystemInt32
Use Max X Range selection?
use_yr_min
Type: SystemInt32
Use Min Y Range selection?
use_yr_max
Type: SystemInt32
Use Max Y Range selection?
use_zr_min
Type: SystemInt32
Use Min Z Range selection?
use_zr_max
Type: SystemInt32
Use Max Z Range selection?
grid
Type: SystemInt32
Plot Grid lines? (0: Just outside edge tics, 1: Grid lines).
tic
Type: SystemDouble
Tic Increment (in percent)
grid_inc
Type: SystemDouble
Grid increment (in percent)
See Also