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

« back to all changes in this revision

Viewing changes to man/eng/graphics/xfpoly.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>xfpoly</TITLE>
 
6
  <TYPE>Scilab Function</TYPE>
 
7
  <DATE>April 1993</DATE>
 
8
  <SHORT_DESCRIPTION name="xfpoly"> fill a polygon</SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
    <CALLING_SEQUENCE_ITEM>xfpoly(xv,yv,[close])  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
    <PARAM_INDENT>
 
14
      <PARAM_ITEM>
 
15
        <PARAM_NAME>xv,yv</PARAM_NAME>
 
16
        <PARAM_DESCRIPTION>
 
17
          <SP>: two vectors of same size (the points of the polygon).</SP>
 
18
        </PARAM_DESCRIPTION>
 
19
      </PARAM_ITEM>
 
20
      <PARAM_ITEM>
 
21
        <PARAM_NAME>close</PARAM_NAME>
 
22
        <PARAM_DESCRIPTION>
 
23
          <SP>: integer. If close=1, the polyline is closed; default value is 0.</SP>
 
24
        </PARAM_DESCRIPTION>
 
25
      </PARAM_ITEM>
 
26
    </PARAM_INDENT>
 
27
  </PARAM>
 
28
  <DESCRIPTION>
 
29
    <P><VERB>xfpoly</VERB> fills a polygon with the current color. 
 
30
    If <VERB>close</VERB> is equal to 1 a point is added to the polyline 
 
31
    <VERB>xv,yv</VERB> to define a polygon.</P>
 
32
  </DESCRIPTION>
 
33
  <EXAMPLE>
 
34
<![CDATA[
 
35
x=sin(2*%pi*(0:5)/5);
 
36
y=cos(2*%pi*(0:5)/5);
 
37
plot2d(0,0,-1,"010"," ",[-2,-2,2,2])
 
38
xset("color",5)
 
39
xfpoly(x,y)
 
40
xset("default")
 
41
 ]]>
 
42
  </EXAMPLE>
 
43
  <SEE_ALSO>
 
44
    <SEE_ALSO_ITEM>
 
45
      <LINK>xfpolys</LINK>
 
46
    </SEE_ALSO_ITEM>
 
47
    <SEE_ALSO_ITEM>
 
48
      <LINK>xpoly</LINK>
 
49
    </SEE_ALSO_ITEM>
 
50
    <SEE_ALSO_ITEM>
 
51
      <LINK>xpolys</LINK>
 
52
    </SEE_ALSO_ITEM>
 
53
  </SEE_ALSO>
 
54
  <AUTHOR>J.Ph.C.  </AUTHOR>
 
55
</MAN>