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

« back to all changes in this revision

Viewing changes to man/graphics/xrect.cat

  • 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
 
xrect            Scilab Group            Scilab Function              xrect
2
 
NAME
3
 
   xrect - draw a rectangle
4
 
  
5
 
CALLING SEQUENCE
6
 
 xrect(x,y,w,h)
7
 
 xrect(rect) // rect =[x,y,w,h]
8
 
PARAMETERS
9
 
 x,y,w,h   : four real values defining the rectangle.
10
 
           
11
 
DESCRIPTION
12
 
   xrect draws a rectangle defined by [x,y,w,h]  (upper-left point, width,
13
 
  height) using the current scale and style.
14
 
  
15
 
EXAMPLE
16
 
 plot2d(0,0,-1,"010"," ",[-2,-2,2,2])
17
 
 xset("pattern",5)
18
 
 xrect(-1,1,2,2)
19
 
 xset("default")
20
 
SEE ALSO
21
 
   xfrect, xrects
22
 
  
23
 
AUTHOR
24
 
   J.Ph.C.
25