~ubuntu-branches/ubuntu/hoary/scilab/hoary

« back to all changes in this revision

Viewing changes to macros/scicos/drawobjs.sci

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2005-01-09 22:58:21 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050109225821-473xr8vhgugxxx5j
Tags: 3.0-12
changed configure.in to build scilab's own malloc.o, closes: #255869

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
function drawobjs(scs_m)
2
2
// Copyright INRIA
3
 
if type(scs_m)<>15 then return,end
4
 
nx=size(scs_m)
5
 
for i=2:nx
6
 
  drawobj(scs_m(i))
7
 
end
8
 
drawtitle(scs_m(1))
9
 
show_info(scs_m(1)(10))
10
 
 
11
 
 
12
 
 
13
 
 
14
 
 
15
 
 
16
 
 
 
3
  for i=1:lstsize(scs_m.objs)
 
4
    drawobj(scs_m.objs(i))
 
5
  end
 
6
  drawtitle(scs_m.props)
 
7
  show_info(scs_m.props.doc)
 
8
endfunction