blob: 5f41dca50c94b45a65290cce710baffbcfe42241 (
plain)
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
|
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) ????-2008 - INRIA
// Copyright (C) 2010 - DIGITEO - Allan CORNET
//
// This file is released under the 3-clause BSD license. See COPYING-BSD.
function demo_tclsci_scale()
tkpath = SCI + "/modules/tclsci/demos/tk/";
exec(tkpath + "/demredraw.sci");
my_handle = scf(100001);
clf(my_handle,"reset");
plot3d();
handle_demo_scale = gcf();
done = %t;
TCL_EvalFile(tkpath+"/vscale");
while %t //wait for toplevel to disapear
TCL_EvalStr("set h [winfo exists .vscale]");
if TCL_GetVar("h")=="0" | ~is_handle_valid(handle_demo_scale) then
break;
end
sleep(1)
end
endfunction
demo_tclsci_scale();
clear demo_tclsci_scale;
|