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

« back to all changes in this revision

Viewing changes to man/eng/graphics/xarc.xml

  • 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
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
 
2
<!DOCTYPE MAN SYSTEM "../../manrev.dtd">
 
3
<MAN>
 
4
  <LANGUAGE>eng</LANGUAGE>
 
5
  <TITLE>xarc</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="xarc"> draw a part of an ellipse</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>xarc(x,y,w,h,a1,a2)  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
    <PARAM_INDENT>
 
14
      <PARAM_ITEM>
 
15
        <PARAM_NAME>x,y,w,h</PARAM_NAME>
 
16
        <PARAM_DESCRIPTION>
 
17
          <SP>: four real values defining a rectangle.</SP>
 
18
        </PARAM_DESCRIPTION>
 
19
      </PARAM_ITEM>
 
20
      <PARAM_ITEM>
 
21
        <PARAM_NAME>a1,a2</PARAM_NAME>
 
22
        <PARAM_DESCRIPTION>
 
23
          <SP>: real values defining a sector.</SP>
 
24
        </PARAM_DESCRIPTION>
 
25
      </PARAM_ITEM>
 
26
    </PARAM_INDENT>
 
27
  </PARAM>
 
28
  <DESCRIPTION>
 
29
    <P><VERB>xarc</VERB> draws a part of an ellipse contained in the rectangle 
 
30
    <VERB>(x,y,w,h)</VERB> (upper-left point, width, height), and in the sector 
 
31
    defined by 
 
32
    the angle <VERB>alpha1</VERB> and the angle <VERB>alpha1+alpha2</VERB>. 
 
33
    <VERB>alpha1</VERB> and <VERB>alpha2</VERB> are 
 
34
    given respectively by <VERB>a1/64</VERB> degrees and <VERB>a2/64</VERB> degrees.
 
35
    This function uses the current graphics scale and color.</P>
 
36
  </DESCRIPTION>
 
37
  <EXAMPLE>
 
38
<![CDATA[
 
39
// isoview scaling 
 
40
plot2d(0,0,-1,"031"," ",[-2,-2,2,2])
 
41
xset("color",3)
 
42
xarc(-1,1,2,2,0,90*64)
 
43
xarc(-1.5,1.5,3,3,0,360*64)
 
44
 ]]>
 
45
  </EXAMPLE>
 
46
  <SEE_ALSO>
 
47
    <SEE_ALSO_ITEM>
 
48
      <LINK>xarcs</LINK>
 
49
    </SEE_ALSO_ITEM>
 
50
    <SEE_ALSO_ITEM>
 
51
      <LINK>xfarc</LINK>
 
52
    </SEE_ALSO_ITEM>
 
53
    <SEE_ALSO_ITEM>
 
54
      <LINK>xfarcs</LINK>
 
55
    </SEE_ALSO_ITEM>
 
56
  </SEE_ALSO>
 
57
  <AUTHOR>J.Ph.C.  </AUTHOR>
 
58
</MAN>