GraphicsDefaultsΒΆ
grdef.spad line 1 [edit on github]
TwoDimensionalPlotSettings sets global flags and constants for 2-dimensional plotting.
- adaptive: () -> Boolean
adaptive()
determines whether plotting will be done adaptively.
- adaptive: Boolean -> Boolean
adaptive(true)
turns adaptive plotting on;adaptive(false)
turns adaptive plotting off.
- clipPointsDefault: () -> Boolean
clipPointsDefault()
determines whether or not automatic clipping is to be done.
- clipPointsDefault: Boolean -> Boolean
clipPointsDefault(true)
turns on automatic clipping;clipPointsDefault(false)
turns off automatic clipping. The default setting istrue
.
- drawToScale: () -> Boolean
drawToScale()
determines whether or not plots are to be drawn to scale.
- drawToScale: Boolean -> Boolean
drawToScale(true)
causes plots to be drawn to scale.drawToScale(false)
causes plots to be drawn so that they fill up the viewport window. The default setting isfalse
.
- maxPoints: () -> Integer
maxPoints()
returns the maximum number of points in a plot.
- minPoints: () -> Integer
minPoints()
returns the minimum number of points in a plot.
- screenResolution: () -> Integer
screenResolution()
returns the screen resolutionn
.