| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
8.3.6 Cutting (Pure C)
These functions set the condition when the points are excluded (cutted) from the drawing.
- C function:
voidmgl_set_cut (HMGLgr,intval) Determines how points outside bounding box are drawn. If it is
truethen points are excluded from plot (it is default) otherwise the points are projected to edges of bounding box.
- C function:
voidmgl_set_cut_box (HMGLgr,floatx1,floaty1,floatz1,floatx2,floaty2,floatz2) 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.
- C function:
voidmgl_set_cutoff (HMGLgr,const char *EqC) Function set 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
NULLto disable cutting off condition. See section CutOff sample, for sample code and picture.
