Display the specified curve.
display_curve();
display_curve( [ChipsId] );
display_curve( "curve_id" );
display_curve( "all" );
Depending on the argument, this command displays the current
curve, the curve indicated in a ChipsId structure or by the
curve_id, or all
curves.
-
(no argument) - the current curve is displayed.
-
ChipsId - an optional ChipsId structure containing
values to modify the currency state for the command.
-
curve_id - identification tag given to each object that
is created; use this to display a specific curve.
-
all - displays all curves.
chips> add_curve([-23,4,15],[10,8,11]);
chips> hide_curve();
chips> display_curve();
Create a curve and hide it, then display the current curve.
chips> id = ChipsId();
chips> add_curve([-4,0,4],[0,5,10], "id=diag");
chips> hide_curve("diag");
chips> add_curve([-4:4],[-4:4]^2,"id=parabola");
chips> id.curve = "diag";
chips> display_curve(id);
Two curves are created; the second curve is current after
it is created. The id.curve command sets the curve value
of the ChipsId structure to the first curve.
That curve is then displayed.
chips> add_curve([-4,0,4],[0,5,10]);
chips> add_curve([-4:4],[-4:4]^2);
chips> hide_curve("all");
chips> display_curve("all");
Two curves are created and hidden, then the display_curve
command displays them both.
- sl.chips
-
add_curve,
chipsid,
collapse_depths,
currency,
current_curve,
delete_curve,
depthcontrol,
display_depth,
get_curve,
get_default_depth,
hide_curve,
hide_depth,
make_figure,
reindex_depth,
set_curve,
set_default_depth,
shuffle_curve
|