~ubuntu-branches/ubuntu/karmic/scilab/karmic

« back to all changes in this revision

Viewing changes to man/scicos/scicos_graphics.cat

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2002-03-21 16:57:43 UTC
  • Revision ID: james.westby@ubuntu.com-20020321165743-e9mv12c1tb1plztg
Tags: upstream-2.6
ImportĀ upstreamĀ versionĀ 2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
scicos_graphics    Scilab Group    Scicos data structure    scicos_graphics
 
2
NAME
 
3
   scicos_graphics - Scicos block graphics data structure
 
4
  
 
5
DEFINITION
 
6
 graphics=list(orig,sz,flip,exprs,pin,pout,pein,peout,gr_i)
 
7
PARAMETERS
 
8
 orig : 2 x 1 vector, the coordinate of down-left point of the block
 
9
      shape.
 
10
      
 
11
 sz   : vector [w,h], where w is the width and h the height of the block
 
12
      shape.
 
13
      
 
14
 flip : boolean, the block orientation. if true the input ports are on the
 
15
      left of the box and output ports are on the right. if false  the
 
16
      input ports are on the right of the box and output ports are on the
 
17
      left.  
 
18
      
 
19
 exprs
 
20
       : column vector of strings,  contains expressions answered by the user at
 
21
      block set time.
 
22
      
 
23
 pin  : column vector of integers. If pin(k)<>0 then  kth input port is
 
24
      connected to the pin(k)<>0 block, else the port is unconnected. If no
 
25
      input port exist pin==[].
 
26
      
 
27
 pout : column vector of integers.  If pout(k)<>0 then  kth output port is
 
28
      connected to the pout(k)<>0 block, else the port is unconnected. If
 
29
      no output port exist pout==[].
 
30
      
 
31
 pein : column vector of ones. If pein(k)<>0 then  kth event input port is
 
32
      connected to the pein(k)<>0 block, else the port is unconnected. If
 
33
      no event input port exist pein==[].
 
34
      
 
35
 peout
 
36
       : column vector of integers.  If peout(k)<>0 then  kth event output port
 
37
      is connected to the epout(k)<>0 block, else the port is unconnected.
 
38
      If no event  output port exist peout==[].
 
39
      
 
40
 gr_i : column vector of strings,  contains Scilab instructions used to
 
41
      customize the block graphical aspect. This field may be set with
 
42
      "Icon" sub_menu.
 
43
      
 
44
 graphics
 
45
       : Scilab list, Scicos block graphics data structure.
 
46
      
 
47
DESCRIPTION
 
48
   Scicos block graphics data structure contains all information relative to
 
49
  graphical display of the block and to user dialogue. Fields may be fixed
 
50
  by block definition or set as a result of user dialogue or connections.  
 
51
  
 
52
SEE ALSO
 
53
   scicos,  scicos_model, scicos_main        
 
54