1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
.TH gr_menu 2 "April 1993" "Scilab Group" "Scilab Function"
.so ../sci.an
.SH NAME
gr_menu - simple interactive graphic editor
.SH CALLING SEQUENCE
.nf
[sd1]=gr_menu([sd,flag,no_frame])
.fi
.SH PARAMETERS
.TP 10
sd
: list (output of \fVgr_menu\fR), or vector of
length four \fV[xmin,ymin,xmax,ymax]\fR (boundaries of the plot).
.TP
sd1
: list (graphical objects created under \fVgr_menu\fR
.TP
flag,noframe
: integers with 0, 1 value. Use \fVflag=1\fR for non interactive mode
(i.e to redraw saved \fVgr_menu\fR graphics) and \fVno_frame=1\fR to
avoid a frame around \fVgr_menu\fR graphics.
.SH DESCRIPTION
\fVgr_menu\fR is a simple interactive graphic editor.
When you execute \fVgr_menu()\fR, three new menus, \fVObjects\fR,
\fVSettings\fR and \fVEdit\fR are added to the current graphics window.
Use the item \fVExit\fR of menu \fVEdit\fR to exit \fVgr_menu\fR.
The created graphics are saved as a list which
can be given to \fVgr_menu\fR as an entry value.
.TP 15
\fV[sd]=gr_menu([xmin,ymin,xmax,ymax])\fR
: enters \fVgr_menu\fR with a given frame
.TP
\fV[sd]=gr_menu();\fR
: enters \fVgr_menu\fR with the frame [0 0 100 100].
.TP
\fV[sd]=gr_menu(sd)\fR
: redraws the graphics stored in sd and enters interactive mode
.TP
\fV[sd]=gr_menu(sd,1)\fR
: only draws the graphics stored in \fVsd\fR.
.TP
\fV[sd]=gr_menu(sd,1,1)\fR
: only draws the graphics stored in \fVsd\fR and no frame is added.
.SH AUTHOR
S.S. & J.Ph.C.
|