manpagez: man pages & more
info mathgl
Home | html | info | man
[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.9.14 TextMark

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="") 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.

Method on mglGraph (C++, Python): void TextMark (const mglData &x, const mglData &y, const mglData &z, const mglData &r, const char *text, const char *fnt="")
Method on mglGraph (C++): void TextMark (const mglData &x, const mglData &y, const mglData &z, const mglData &r, const wchar_t *text, const char *fnt="")
C function: void mgl_textmarkw_xyzr (HMGL gr, const HMDT x, const HMDT y, const HMDT z, const HMDT r, const wchar_t *text, const char *fnt)
C function: void mgl_textmark_xyzr (HMGL gr, const HMDT x, const HMDT y, const HMDT z, const HMDT r, const char *text, const char *fnt)

The function draws textual marks for points {x[i], y[i], z[i]} in 3D space.

Method on mglGraph (C++, Python): void TextMark (const mglData &x, const mglData &y, const mglData &r, const char *text, const char *fnt="")
Method on mglGraph (C++): void TextMark (const mglData &x, const mglData &y, const mglData &r, const wchar_t *text, const char *fnt="")
C function: void mgl_textmarkw_xyr (HMGL gr, const HMDT x, const HMDT y, const HMDT r, const wchar_t *text, const char *fnt)
C function: void mgl_textmark_xyr (HMGL gr, const HMDT x, const HMDT y, const HMDT r, const char *text, const char *fnt)

The function draws textual marks for points {x[i], y[i]} in plane z=zVal (default in plane z=Min.z).

Method on mglGraph (C++, Python): void TextMark (const mglData &y, const mglData &r, const char *text, const char *fnt="")
Method on mglGraph (C++): void TextMark (const mglData &y, const mglData &r, const wchar_t *text, const char *fnt="")
C function: void mgl_textmarkw_yr (HMGL gr, const HMDT y, const HMDT r, const wchar_t *text, const char *fnt)
C function: void mgl_textmark_yr (HMGL gr, const HMDT y, const HMDT r, const char *text, const char *fnt)

The function draws textual marks for points {x[i], y[i]} in plane z=zVal (default in plane z=Min.z), where x[i] values are equidistantly distributed in interval [Min.x, Max.x].

Method on mglGraph (C++, Python): void TextMark (const mglData &y, const char *text, const char *fnt="")
Method on mglGraph (C++): void TextMark (const mglData &y, const wchar_t *text, const char *fnt="")
C function: void mgl_textmarkw (HMGL gr, const HMDT y, const wchar_t *text, const char *fnt)
C function: void mgl_textmark (HMGL gr, const HMDT y, const char *text, const char *fnt)

The function draws textual marks for points {x[i], y[i]} in plane z=zVal (default 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] [ ? ]
© manpagez.com 2000-2024
Individual documents may contain additional copyright information.