| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
8.11.11 TextMark (Pure C)
These functions draw string text as marks with size proportional to r*MarkSize (see section Default sizes) at points {x[i], y[i], z[i]}. The plots are drawn for each row if one of the data is the matrix. By any case the sizes of 1st dimension must be equal for all arrays x.nx=y.nx=z.nx=r.nx. String pen specifies the color and style of line and marks (see section Line styles). By default (pen=NULL) solid line with color from palette is used (see section Pallete and colors). See also Plot(), Mark(), Stem(). See section TextMark sample, for sample code and picture.
- C function:
voidmgl_textmarkw_xyzr (HMGLgr,const HMDTx,const HMDTy,const HMDTz,const HMDTr,const wchar_t *text,const char *fnt=NULL)
- C function:
voidmgl_textmark_xyzr (HMGLgr,const HMDTx,const HMDTy,const HMDTz,const HMDTr,const char *text,const char *fnt=NULL) The function draws textual marks for points {x[i], y[i], z[i]} in 3D space.
- C function:
voidmgl_textmarkw_xyr (HMGLgr,const HMDTx,const HMDTy,const HMDTr,const wchar_t *text,const char *fnt) - C function:
voidmgl_textmark_xyr (HMGLgr,const HMDTx,const HMDTy,const HMDTr,const char *text,const char *fnt) The function draws textual marks for points {x[i], y[i]} in plane z=Min.z.
- C function:
voidmgl_textmarkw_yr (HMGLgr,const HMDTy,const HMDTr,const wchar_t *text,const char *fnt) - C function:
voidmgl_textmark_yr (HMGLgr,const HMDTy,const HMDTr,const char *text,const char *fnt) The function draws textual marks for points {x[i], y[i]} in plane z=Min.z, where x[i] values are equidistantly distributed in interval [Min.x, Max.x].
- C function:
voidmgl_textmarkw (HMGLgr,const HMDTy,const wchar_t *text,const char *fnt) - C function:
voidmgl_textmark (HMGLgr,const HMDTy,const char *text,const char *fnt) The function draws textual marks for points {x[i], y[i]} in plane z=Min.z, where x[i] values are equidistantly distributed in interval [Min.x, Max.x]. The mark sizes r[i]=1 for all points.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
