Updated doxygen documentation

This commit is contained in:
Christophe Riccio
2011-12-07 14:50:15 +00:00
parent a3b5034d4e
commit f18ad6bf2e
389 changed files with 27429 additions and 14460 deletions

View File

@@ -2,22 +2,36 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>type_mat4x2.hpp Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<!-- Generated by Doxygen 1.7.3 -->
<div id="top">
<div id="top"><!-- do not remove this div! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectlogo"><img alt="Logo" src="logo-mini.png"></td>
<td id="projectlogo"><img alt="Logo" src="logo-mini.png"/></td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.7.5 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main&#160;Page</span></a></li>
@@ -34,7 +48,7 @@
</div>
<div class="header">
<div class="headertitle">
<h1>type_mat4x2.hpp</h1> </div>
<div class="title">type_mat4x2.hpp</div> </div>
</div>
<div class="contents">
<a href="a00119.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001
@@ -88,27 +102,27 @@
<a name="l00049"></a>00049 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt; <span class="keyword">struct </span>tmat4x4;
<a name="l00050"></a>00050
<a name="l00053"></a>00053 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00054"></a><a class="code" href="a00012.html">00054</a> <span class="keyword">struct </span><a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2</a>
<a name="l00054"></a>00054 <span class="keyword">struct </span>tmat4x2
<a name="l00055"></a>00055 {
<a name="l00056"></a>00056 <span class="keyword">enum</span> ctor{null};
<a name="l00057"></a>00057 <span class="keyword">typedef</span> T value_type;
<a name="l00058"></a>00058 <span class="keyword">typedef</span> std::size_t size_type;
<a name="l00059"></a>00059 <span class="keyword">typedef</span> <a class="code" href="a00016.html" title="The basic 2D vector type.">tvec2&lt;T&gt;</a> <a class="code" href="a00016.html" title="The basic 2D vector type.">col_type</a>;
<a name="l00060"></a>00060 <span class="keyword">typedef</span> <a class="code" href="a00018.html" title="Basic 4D vector type.">tvec4&lt;T&gt;</a> <a class="code" href="a00018.html" title="Basic 4D vector type.">row_type</a>;
<a name="l00059"></a>00059 <span class="keyword">typedef</span> tvec2&lt;T&gt; col_type;
<a name="l00060"></a>00060 <span class="keyword">typedef</span> tvec4&lt;T&gt; row_type;
<a name="l00061"></a>00061 GLM_FUNC_DECL size_type length() <span class="keyword">const</span>;
<a name="l00062"></a>00062 <span class="keyword">static</span> GLM_FUNC_DECL size_type col_size();
<a name="l00063"></a>00063 <span class="keyword">static</span> GLM_FUNC_DECL size_type row_size();
<a name="l00064"></a>00064
<a name="l00065"></a>00065 <span class="keyword">typedef</span> <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">type</a>;
<a name="l00066"></a>00066 <span class="keyword">typedef</span> <a class="code" href="a00008.html" title="Template for 2 columns and 4 rows matrix of floating-point numbers.">tmat2x4&lt;T&gt;</a> <a class="code" href="a00008.html" title="Template for 2 columns and 4 rows matrix of floating-point numbers.">transpose_type</a>;
<a name="l00065"></a>00065 <span class="keyword">typedef</span> tmat4x2&lt;T&gt; type;
<a name="l00066"></a>00066 <span class="keyword">typedef</span> tmat2x4&lt;T&gt; transpose_type;
<a name="l00067"></a>00067
<a name="l00068"></a>00068 <span class="keyword">private</span>:
<a name="l00069"></a>00069 <span class="comment">// Data </span>
<a name="l00070"></a>00070 <a class="code" href="a00016.html" title="The basic 2D vector type.">col_type</a> value[4];
<a name="l00070"></a>00070 col_type value[4];
<a name="l00071"></a>00071
<a name="l00072"></a>00072 <span class="keyword">public</span>:
<a name="l00073"></a>00073 <span class="comment">// Constructors</span>
<a name="l00074"></a>00074 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2</a>();
<a name="l00074"></a>00074 GLM_FUNC_DECL tmat4x2();
<a name="l00075"></a>00075 GLM_FUNC_DECL tmat4x2(tmat4x2 <span class="keyword">const</span> &amp; m);
<a name="l00076"></a>00076
<a name="l00077"></a>00077 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(
@@ -121,10 +135,10 @@
<a name="l00084"></a>00084 value_type <span class="keyword">const</span> &amp; x2, value_type <span class="keyword">const</span> &amp; y2,
<a name="l00085"></a>00085 value_type <span class="keyword">const</span> &amp; x3, value_type <span class="keyword">const</span> &amp; y3);
<a name="l00086"></a>00086 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(
<a name="l00087"></a>00087 <a class="code" href="a00016.html" title="The basic 2D vector type.">col_type</a> <span class="keyword">const</span> &amp; v0,
<a name="l00088"></a>00088 <a class="code" href="a00016.html" title="The basic 2D vector type.">col_type</a> <span class="keyword">const</span> &amp; v1,
<a name="l00089"></a>00089 <a class="code" href="a00016.html" title="The basic 2D vector type.">col_type</a> <span class="keyword">const</span> &amp; v2,
<a name="l00090"></a>00090 <a class="code" href="a00016.html" title="The basic 2D vector type.">col_type</a> <span class="keyword">const</span> &amp; v3);
<a name="l00087"></a>00087 col_type <span class="keyword">const</span> &amp; v0,
<a name="l00088"></a>00088 col_type <span class="keyword">const</span> &amp; v1,
<a name="l00089"></a>00089 col_type <span class="keyword">const</span> &amp; v2,
<a name="l00090"></a>00090 col_type <span class="keyword">const</span> &amp; v3);
<a name="l00091"></a>00091
<a name="l00093"></a>00093 <span class="comment">// Conversions</span>
<a name="l00094"></a>00094 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;
@@ -146,139 +160,139 @@
<a name="l00110"></a>00110
<a name="l00111"></a>00111 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> V1, <span class="keyword">typename</span> V2, <span class="keyword">typename</span> V3, <span class="keyword">typename</span> V4&gt;
<a name="l00112"></a>00112 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(
<a name="l00113"></a>00113 <a class="code" href="a00016.html" title="The basic 2D vector type.">tvec2&lt;V1&gt;</a> <span class="keyword">const</span> &amp; v1,
<a name="l00114"></a>00114 <a class="code" href="a00016.html" title="The basic 2D vector type.">tvec2&lt;V2&gt;</a> <span class="keyword">const</span> &amp; v2,
<a name="l00115"></a>00115 <a class="code" href="a00016.html" title="The basic 2D vector type.">tvec2&lt;V3&gt;</a> <span class="keyword">const</span> &amp; v3,
<a name="l00116"></a>00116 <a class="code" href="a00016.html" title="The basic 2D vector type.">tvec2&lt;V4&gt;</a> <span class="keyword">const</span> &amp; v4);
<a name="l00113"></a>00113 tvec2&lt;V1&gt; <span class="keyword">const</span> &amp; v1,
<a name="l00114"></a>00114 tvec2&lt;V2&gt; <span class="keyword">const</span> &amp; v2,
<a name="l00115"></a>00115 tvec2&lt;V3&gt; <span class="keyword">const</span> &amp; v3,
<a name="l00116"></a>00116 tvec2&lt;V4&gt; <span class="keyword">const</span> &amp; v4);
<a name="l00117"></a>00117
<a name="l00118"></a>00118 <span class="comment">// Matrix conversions</span>
<a name="l00119"></a>00119 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;
<a name="l00120"></a>00120 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(<a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;U&gt;</a> <span class="keyword">const</span> &amp; m);
<a name="l00120"></a>00120 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(tmat4x2&lt;U&gt; <span class="keyword">const</span> &amp; m);
<a name="l00121"></a>00121
<a name="l00122"></a>00122 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(<a class="code" href="a00006.html" title="Template for 2 * 2 matrix of floating-point numbers.">tmat2x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; x);
<a name="l00123"></a>00123 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(<a class="code" href="a00010.html" title="Template for 3 * 3 matrix of floating-point numbers.">tmat3x3&lt;T&gt;</a> <span class="keyword">const</span> &amp; x);
<a name="l00124"></a>00124 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(<a class="code" href="a00014.html" title="Template for 4 * 4 matrix of floating-point numbers.">tmat4x4&lt;T&gt;</a> <span class="keyword">const</span> &amp; x);
<a name="l00125"></a>00125 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(<a class="code" href="a00007.html" title="Template for 2 columns and 3 rows matrix of floating-point numbers.">tmat2x3&lt;T&gt;</a> <span class="keyword">const</span> &amp; x);
<a name="l00126"></a>00126 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(<a class="code" href="a00009.html" title="Template for 3 columns and 2 rows matrix of floating-point numbers.">tmat3x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; x);
<a name="l00127"></a>00127 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(<a class="code" href="a00008.html" title="Template for 2 columns and 4 rows matrix of floating-point numbers.">tmat2x4&lt;T&gt;</a> <span class="keyword">const</span> &amp; x);
<a name="l00128"></a>00128 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(<a class="code" href="a00013.html" title="Template for 4 columns and 3 rows matrix of floating-point numbers.">tmat4x3&lt;T&gt;</a> <span class="keyword">const</span> &amp; x);
<a name="l00129"></a>00129 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(<a class="code" href="a00011.html" title="Template for 3 columns and 4 rows matrix of floating-point numbers.">tmat3x4&lt;T&gt;</a> <span class="keyword">const</span> &amp; x);
<a name="l00122"></a>00122 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(tmat2x2&lt;T&gt; <span class="keyword">const</span> &amp; x);
<a name="l00123"></a>00123 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(tmat3x3&lt;T&gt; <span class="keyword">const</span> &amp; x);
<a name="l00124"></a>00124 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(tmat4x4&lt;T&gt; <span class="keyword">const</span> &amp; x);
<a name="l00125"></a>00125 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(tmat2x3&lt;T&gt; <span class="keyword">const</span> &amp; x);
<a name="l00126"></a>00126 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(tmat3x2&lt;T&gt; <span class="keyword">const</span> &amp; x);
<a name="l00127"></a>00127 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(tmat2x4&lt;T&gt; <span class="keyword">const</span> &amp; x);
<a name="l00128"></a>00128 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(tmat4x3&lt;T&gt; <span class="keyword">const</span> &amp; x);
<a name="l00129"></a>00129 GLM_FUNC_DECL <span class="keyword">explicit</span> tmat4x2(tmat3x4&lt;T&gt; <span class="keyword">const</span> &amp; x);
<a name="l00130"></a>00130
<a name="l00131"></a>00131 <span class="comment">// Accesses</span>
<a name="l00132"></a>00132 GLM_FUNC_DECL <a class="code" href="a00016.html" title="The basic 2D vector type.">col_type</a> &amp; operator[](size_type i);
<a name="l00133"></a>00133 GLM_FUNC_DECL <a class="code" href="a00016.html" title="The basic 2D vector type.">col_type</a> <span class="keyword">const</span> &amp; operator[](size_type i) <span class="keyword">const</span>;
<a name="l00132"></a>00132 GLM_FUNC_DECL col_type &amp; operator[](size_type i);
<a name="l00133"></a>00133 GLM_FUNC_DECL col_type <span class="keyword">const</span> &amp; operator[](size_type i) <span class="keyword">const</span>;
<a name="l00134"></a>00134
<a name="l00135"></a>00135 <span class="comment">// Unary updatable operators</span>
<a name="l00136"></a>00136 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator= (<a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m);
<a name="l00136"></a>00136 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator= (tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m);
<a name="l00137"></a>00137 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;
<a name="l00138"></a>00138 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator= (<a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;U&gt;</a> <span class="keyword">const</span> &amp; m);
<a name="l00138"></a>00138 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator= (tmat4x2&lt;U&gt; <span class="keyword">const</span> &amp; m);
<a name="l00139"></a>00139 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;
<a name="l00140"></a>00140 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator+= (U <span class="keyword">const</span> &amp; s);
<a name="l00140"></a>00140 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator+= (U <span class="keyword">const</span> &amp; s);
<a name="l00141"></a>00141 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;
<a name="l00142"></a>00142 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator+= (<a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;U&gt;</a> <span class="keyword">const</span> &amp; m);
<a name="l00142"></a>00142 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator+= (tmat4x2&lt;U&gt; <span class="keyword">const</span> &amp; m);
<a name="l00143"></a>00143 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;
<a name="l00144"></a>00144 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator-= (U <span class="keyword">const</span> &amp; s);
<a name="l00144"></a>00144 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator-= (U <span class="keyword">const</span> &amp; s);
<a name="l00145"></a>00145 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;
<a name="l00146"></a>00146 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator-= (<a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;U&gt;</a> <span class="keyword">const</span> &amp; m);
<a name="l00146"></a>00146 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator-= (tmat4x2&lt;U&gt; <span class="keyword">const</span> &amp; m);
<a name="l00147"></a>00147 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;
<a name="l00148"></a>00148 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator*= (U <span class="keyword">const</span> &amp; s);
<a name="l00148"></a>00148 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator*= (U <span class="keyword">const</span> &amp; s);
<a name="l00149"></a>00149 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;
<a name="l00150"></a>00150 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator*= (<a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;U&gt;</a> <span class="keyword">const</span> &amp; m);
<a name="l00150"></a>00150 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator*= (tmat4x2&lt;U&gt; <span class="keyword">const</span> &amp; m);
<a name="l00151"></a>00151 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;
<a name="l00152"></a>00152 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator/= (U <span class="keyword">const</span> &amp; s);
<a name="l00152"></a>00152 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator/= (U <span class="keyword">const</span> &amp; s);
<a name="l00153"></a>00153
<a name="l00154"></a>00154 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator++ ();
<a name="l00155"></a>00155 GLM_FUNC_DECL <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a>&amp; operator-- ();
<a name="l00154"></a>00154 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator++ ();
<a name="l00155"></a>00155 GLM_FUNC_DECL tmat4x2&lt;T&gt;&amp; operator-- ();
<a name="l00156"></a>00156 };
<a name="l00157"></a>00157
<a name="l00158"></a>00158 <span class="comment">// Binary operators</span>
<a name="l00159"></a>00159 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00160"></a>00160 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> operator+ (
<a name="l00161"></a>00161 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m,
<a name="l00160"></a>00160 tmat4x2&lt;T&gt; operator+ (
<a name="l00161"></a>00161 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m,
<a name="l00162"></a>00162 <span class="keyword">typename</span> tmat4x2&lt;T&gt;::value_type <span class="keyword">const</span> &amp; s);
<a name="l00163"></a>00163
<a name="l00164"></a>00164 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00165"></a>00165 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> operator+ (
<a name="l00166"></a>00166 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m1,
<a name="l00167"></a>00167 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m2);
<a name="l00165"></a>00165 tmat4x2&lt;T&gt; operator+ (
<a name="l00166"></a>00166 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m1,
<a name="l00167"></a>00167 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m2);
<a name="l00168"></a>00168
<a name="l00169"></a>00169 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00170"></a>00170 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> operator- (
<a name="l00171"></a>00171 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m,
<a name="l00170"></a>00170 tmat4x2&lt;T&gt; operator- (
<a name="l00171"></a>00171 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m,
<a name="l00172"></a>00172 <span class="keyword">typename</span> tmat4x2&lt;T&gt;::value_type <span class="keyword">const</span> &amp; s);
<a name="l00173"></a>00173
<a name="l00174"></a>00174 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00175"></a>00175 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> operator- (
<a name="l00176"></a>00176 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m1,
<a name="l00177"></a>00177 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m2);
<a name="l00175"></a>00175 tmat4x2&lt;T&gt; operator- (
<a name="l00176"></a>00176 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m1,
<a name="l00177"></a>00177 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m2);
<a name="l00178"></a>00178
<a name="l00179"></a>00179 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00180"></a>00180 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> operator* (
<a name="l00181"></a>00181 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m,
<a name="l00180"></a>00180 tmat4x2&lt;T&gt; operator* (
<a name="l00181"></a>00181 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m,
<a name="l00182"></a>00182 <span class="keyword">typename</span> tmat4x2&lt;T&gt;::value_type <span class="keyword">const</span> &amp; s);
<a name="l00183"></a>00183
<a name="l00184"></a>00184 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00185"></a>00185 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> operator* (
<a name="l00185"></a>00185 tmat4x2&lt;T&gt; operator* (
<a name="l00186"></a>00186 <span class="keyword">typename</span> tmat4x2&lt;T&gt;::value_type <span class="keyword">const</span> &amp; s,
<a name="l00187"></a>00187 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m);
<a name="l00187"></a>00187 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m);
<a name="l00188"></a>00188
<a name="l00189"></a>00189 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00190"></a>00190 <span class="keyword">typename</span> <a class="code" href="a00016.html" title="The basic 2D vector type.">tmat4x2&lt;T&gt;::col_type</a> operator* (
<a name="l00191"></a>00191 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m,
<a name="l00192"></a>00192 <span class="keyword">typename</span> <a class="code" href="a00018.html" title="Basic 4D vector type.">tmat4x2&lt;T&gt;::row_type</a> <span class="keyword">const</span> &amp; v);
<a name="l00190"></a>00190 <span class="keyword">typename</span> tmat4x2&lt;T&gt;::col_type operator* (
<a name="l00191"></a>00191 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m,
<a name="l00192"></a>00192 <span class="keyword">typename</span> tmat4x2&lt;T&gt;::row_type <span class="keyword">const</span> &amp; v);
<a name="l00193"></a>00193
<a name="l00194"></a>00194 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00195"></a>00195 <span class="keyword">typename</span> <a class="code" href="a00018.html" title="Basic 4D vector type.">tmat4x2&lt;T&gt;::row_type</a> operator* (
<a name="l00196"></a>00196 <span class="keyword">typename</span> <a class="code" href="a00016.html" title="The basic 2D vector type.">tmat4x2&lt;T&gt;::col_type</a> <span class="keyword">const</span> &amp; v,
<a name="l00197"></a>00197 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m);
<a name="l00195"></a>00195 <span class="keyword">typename</span> tmat4x2&lt;T&gt;::row_type operator* (
<a name="l00196"></a>00196 <span class="keyword">typename</span> tmat4x2&lt;T&gt;::col_type <span class="keyword">const</span> &amp; v,
<a name="l00197"></a>00197 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m);
<a name="l00198"></a>00198
<a name="l00199"></a>00199 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00200"></a>00200 <a class="code" href="a00009.html" title="Template for 3 columns and 2 rows matrix of floating-point numbers.">tmat3x2&lt;T&gt;</a> operator* (
<a name="l00201"></a>00201 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m1,
<a name="l00202"></a>00202 <a class="code" href="a00011.html" title="Template for 3 columns and 4 rows matrix of floating-point numbers.">tmat3x4&lt;T&gt;</a> <span class="keyword">const</span> &amp; m2);
<a name="l00200"></a>00200 tmat3x2&lt;T&gt; operator* (
<a name="l00201"></a>00201 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m1,
<a name="l00202"></a>00202 tmat3x4&lt;T&gt; <span class="keyword">const</span> &amp; m2);
<a name="l00203"></a>00203
<a name="l00204"></a>00204 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00205"></a>00205 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> operator* (
<a name="l00206"></a>00206 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m1,
<a name="l00207"></a>00207 <a class="code" href="a00014.html" title="Template for 4 * 4 matrix of floating-point numbers.">tmat4x4&lt;T&gt;</a> <span class="keyword">const</span> &amp; m2);
<a name="l00205"></a>00205 tmat4x2&lt;T&gt; operator* (
<a name="l00206"></a>00206 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m1,
<a name="l00207"></a>00207 tmat4x4&lt;T&gt; <span class="keyword">const</span> &amp; m2);
<a name="l00208"></a>00208
<a name="l00209"></a>00209 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00210"></a>00210 <a class="code" href="a00007.html" title="Template for 2 columns and 3 rows matrix of floating-point numbers.">tmat2x3&lt;T&gt;</a> operator* (
<a name="l00211"></a>00211 <a class="code" href="a00013.html" title="Template for 4 columns and 3 rows matrix of floating-point numbers.">tmat4x3&lt;T&gt;</a> <span class="keyword">const</span> &amp; m1,
<a name="l00212"></a>00212 <a class="code" href="a00008.html" title="Template for 2 columns and 4 rows matrix of floating-point numbers.">tmat2x4&lt;T&gt;</a> <span class="keyword">const</span> &amp; m2);
<a name="l00210"></a>00210 tmat2x3&lt;T&gt; operator* (
<a name="l00211"></a>00211 tmat4x3&lt;T&gt; <span class="keyword">const</span> &amp; m1,
<a name="l00212"></a>00212 tmat2x4&lt;T&gt; <span class="keyword">const</span> &amp; m2);
<a name="l00213"></a>00213
<a name="l00214"></a>00214 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00215"></a>00215 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> operator/ (
<a name="l00216"></a>00216 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m,
<a name="l00215"></a>00215 tmat4x2&lt;T&gt; operator/ (
<a name="l00216"></a>00216 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m,
<a name="l00217"></a>00217 <span class="keyword">typename</span> tmat4x2&lt;T&gt;::value_type <span class="keyword">const</span> &amp; s);
<a name="l00218"></a>00218
<a name="l00219"></a>00219 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00220"></a>00220 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> operator/ (
<a name="l00220"></a>00220 tmat4x2&lt;T&gt; operator/ (
<a name="l00221"></a>00221 <span class="keyword">typename</span> tmat4x2&lt;T&gt;::value_type <span class="keyword">const</span> &amp; s,
<a name="l00222"></a>00222 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m);
<a name="l00222"></a>00222 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m);
<a name="l00223"></a>00223
<a name="l00224"></a>00224 <span class="comment">// Unary constant operators</span>
<a name="l00225"></a>00225 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00226"></a>00226 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> operator- (
<a name="l00227"></a>00227 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m);
<a name="l00226"></a>00226 tmat4x2&lt;T&gt; <span class="keyword">const</span> operator- (
<a name="l00227"></a>00227 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m);
<a name="l00228"></a>00228
<a name="l00229"></a>00229 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00230"></a>00230 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> operator-- (
<a name="l00231"></a>00231 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m,
<a name="l00230"></a>00230 tmat4x2&lt;T&gt; <span class="keyword">const</span> operator-- (
<a name="l00231"></a>00231 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m,
<a name="l00232"></a>00232 <span class="keywordtype">int</span>);
<a name="l00233"></a>00233
<a name="l00234"></a>00234 <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;
<a name="l00235"></a>00235 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> operator++ (
<a name="l00236"></a>00236 <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">tmat4x2&lt;T&gt;</a> <span class="keyword">const</span> &amp; m,
<a name="l00235"></a>00235 tmat4x2&lt;T&gt; <span class="keyword">const</span> operator++ (
<a name="l00236"></a>00236 tmat4x2&lt;T&gt; <span class="keyword">const</span> &amp; m,
<a name="l00237"></a>00237 <span class="keywordtype">int</span>);
<a name="l00238"></a>00238
<a name="l00239"></a>00239 } <span class="comment">//namespace detail</span>
<a name="l00240"></a>00240
<a name="l00245"></a><a class="code" href="a00156.html#gac88de3260a910584e02b98f087a34502">00245</a> <span class="keyword">typedef</span> <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">detail::tmat4x2&lt;lowp_float&gt;</a> <a class="code" href="a00156.html#gac88de3260a910584e02b98f087a34502" title="4 columns of 2 components matrix of low precision floating-point numbers.">lowp_mat4x2</a>;
<a name="l00245"></a><a class="code" href="a00156.html#gac88de3260a910584e02b98f087a34502">00245</a> <span class="keyword">typedef</span> detail::tmat4x2&lt;lowp_float&gt; <a class="code" href="a00156.html#gac88de3260a910584e02b98f087a34502" title="4 columns of 2 components matrix of low precision floating-point numbers.">lowp_mat4x2</a>;
<a name="l00246"></a>00246
<a name="l00251"></a><a class="code" href="a00156.html#ga31b1d523c1dc83c0ef9cded942950666">00251</a> <span class="keyword">typedef</span> <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">detail::tmat4x2&lt;mediump_float&gt;</a> <a class="code" href="a00156.html#ga31b1d523c1dc83c0ef9cded942950666" title="4 columns of 2 components matrix of medium precision floating-point numbers.">mediump_mat4x2</a>;
<a name="l00251"></a><a class="code" href="a00156.html#ga31b1d523c1dc83c0ef9cded942950666">00251</a> <span class="keyword">typedef</span> detail::tmat4x2&lt;mediump_float&gt; <a class="code" href="a00156.html#ga31b1d523c1dc83c0ef9cded942950666" title="4 columns of 2 components matrix of medium precision floating-point numbers.">mediump_mat4x2</a>;
<a name="l00252"></a>00252
<a name="l00257"></a><a class="code" href="a00156.html#ga3178de2c189bfdda4c73d6af8017f5d3">00257</a> <span class="keyword">typedef</span> <a class="code" href="a00012.html" title="Template for 4 columns and 2 rows matrix of floating-point numbers.">detail::tmat4x2&lt;highp_float&gt;</a> <a class="code" href="a00156.html#ga3178de2c189bfdda4c73d6af8017f5d3" title="4 columns of 2 components matrix of high precision floating-point numbers.">highp_mat4x2</a>;
<a name="l00257"></a><a class="code" href="a00156.html#ga3178de2c189bfdda4c73d6af8017f5d3">00257</a> <span class="keyword">typedef</span> detail::tmat4x2&lt;highp_float&gt; <a class="code" href="a00156.html#ga3178de2c189bfdda4c73d6af8017f5d3" title="4 columns of 2 components matrix of high precision floating-point numbers.">highp_mat4x2</a>;
<a name="l00258"></a>00258
<a name="l00259"></a>00259 }<span class="comment">//namespace glm</span>
<a name="l00260"></a>00260
@@ -289,8 +303,13 @@
<a name="l00265"></a>00265 <span class="preprocessor">#endif //glm_core_type_mat4x2</span>
</pre></div></div>
</div>
<hr class="footer"/><address class="footer"><small>Generated by&#160;
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </small></address>
<hr class="footer"/><address class="footer"><small>
Generated by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.5
</small></address>
</body>
</html>