Axes()

Displays an axes on the graphics device

AXES/DRAW [/XLOG] [/YLOG] [/YHORIZ] [/NOXNUM] [/NOYNUM] [/XLINEAR] [/YLINEAR] [/YVERTICAL] [/XNUM] [/NUM] [colour=Colour] [size=Real] [font=Font] [line_thickness=Real] [line_type=LineStyle] Draws an Axis on a graphics device
AXES/ALTER [/XLOG] [/YLOG] [/YHORIZ] [/NOXNUM] [/NOYNUM] [/XLINEAR] [/YLINEAR] [/YVERTICAL] [/XNUM] [/NUM] [colour=Colour] [size=Real] [font=Font] [line_thickness=Real] [line_type=LineStyle] object=Gobject Alters an axis already drawn on a graphics device

example:

	# Draw green Axes on a device with a window already
	# displayed, then alters the colour.
	>> a = axes:draw(colour=$green)
	>> axes/alter colour=$red object=a

Note: By default the axes are linear, x is labelled horizontally and y is labelled vertically

Axes/Draw

Draws an axes on a graphics device when a window is displayed previously.

Parameters:

/Xlog

Draws a logarithmic x axis.

/Ylog

Draws a logarithmic y axis.

/Yhoriz

Labels the numbers horizontally on the y axis..

/Noxnum

Does not put numbers on the x axis.

/Noynum

Does not put numbers on the y axis.

/Xlinear

Draws a linear x axis.

/Ylinear

Draws a linear y axis.

/Yvertical

Draws the numbers vertically on the y axis.

/Xnum

Draws numbers on the x axis.

/Ynum

Draws numbers on the y axis.

Colour (Colour)

Defines the colour of the axis.

Size (Real)

Defines the size of the numbers.

Font (Font)

Defines the font, $Normal, $Roman, $Italic, $Script.

Line_thickness (Real)

Defines the thickness of the axis.

Line_type (LineStyle)

Defines the line_type of the axes, $Full, $Dash, $Dot-Dash, $Dot.

RESULT = (OneDAxes)

This returns all of the properties of the newly created axes.

Axes/Alter

Alters a specified axes, the parameter object MUST be specified.

Parameters:

/Xlog

Draws a logarithmic x axis.

/Ylog

Draws a logarithmic y axis.

/Yhoriz

Labels the numbers horizontally on the y axis..

/Noxnum

Does not put numbers on the x axis.

/Noynum

Does not put numbers on the y axis.

/Xlinear

Draws a linear x axis.

/Ylinear

Draws a linear y axis.

/Yvertical

Draws the numbers vertically on the y axis.

/Xnum

Draws numbers on the x axis.

/Ynum

Draws numbers on the y axis.

Colour (Colour)

Defines the colour of the axis.

Size (Real)

Defines the size of the numbers.

Font (Font)

Defines the font, $Normal, $Roman, $Italic, $Script.

Line_thickness (Real)

Defines the thickness of the axis.

Line_type (LineStyle)

Defines the line_type of the axes, $Full, $Dash, $Dot-Dash, $Dot.

Object (Gobject)

Shows which axes is to be altered.

RESULT = (OneDAxes)

This returns all of the properties of the altered axes