[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
3.14.3 ContFXYZ
These plotting functions draw solid contour lines in x, y, or z plain. If a is a tensor (3-dimensional data) then interpolation to a given sVal is performed. These functions are useful for creating projections of the 3D data array to the bounding box. See also ContXYZ, DensXYZ, ContF, Data distributions.
- Method on
mglGraph
(C++, Python):void
ContFX (const mglData &
a,const char *
stl=""
,float
sVal=NAN
,int
num=7
) - C function:
void
mgl_contf_x (HMGL
gr,const HMDT
a,const char *
stl,float
sVal,int
num) Draws num-th solid contours for data a at x = sVal.
- Method on
mglGraph
(C++, Python):void
ContFY (const mglData &
a,const char *
stl=""
,float
sVal=NAN
,int
num=7
) - C function:
void
mgl_contf_y (HMGL
gr,const HMDT
a,const char *
stl,float
sVal,int
num) Draws num-th solid contours for data a at y = sVal.
- Method on
mglGraph
(C++, Python):void
ContFZ (const mglData &
a,const char *
stl=""
,float
sVal=NAN
,int
num=7
) - C function:
void
mgl_contf_z (HMGL
gr,const HMDT
a,const char *
stl,float
sVal,int
num) Draws num-th solid contours for data a at z = sVal.
- Method on
mglGraph
(C++, Python):void
ContFX (const mglData &
v,const mglData &
a,const char *
stl=""
,float
sVal=NAN
) - C function:
void
mgl_contf_x_val (HMGL
gr,const HMDT
v,const HMDT
a,const char *
stl,float
sVal) Draws solid contours for data a=v[i] at x = sVal.
- Method on
mglGraph
(C++, Python):void
ContFY (const mglData &
v,const mglData &
a,const char *
stl=""
,float
sVal=NAN
) - C function:
void
mgl_contf_y_val (HMGL
gr,const HMDT
v,const HMDT
a,const char *
stl,float
sVal) Draws solid contours for data a=v[i] at y = sVal.
- Method on
mglGraph
(C++, Python):void
ContFZ (const mglData &
v,const mglData &
a,const char *
stl=""
,float
sVal=NAN
) - C function:
void
mgl_contf_z_val (HMGL
gr,const HMDT
v,const HMDT
a,const char *
stl,float
sVal) Draws solid contours for data a=v[i] at z = sVal.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |