| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
3.10.6 Tile
- Method on mglGraph:
voidTile (const mglData &x,const mglData &y,const mglData &z,const char *sch=NULL) The function draws horizontal tiles for surface specified parametrically {x[i,j], y[i,j], z[i,j]}. Such plot can be used as 3d generalization of Step (see section Step). String sch sets the color scheme. Previous color scheme is used by default. The minor dimensions of arrays x, y, z should be equal x.nx=z.nx && y.nx=z.ny or x.nx=y.nx=z.nx && x.ny=y.ny=z.ny. Arrays x and y can be vectors (not matrices as z). Surface is plotted for each z slice of the data. See also Surf, Boxs, Step, TileS. See section Tile sample, for sample code and picture.
- Method on mglGraph:
voidTile (const mglData &z,const char *sch=NULL) The same as previous with x, y equidistantly distributed in interval [Min, Max].
