| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
9.14.2 ContXYZ (Python)
These plotting functions draw density plot 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 ContFXYZ, DensXYZ, Cont. See section Cont projection sample, for sample code and picture.
- Method on mglGraph (Python):
voidContX (mglDataa,const char *stl=NULL,floatsVal=NAN,intnum=7) Draws num-th contour lines for data a at x = sVal.
- Method on mglGraph (Python):
voidContY (mglDataa,const char *stl=NULL,floatsVal=NAN,intnum=7) Draws num-th contour lines for data a at y = sVal.
- Method on mglGraph (Python):
voidContZ (mglDataa,const char *stl=NULL,floatsVal=NAN,intnum=7) Draws num-th contour lines for data a at z = sVal.
- Method on mglGraph (Python):
voidContX (mglDatav,mglDataa,const char *stl=NULL,floatsVal=NAN) Draws contour lines for data a=v[i] at x = sVal.
- Method on mglGraph (Python):
voidContY (mglDatav,mglDataa,const char *stl=NULL,floatsVal=NAN) Draws contour lines for data a=v[i] at y = sVal.
- Method on mglGraph (Python):
voidContZ (mglDatav,mglDataa,const char *stl=NULL,floatsVal=NAN) Draws contour lines for data a=v[i] at z = sVal.
