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

« back to all changes in this revision

Viewing changes to man/fr/graphics/geom3d.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>fr</LANGUAGE>
 
5
  <TITLE>geom3d  </TITLE>
 
6
  <TYPE>Scilab Function  </TYPE>
 
7
  <DATE>April 1993  </DATE>
 
8
  <SHORT_DESCRIPTION name="geom3d"> projection 3D vers 2D apr�s une instruction de dessin 3D  </SHORT_DESCRIPTION>
 
9
  <CALLING_SEQUENCE>
 
10
  <CALLING_SEQUENCE_ITEM>[x,y]=geom3d(x1,y1,z1)  </CALLING_SEQUENCE_ITEM>
 
11
  </CALLING_SEQUENCE>
 
12
  <PARAM>
 
13
 <PARAM_INDENT>
 
14
  <PARAM_ITEM>
 
15
  <PARAM_NAME>x1,y1,z1  </PARAM_NAME>
 
16
  <PARAM_DESCRIPTION>
 
17
  <SP>
 
18
    : vecteur r�els de m�me taille (points 3D).
 
19
</SP>
 
20
  </PARAM_DESCRIPTION> 
 
21
  </PARAM_ITEM>
 
22
  <PARAM_ITEM>
 
23
  <PARAM_NAME>x,y  </PARAM_NAME>
 
24
  <PARAM_DESCRIPTION>
 
25
  <SP>
 
26
    : vecteurs r�els de m�me taille que <VERB>x1</VERB>, <VERB>y1</VERB> et <VERB>z1</VERB>.
 
27
</SP>
 
28
  </PARAM_DESCRIPTION> 
 
29
  </PARAM_ITEM>
 
30
 </PARAM_INDENT>
 
31
  </PARAM>
 
32
  <DESCRIPTION>
 
33
  <P>
 
34
    Apr�s l&apos;utilisation d&apos;une instruction de dessin 3D du type <VERB>plot3d</VERB>, <VERB>plot3d1</VERB>
 
35
    ou <VERB>param3d</VERB>, <VERB>geom3d</VERB> permet de faire la correspondance
 
36
    entre un point de l&apos;espace 3D <VERB>(x1(i),y1(i),z1(i))</VERB>
 
37
    et le point correspondant <VERB>(x(i),y(i))</VERB> dans le plan projet� 2D.
 
38
    On peut ainsi utiliser les primitives graphiques avec <VERB>(x,y)</VERB> pour superposer des dessins.
 
39
  </P>
 
40
  </DESCRIPTION>
 
41
  <EXAMPLE><![CDATA[
 
42
deff("[z]=surf(x,y)","z=sin(x)*cos(y)")
 
43
t=%pi*(-10:10)/10;
 
44
// dessin 3D de la surface
 
45
fplot3d(t,t,surf,35,45,"X@Y@Z")
 
46
// maintenant (t,t,sin(t).*cos(t)) est une courbe sur la surface
 
47
// pouvant �tre dessin�e avec geom3d et xpoly
 
48
[x,y]=geom3d(t,t,sin(t).*cos(t));
 
49
xpoly(x,y,"lines")
 
50
// ajout d'un commentaire 
 
51
[x,y]=geom3d([0,0],[0,0],[5,0]);
 
52
xsegs(x,y)
 
53
xstring(x(1),y(1),"point (0,0,0)")
 
54
 ]]></EXAMPLE>
 
55
  <AUTHOR>J.Ph.C.  </AUTHOR>
 
56
</MAN>