LearnOpenGL

Translation in progress of learnopengl.com.
git clone https://git.mtkn.jp/LearnOpenGL
Log | Files | Refs

Review.html (10713B)


      1     <h1 id="content-title">Review</h1>
      2     <h1 id="content-title">まとめ</h1>
      3 <h1 id="content-url" style='display:none;'>Getting-started/Review</h1>
      4 <p>
      5   Congratulations on reaching the end of the <em>Getting started</em> chapters. By now you should be able to create a window, create and compile shaders, send vertex data to your shaders via buffer objects or uniforms, draw objects, use textures, understand vectors and matrices and combine all that knowledge to create a full 3D scene with a camera to play around with.
      6 おめでとうございます。これにて<em>入門</em>の節は完了です。ここまで読んだ方はウィンドウを作成し、シェーダーを作成及びコンパイルし、バッファオブジェクトやユニフォームを通して頂点のデータをシェーダーに送信し、物体を描画し、テクスチャを利用し、ベクトルや行列を理解しそれらを組み合わせて3次元の世界をカメラと共に作成することができるようになりました。
      7 </p>
      8 
      9 <p>
     10   Phew, there is a lot that we learned these last few chapters. Try to play around with what you learned, experiment a bit or come up with your own ideas and solutions to some of the problems. As soon as you feel you got the hang of all the materials we've discussed it's time to move on to the <a href="https://learnopengl.com/Lighting/Colors" target="_blank">next</a> Lighting chapters.
     11   ここまで多くのことを学びました。学んだことを確認、実験し、あるいは各自のアイデアを試し、ぶつかった問題を解決して下さい。この節で学んだことを自分の物にできたら、<a href="https://learnopengl.com/Lighting/Colors" target="_blank">次</a>の照明の節に進みましょう。
     12 </p>
     13 
     14 <h2>Glossary</h2>
     15 <h2>用語集</h2>
     16 <p>
     17   <ul>
     18     <li><code>OpenGL</code>: a formal specification of a graphics API that defines the layout and output of each function. </li>
     19     <li><code>OpenGL</code>: グラフィックAPIの正式な仕様。各関数の入出力を定義したもの。</li>
     20     <li><code>GLAD</code>: an extension loading library that loads and sets all OpenGL's function pointers for us so we can use all (modern) OpenGL's functions.   </li>
     21     <li><code>GLAD</code>: 拡張機能を読み込むライブラリ。OpenGLの関数のポイタを設定し、それらを利用可能な状態にするもの。</li>
     22     <li><code>Viewport</code>: the 2D window region where we render to.  </li>
     23     <li><code>可視領域(Viewport)</code>: 映像を描画するウィンドウの2次元領域。</li>
     24     <li><code>Graphics Pipeline</code>: the entire process vertices have to walk through before ending up as one or more pixels on the screen.  </li>
     25     <li><code>グラフィックパイプライン(Graphics Pipeline)</code>: 頂点データが画面上のピクセルに変換されるまでに行われる処理。</li>
     26     <li><code>Shader</code>: a small program that runs on the graphics card. Several stages of the graphics pipeline can use user-made shaders to replace existing functionality.</li>
     27     <li><code>シェーダ(Shader)</code>: グラフィックカード上で実行される小さなプログラム。グラフィックパイプライン上のいくつかの処理はユーザーが独自に作成したシェーダにより置き換えることが出来る。</li>
     28     <li><code>Vertex</code>: a collection of data that represent a single point. </li>
     29     <li><code>頂点(Vertex)</code>: 点を表わすデータの集合。</li>
     30     <li><code>Normalized Device Coordinates</code>: the coordinate system your vertices end up in after perspective division is performed on clip coordinates. All vertex positions in NDC between <code>-1.0</code> and <code>1.0</code> will not be discarded or clipped and end up visible. </li>
     31 	<li><code>正規化デバイス座標(Normalized Device Coordinates)</code>: クリップ座標における透視除算の後に頂点が納まるべき座標系。各要素が<code>-1.0</code>と<code>1.0</code>の間にあれば切り落されずに残り、画面上に表示される。</li>
     32     <li><code>Vertex Buffer Object</code>: a buffer object that allocates memory on the GPU and stores all the vertex data there for the graphics card to use.  </li>
     33     <li><code>頂点バッファオブジェクト(Vertex Buffer Object)</code>: GPU上のメモリを確保しそこに頂点データを保存するバッファオブジェクト。</li>
     34     <li><code>Vertex Array Object</code>: stores buffer and vertex attribute state information.</li>
     35     <li><code>頂点配列オブジェクト(Vertex Array Object)</code>: バッファと頂点属性の状態を保存する。</li>
     36     <li><code>Element Buffer Object</code>: a buffer object that stores indices on the GPU for indexed drawing. </li>
     37 	<li><code>要素バッファオブジェクト(Element Buffer Object)</code>: インデックスによる描画に利用するインデックスをGPUに保存するバッファオブジェクト。</li>
     38     <li><code>Uniform</code>: a special type of GLSL variable that is global (each shader in a shader program can access this uniform variable) and only has to be set once.   </li>
     39     <li><code>ユニフォーム(Uniform)</code>: GLSLの特別な変数。大域的(シェーダープログラム中の各シェーダーからこの変数にアクセスできる)で一度値が決まれば変更できない。</li>
     40     <li><code>Texture</code>: a special type of image used in shaders and usually wrapped around objects, giving the illusion an object is extremely detailed.  </li>
     41     <li><code>テクスチャ(Texture)</code>: シェーダーで利用される画像。通常物体に貼り付けられその物体を微細に描くために用いられる。</li>
     42     <li><code>Texture Wrapping</code>: defines the mode that specifies how OpenGL should sample  textures when texture coordinates are outside the range: (<code>0</code>, <code>1</code>).  </li>
     43 	<li><code>テクスチャの繰り返し(Texture Wrapping)</code>: <code>0</code>と<code>1</code>の外のテクスチャ座標においてOpenGLがどのようにテクスチャをサンプリングするかを定める。</li>
     44     <li><code>Texture Filtering</code>: defines the mode that specifies how OpenGL should sample the texture when there are several texels (texture pixels) to choose from. This usually occurs when a texture is magnified.  </li>
     45     <li><code>テクスチャフィルタリング(Texture Filtering)</code>: テクスチャのピクセルであるテクセルが複数ある場合にどのようにサンプリングするかを定める。テクスチャが拡大される時に利用される。</li>
     46     <li><code>Mipmaps</code>: stored smaller versions of a texture where the appropriate sized version is chosen based on the distance to the viewer. </li>
     47     <li><code>ミップマップ(Mipmaps)</code>: テクスチャを縮小したものを保存。カメラからの距離に応じて適切なサイズのテクスチャを選ぶために利用。</li>
     48     <li><code>stb_image</code>: image loading library.  </li>
     49     <li><code>stb_image</code>: 画像を読み込むためのライブラリ。</li>
     50     <li><code>Texture Units)</code>: allows for multiple textures on a single shader program by binding multiple textures, each to a different texture unit.  </li>
     51     <li><code>テクスチャユニット(Texture Units)</code>: 単一のシェーダープログラムに対して複数のテクスチャを紐付けるためのもの。それぞれのテクスチャをそれぞれのテクスチャユニットに割り当てる。</li>
     52 	<li><code>Vector</code>: a mathematical entity that defines directions and/or positions in any dimension. </li>
     53 	<li><code>ベクトル(Vector)</code>: 任意の次元の空間において方向や位置を定める数学の道具。</li>
     54     <li><code>Matrix</code>: a rectangular array of mathematical expressions with useful transformation properties.  </li>
     55     <li><code>行列(Matrix)</code>: 数式を四角に並べたもの。座標変換において便利。</li>
     56     <li><code>GLM</code>: a mathematics library tailored for OpenGL.  </li>
     57 	<li><code>GLM</code>: OpenGLに特化した数学ライブラリ。</li>
     58     <li><code>Local Space</code>: the space an object begins in. All coordinates relative to an object's origin.  </li>
     59     <li><code>局所空間(Local Space)</code>: 各物体に固有の座標空間。</li>
     60     <li><code>World Space</code>: all coordinates relative to a global origin.  </li>
     61     <li><code>大域空間(World Space)</code>: 大域的な原点に相対的な座標。</li>
     62     <li><code>View Space</code>: all coordinates as viewed from a camera's perspective.  </li>
     63     <li><code>視野空間(View Space)</code>: カメラから見た座標。</li>
     64     <li><code>Clip Space</code>: all coordinates as viewed from the camera's perspective but with projection applied. This is the space the vertex coordinates should end up in, as output of the vertex shader. OpenGL does the rest (clipping/perspective division).  </li>
     65     <li><code>クリップ空間(Clip Space)</code>: カメラから見た座標を投影したもの。頂点座標は最終的にこの座標に変換されシェーダーからの出力となる。この後OpenGLがクリッピングと透視除算を行う。</li>
     66 	<li><code>Screen Space</code>: all coordinates as viewed from the screen. Coordinates range from <code>0</code> to screen width/height.  </li>
     67 	<li><code>スクリーン空間(Screen Space)</code>: スクリーンから見た座標。座標は<code>0</code>とスクリーンの幅、高さの間。</li>
     68     <li><code>LookAt</code>: a special type of view matrix  that creates a coordinate system where all coordinates are rotated and translated in such a way that the user is looking at a given target from a given position.  </li>
     69     <li><code>視点行列(LookAt)</code>: 視野行列のひとつ。与えられた場所から与えられた位置を見つめるように座標変換するもの。</li>
     70 	<li><code>Euler Angles</code>: defined as <code>yaw</code>, <code>pitch</code> and <code>roll</code> that allow us to form any 3D direction vector from these 3 values.  </li>      
     71 	<li><code>オイラー角(Euler Angles)</code>: <code>yaw</code>(方位角)、<code>pitch</code>(仰角)、<code>roll</code>(傾斜角)によって3次元空間のあらゆる方向を定める。</li>
     72   </ul>
     73 </p>       
     74 
     75     </div>
     76 </body>
     77 </html>