[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
3.1.6 Cutting
These variables and functions set the condition when the points are excluded (cutted) from the drawing. Note, that a point with NAN value(s) of coordinate or amplitude will be automatically excluded from the drawing.
- Method on
mglGraph
(C++, Python):void
SetCut (bool
val) - C function:
void
mgl_set_cut (HMGL
gr,int
val) Flag which determines how points outside bounding box are drawn. If it is
true
then points are excluded from plot (it is default) otherwise the points are projected to edges of bounding box.

Left figure is drawn with parameter Cut=false
. Right one is drawn with parameter Cut=true
.
- Method on
mglGraph
(C++, Python):void
SetCutBox (float
x1,float
y1,float
z1,float
x2,float
y2,float
z2) - C function:
void
mgl_set_cut_box (HMGL
gr,float
x1,float
y1,float
z1,float
x2,float
y2,float
z2) Lower and upper edge of the box in which never points are drawn. If both edges are the same (the variables are equal) then the cutting box is empty. See section CutMinMax sample, for sample code and picture.
- Method on
mglGraph
(C++, Python):void
CutOff (const char *
EqC) - C function:
void
mgl_set_cutoff (HMGL
gr,const char *
EqC) Sets the cutting off condition by formula EqC. This condition determine will point be plotted or not. If value of formula is nonzero then point is omitted, otherwise it plotted. Set argument as
""
to disable cutting off condition. See section CutOff sample, for sample code and picture.
- Obsolete option of mglGraph:
bool
Cut Flag which determines how points outside bounding box are drawn. See
SetCut()
.
- Obsolete option of mglGraph:
mglPoint
CutMin, CutMax Lower and upper edge of the box in which never points are drawn. See
SetCutBox()
.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |