| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
9.1.6 Cutting (Python)
These functions set the condition when the points are excluded (cutted) from the drawing.
- Method on mglGraph (Python):
voidSetCut (boolval) Flag which 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.
- Method on mglGraph (Python):
voidSetCutBox (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.
- Method on mglGraph (Python):
voidCutOff (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.
