~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/graphics/help/ja_JP/3d_plot/geom3d.xml

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
11
11
 *
12
12
 -->
13
 
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" version="5.0-subset Scilab" xml:lang="ja" xml:id="geom3d">
14
 
  <refnamediv>
15
 
    <refname>geom3d</refname>
16
 
    <refpurpose>3次元プロットの後に3次元から2次元へ投影する</refpurpose>
17
 
  </refnamediv>
18
 
  <refsynopsisdiv>
19
 
    <title>呼び出し手順</title>
20
 
    <synopsis>[x,y]=geom3d(x1,y1,z1)</synopsis>
21
 
  </refsynopsisdiv>
22
 
  <refsection>
23
 
    <title>パラメータ</title>
24
 
    <variablelist>
25
 
      <varlistentry>
26
 
        <term>x1,y1,z1</term>
27
 
        <listitem>
28
 
          <para>同じ大きさの実数ベクトル (3次元の点).</para>
29
 
        </listitem>
30
 
      </varlistentry>
31
 
      <varlistentry>
32
 
        <term>x,y</term>
33
 
        <listitem>
34
 
          <para>
35
 
            <literal>x1</literal>,
36
 
            <literal>y1</literal> および <literal>z1</literal>と同じ
37
 
            大きさの実数ベクトル.
38
 
          </para>
39
 
        </listitem>
40
 
      </varlistentry>
41
 
    </variablelist>
42
 
  </refsection>
43
 
  <refsection>
44
 
    <title>説明</title>
45
 
    <para>
46
 
      <literal>geom3d</literal>は, 
47
 
      <literal>plot3d</literal>, <literal>plot3d1</literal> または <literal>param3d</literal>
48
 
      のような3次元プロット関数の後に使用され,
49
 
      3次元空間<literal>(x1(i),y1(i),z1(i))</literal>
50
 
      における点と投影された二次元平面上の対応する点<literal>(x(i),y(i))</literal>
51
 
      の間のマッピングを行ないます.
52
 
      この後,<literal>(x,y)</literal>に行う全ての2次元グラフィックプリミティブを
53
 
      この3次元プロット上への重ね合わせるために使用できます.
54
 
    </para>
55
 
  </refsection>
56
 
  <refsection>
57
 
    <title>例</title>
58
 
    <programlisting role="example"><![CDATA[ 
 
13
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" version="5.0-subset Scilab" xml:lang="ja" xml:id="geom3d">
 
14
    <refnamediv>
 
15
        <refname>geom3d</refname>
 
16
        <refpurpose>3次元プロットの後に3次元から2次元へ投影する</refpurpose>
 
17
    </refnamediv>
 
18
    <refsynopsisdiv>
 
19
        <title>呼び出し手順</title>
 
20
        <synopsis>[x,y]=geom3d(x1,y1,z1)</synopsis>
 
21
    </refsynopsisdiv>
 
22
    <refsection>
 
23
        <title>引数</title>
 
24
        <variablelist>
 
25
            <varlistentry>
 
26
                <term>x1,y1,z1</term>
 
27
                <listitem>
 
28
                    <para>同じ大きさの実数ベクトル (3次元の点).</para>
 
29
                </listitem>
 
30
            </varlistentry>
 
31
            <varlistentry>
 
32
                <term>x,y</term>
 
33
                <listitem>
 
34
                    <para>
 
35
                        <literal>x1</literal>,
 
36
                        <literal>y1</literal> および <literal>z1</literal>と同じ
 
37
                        大きさの実数ベクトル.
 
38
                    </para>
 
39
                </listitem>
 
40
            </varlistentry>
 
41
        </variablelist>
 
42
    </refsection>
 
43
    <refsection>
 
44
        <title>説明</title>
 
45
        <para>
 
46
            <literal>geom3d</literal>は, 
 
47
            <literal>plot3d</literal>, <literal>plot3d1</literal> または <literal>param3d</literal>
 
48
            のような3次元プロット関数の後に使用され,
 
49
            3次元空間<literal>(x1(i),y1(i),z1(i))</literal>
 
50
            における点と投影された二次元平面上の対応する点<literal>(x(i),y(i))</literal>
 
51
            の間のマッピングを行ないます.
 
52
            この後,<literal>(x,y)</literal>に行う全ての2次元グラフィックプリミティブを
 
53
            この3次元プロット上への重ね合わせるために使用できます.
 
54
        </para>
 
55
    </refsection>
 
56
    <refsection>
 
57
        <title>例</title>
 
58
        <scilab:image>deff("[z]=surface(x,y)","z=sin(x)*cos(y)")
 
59
            t=%pi*(-10:10)/10;
 
60
            // 曲面の3次元プロット
 
61
            fplot3d(t,t,surface,35,45,"X@Y@Z")
 
62
            // ここで, (t,t,sin(t).*cos(t))は曲面上の曲線で,
 
63
            // geom3d および xpolyにより描画される
 
64
            [x,y]=geom3d(%pi/2,0,surface(%pi/2,0))
 
65
        </scilab:image>
 
66
    </refsection>
 
67
    <refsection>
 
68
        <title>例</title>
 
69
        <programlisting role="example"><![CDATA[ 
59
70
deff("[z]=surface(x,y)","z=sin(x)*cos(y)")
60
71
t=%pi*(-10:10)/10;
61
72
// 曲面の3次元プロット
64
75
// geom3d および xpolyにより描画される
65
76
[x,y]=geom3d(%pi/2,0,surface(%pi/2,0))
66
77
 ]]></programlisting>
67
 
  </refsection>
 
78
    </refsection>
68
79
</refentry>