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

« back to all changes in this revision

Viewing changes to man/graphics/isoview.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
isoview           Scilab Group           Scilab Function            isoview
 
2
NAME
 
3
   isoview - set scales for isometric plot (do not change the size of the
 
4
  window)
 
5
  
 
6
CALLING SEQUENCE
 
7
 isoview(xmin,xmax,ymin,ymax)
 
8
PARAMETERS
 
9
 xmin,xmax,ymin,ymax   : four real values
 
10
                       
 
11
DESCRIPTION
 
12
   This function is obsolete, use preferably the frameflag=4 plot2d option
 
13
  which enable window resizing.
 
14
  
 
15
   isoview is used to have isometric scales on the x and y axes.  It does
 
16
  not change the size of the graphics window. The rectangle xmin, xmax,
 
17
  ymin, ymax will be contained in the computed frame of  the graphics
 
18
  window. isoview set the current graphics scales  and can be used in
 
19
  conjunction with graphics routines which request the current graphics
 
20
  scale (for instance strf="x0z" in plot2d).
 
21
  
 
22
EXAMPLE
 
23
 t=[0:0.1:2*%pi]';
 
24
 plot2d(sin(t),cos(t))
 
25
 xbasc()
 
26
 isoview(-1,1,-1,1)
 
27
 plot2d(sin(t),cos(t),1,"001")
 
28
 xset("default")
 
29
 
 
30
 plot2d(sin(t),cos(t),frameflag=4)
 
31
SEE ALSO
 
32
   square, xsetech
 
33
  
 
34
AUTHOR
 
35
   Steer S.
 
36