 | CMVUProfilePlotEx Method |
Draw a profile along line trace with more parameters
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void ProfilePlotEx(
CMVIEW mview,
CVV vv_x,
CVV vv_y,
CVV vv_z,
double vangle,
int up,
double gap,
double base,
double scale,
int join,
int log,
double log_base,
int smooth,
string pos_f_color,
string neg_f_color
)
public static void ProfilePlotEx(
CMVIEW mview,
CVV vv_x,
CVV vv_y,
CVV vv_z,
double vangle,
int up,
double gap,
double base,
double scale,
int join,
int log,
double log_base,
int smooth,
string pos_f_color,
string neg_f_color
)
Public Shared Sub ProfilePlotEx (
mview As CMVIEW,
vv_x As CVV,
vv_y As CVV,
vv_z As CVV,
vangle As Double,
up As Integer,
gap As Double,
base As Double,
scale As Double,
join As Integer,
log As Integer,
log_base As Double,
smooth As Integer,
pos_f_color As String,
neg_f_color As String
)
Public Shared Sub ProfilePlotEx (
mview As CMVIEW,
vv_x As CVV,
vv_y As CVV,
vv_z As CVV,
vangle As Double,
up As Integer,
gap As Double,
base As Double,
scale As Double,
join As Integer,
log As Integer,
log_base As Double,
smooth As Integer,
pos_f_color As String,
neg_f_color As String
)
public:
static void ProfilePlotEx(
CMVIEW^ mview,
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z,
double vangle,
int up,
double gap,
double base,
double scale,
int join,
int log,
double log_base,
int smooth,
String^ pos_f_color,
String^ neg_f_color
)
public:
static void ProfilePlotEx(
CMVIEW^ mview,
CVV^ vv_x,
CVV^ vv_y,
CVV^ vv_z,
double vangle,
int up,
double gap,
double base,
double scale,
int join,
int log,
double log_base,
int smooth,
String^ pos_f_color,
String^ neg_f_color
)
static member ProfilePlotEx :
mview : CMVIEW *
vv_x : CVV *
vv_y : CVV *
vv_z : CVV *
vangle : float *
up : int *
gap : float *
base : float *
scale : float *
join : int *
log : int *
log_base : float *
smooth : int *
pos_f_color : string *
neg_f_color : string -> unit
static member ProfilePlotEx :
mview : CMVIEW *
vv_x : CVV *
vv_y : CVV *
vv_z : CVV *
vangle : float *
up : int *
gap : float *
base : float *
scale : float *
join : int *
log : int *
log_base : float *
smooth : int *
pos_f_color : string *
neg_f_color : string -> unit
Parameters
- mview
- Type: GeoEngine.Core.GXNetCMVIEW
View - vv_x
- Type: GeoEngine.Core.GXNetCVV
X - vv_y
- Type: GeoEngine.Core.GXNetCVV
Y - vv_z
- Type: GeoEngine.Core.GXNetCVV
Z - vangle
- Type: SystemDouble
Lines steeper than this angle are considered vertical and the up label direction is used. - up
- Type: SystemInt32
Up label direction: 1 up is right -1 up is left - gap
- Type: SystemDouble
Maximum gap in data to span (view units) - base
- Type: SystemDouble
Z profile base, <define>rDUMMY</define> to use data minimum - scale
- Type: SystemDouble
Z scale in view units/Z unit - join
- Type: SystemInt32
1 to join profile to line ends. - log
- Type: SystemInt32
Log option: 0 linear (default), 1 logarithm, 2 log/linear - log_base
- Type: SystemDouble
Log base - smooth
- Type: SystemInt32
Smooth curve option: 0 no (default), 1 yes - pos_f_color
- Type: SystemString
Positive fill color - neg_f_color
- Type: SystemString
Negative fill color
RemarksProfiles will be drawn in the current line style.
See Also