1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
CLASS:: GridLines
summary:: A factory class for AbstractGridLines
categories:: GUI>Accessories
related:: Classes/AbstractGridLines, Classes/LinearGridLines, Classes/ExponentialGridLines, Classes/DrawGrid, Classes/ControlSpec, Classes/Plotter, Reference/plot
DESCRIPTION::
code::GridLines:: is a factory class that returns the appropriate subclass of link::Classes/AbstractGridLines:: for a given code::ControlSpec::, e.g. a link::Classes/LinearGridLines:: or link::Classes/ExponentialGridLines:: for a linear or exponential spec, respectively. See those help files for examples and information on modifying their behavior.
CLASSMETHODS::
METHOD:: new
argument:: spec
A link::Classes/ControlSpec:: that defines the minimum and maximum values, warp and step.
returns:: A subclass of link::Classes/AbstractGridLines::, e.g. link::Classes/LinearGridLines:: or link::Classes/ExponentialGridLines::.
|