File: color.dem.sce

package info (click to toggle)
scilab 5.2.2-9
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 334,832 kB
  • ctags: 52,586
  • sloc: xml: 526,945; ansic: 223,590; fortran: 163,080; java: 56,934; cpp: 33,840; tcl: 27,936; sh: 20,397; makefile: 9,908; ml: 9,451; perl: 1,323; cs: 614; lisp: 30
file content (25 lines) | stat: -rw-r--r-- 783 bytes parent folder | download
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
//
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) ????-2008 - INRIA
//
// This file is distributed under the same license as the Scilab package.
//

tkpath = get_absolute_file_path("color.dem.sce");

lines(0);
RGB=[];
RGB1=[0 0 0];
TCL_SetVar('rgb',tkpath+'rgb.txt');
TCL_EvalFile(tkpath+'tcolor')
while %t //wait for toplevel to disapear
  if or(RGB<>RGB1) then disp(RGB);RGB1=RGB;end
  TCL_EvalStr('set h [winfo exists .foo]');
  if TCL_GetVar("h")=='0' then break,end
  sleep(1);
end

TCL_UnsetVar('label1');TCL_UnsetVar('label2');TCL_UnsetVar('label3');
TCL_UnsetVar('red');TCL_UnsetVar('green');TCL_UnsetVar('blue');
TCL_UnsetVar('colorSpace');TCL_UnsetVar('color');TCL_UnsetVar('updating');
TCL_UnsetVar('autoUpdate');TCL_UnsetVar('name');