Function: math[listoptions], math[listoptions3d] - return assigned plot and plot3d options

Calling Sequence:

listoptions();
listoptions3d();
listoptions('defaults');
listoptions3d('defaults');

Parameters:

defaults - the name

Description:

In the first form, listoptions returns the plot options that have been previously assigned with setoptions.

In the second form, listoptions3d returns the plot options that have been previously assigned with setoptions3d.

In the last two forms, the entire contents of the tables `plots/2dDefaults` or `plots/3dDefaults` is returned.

This function is part of the math package, and so can be used only after performing the command with(math) or with(math, listoptions) or with(math, listoptions3d).

Examples:

> with(math):

> listoptions();

[Maple Math]

> plots[setoptions](axes=box, scaling=constrained);

> listoptions();

[Maple Math]

> listoptions3d();

[Maple Math]

> plots[setoptions3d](axes=box, title=`plot3d`);

> listoptions3d();

[Maple Math]

> plot3d(x*y, x=-1 .. 1, y=-1 .. 1);

See Also:

plots/setoptions , plots/setoptions3d .

Version History:

Version 1.0 - July 22, 2000