[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
3.14.10 SimplePlot
- Method on
mglGraph
(C++, Python):void
SimplePlot (const mglData &
a,int
type=0
,const char *
stl=""
) - C function:
void
mgl_simple_plot (HMGL
gr,const HMDT
a,int
type,const char *
stl) Plots the array a depending on it’s dimensions and type parameter. String stl specifies the style of plotting. For 1d data:
type=0
– Plot,type=1
– Area,type=2
– Step,type=3
– Stem,type=4
– Bars. For 2d data:type=0
– Surf,type=1
– Dens,type=2
– Mesh,type=3
– Cont. For 3d data:type=0
– Surf3,type=1
– Dens3,type=2
– Cont3,type=2
– Cloud.