File: xdemo.dem.pos

package info (click to toggle)
scilab 2.4-1
  • links: PTS
  • area: non-free
  • in suites: potato, slink
  • size: 55,196 kB
  • ctags: 38,019
  • sloc: ansic: 231,970; fortran: 148,976; tcl: 7,099; makefile: 4,585; sh: 2,978; csh: 154; cpp: 101; asm: 39; sed: 5
file content (29 lines) | stat: -rw-r--r-- 587 bytes parent folder | download | duplicates (4)
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
mode(-1)
// Copyright INRIA
getf('SCI/demos/graphics/xdemo-1.dem');

deff('[]=xdemo(info,str)','execstr(str)');

oldln=lines()
lines(0)
deff('[]=demoex(num)',['select num,';
     'case 1 then xdemo1()';
     'case 2 then xdemo2()';
     'case 3 then xdemo3()';
     'case 4 then xdemo4()';'end']);

demolist=[
'X11 Graphics 1','xdemo1()';
'X11 Graphics 2','xdemo2()';
'X11 Graphics 3','xdemo3()';
'X11 Graphics 4','xdemo4()']

driver("Rec");
for i=1:4,
    xset("window",0)
    demoex(i)
    xbasimp([0],'xtest'+string(i),1);
    xs2fig([0],'xtest'+string(i)+'.fig');
    xbasc(0);
end