Eule/Doxygen/build/Vector4_8h_source.html
2021-11-15 11:46:15 +01:00

228 lines
42 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.17"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Leonetienne/Eule: Eule/Vector4.h Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
extensions: ["tex2jax.js"],
jax: ["input/TeX","output/HTML-CSS"],
});
</script>
<script type="text/javascript" async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Leonetienne/Eule
</div>
<div id="projectbrief">Homemade math library, mainly targetted towards computer graphics</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.17 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&amp;dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_29a3c7679fa29c698d8a016dea7d0b26.html">Eule</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle">
<div class="title">Vector4.h</div> </div>
</div><!--header-->
<div class="contents">
<a href="Vector4_8h.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;<span class="preprocessor">#pragma once</span></div>
<div class="line"><a name="l00002"></a><span class="lineno"> 2</span>&#160;<span class="preprocessor">#include &lt;cstdlib&gt;</span></div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span>&#160;<span class="preprocessor">#include &lt;iomanip&gt;</span></div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span>&#160;<span class="preprocessor">#include &lt;ostream&gt;</span></div>
<div class="line"><a name="l00005"></a><span class="lineno"> 5</span>&#160;<span class="preprocessor">#include &lt;sstream&gt;</span></div>
<div class="line"><a name="l00006"></a><span class="lineno"> 6</span>&#160;<span class="preprocessor">#include &quot;<a class="code" href="Matrix4x4_8h.html">Matrix4x4.h</a>&quot;</span></div>
<div class="line"><a name="l00007"></a><span class="lineno"> 7</span>&#160; </div>
<div class="line"><a name="l00008"></a><span class="lineno"> 8</span>&#160;<span class="keyword">namespace </span><a class="code" href="namespaceEule.html">Eule</a></div>
<div class="line"><a name="l00009"></a><span class="lineno"> 9</span>&#160;{</div>
<div class="line"><a name="l00010"></a><span class="lineno"> 10</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt; <span class="keyword">class </span>Vector2;</div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt; <span class="keyword">class </span>Vector3;</div>
<div class="line"><a name="l00012"></a><span class="lineno"> 12</span>&#160; </div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T&gt;</div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160; <span class="keyword">class </span>Vector4</div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160; {</div>
<div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160; <span class="keyword">public</span>:</div>
<div class="line"><a name="l00020"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#ad49c5d39b5478aefea2acfe65bd59393"> 20</a></span>&#160; <a class="code" href="classEule_1_1Vector4.html#ad49c5d39b5478aefea2acfe65bd59393">Vector4</a>() : <a class="code" href="classEule_1_1Vector4.html#a6abdc466a694e39b1bf5e71dd26e9fbf">x</a>{ 0 }, <a class="code" href="classEule_1_1Vector4.html#a994773dc2da079a335f4b57153cf82c9">y</a>{ 0 }, <a class="code" href="classEule_1_1Vector4.html#acf70d20ed586c3e168f2664f643902f0">z</a>{ 0 }, <a class="code" href="classEule_1_1Vector4.html#a4b2184f91a991264ddc3dae3beadf23e">w</a>{ 0 } {}</div>
<div class="line"><a name="l00021"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#aaa8aa9abea8ad8dde3aaa2de27ac2391"> 21</a></span>&#160; <a class="code" href="classEule_1_1Vector4.html#aaa8aa9abea8ad8dde3aaa2de27ac2391">Vector4</a>(T _x, T _y, T _z, T _w) : <a class="code" href="classEule_1_1Vector4.html#a6abdc466a694e39b1bf5e71dd26e9fbf">x</a>{ _x }, <a class="code" href="classEule_1_1Vector4.html#a994773dc2da079a335f4b57153cf82c9">y</a>{ _y }, <a class="code" href="classEule_1_1Vector4.html#acf70d20ed586c3e168f2664f643902f0">z</a>{ _z }, <a class="code" href="classEule_1_1Vector4.html#a4b2184f91a991264ddc3dae3beadf23e">w</a>{ _w } {}</div>
<div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160; <a class="code" href="classEule_1_1Vector4.html#ad49c5d39b5478aefea2acfe65bd59393">Vector4</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other) = <span class="keywordflow">default</span>;</div>
<div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160; <a class="code" href="classEule_1_1Vector4.html#ad49c5d39b5478aefea2acfe65bd59393">Vector4</a>(Vector4&lt;T&gt;&amp;&amp; other) noexcept = <span class="keywordflow">default</span>;</div>
<div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160; </div>
<div class="line"><a name="l00026"></a><span class="lineno"> 26</span>&#160; <span class="keywordtype">double</span> <a class="code" href="classEule_1_1Vector4.html#a2cd0433c99303b8934993b2fd2aa1c6e">SqrMagnitude</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00027"></a><span class="lineno"> 27</span>&#160; </div>
<div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160; <span class="keywordtype">double</span> <a class="code" href="classEule_1_1Vector4.html#a35c6fccb7a02095b595575903b590dd2">Magnitude</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00030"></a><span class="lineno"> 30</span>&#160; </div>
<div class="line"><a name="l00032"></a><span class="lineno"> 32</span>&#160; [[nodiscard]] Vector4&lt;double&gt; <a class="code" href="classEule_1_1Vector4.html#a3d10b51b1fe97661650b2991b29b67a7">Normalize</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00033"></a><span class="lineno"> 33</span>&#160; </div>
<div class="line"><a name="l00035"></a><span class="lineno"> 35</span>&#160; <span class="keywordtype">void</span> <a class="code" href="classEule_1_1Vector4.html#a98bea58a58b04357044f72afc905896d">NormalizeSelf</a>();</div>
<div class="line"><a name="l00036"></a><span class="lineno"> 36</span>&#160; </div>
<div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160; [[nodiscard]] Vector4&lt;T&gt; <a class="code" href="classEule_1_1Vector4.html#ae24537cb41abb4365a22fe3b07869b85">VectorScale</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; scalar) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160; </div>
<div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160; <span class="keywordtype">void</span> <a class="code" href="classEule_1_1Vector4.html#ab4efb629829cfebcbb82b4318c3e3bb3">LerpSelf</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other, <span class="keywordtype">double</span> t);</div>
<div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160; </div>
<div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160; [[nodiscard]] Vector4&lt;double&gt; <a class="code" href="classEule_1_1Vector4.html#ae5b7ed7132d76ffbde20f24330fd4f69">Lerp</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other, <span class="keywordtype">double</span> t) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160; </div>
<div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160; [[nodiscard]] <span class="keywordtype">bool</span> <a class="code" href="classEule_1_1Vector4.html#af49ea98d369420a07158d705eab60479">Similar</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other, <span class="keywordtype">double</span> epsilon = 0.00001) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160; </div>
<div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160; [[nodiscard]] Vector4&lt;int&gt; <a class="code" href="classEule_1_1Vector4.html#a53244995fd4f19de4e740b47aec029a3">ToInt</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160; </div>
<div class="line"><a name="l00053"></a><span class="lineno"> 53</span>&#160; [[nodiscard]] Vector4&lt;double&gt; <a class="code" href="classEule_1_1Vector4.html#a267ad7bfad5ea8f6f8c001cee817c54e">ToDouble</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160; </div>
<div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160; T&amp; <a class="code" href="classEule_1_1Vector4.html#ae64012cf90d0ad436066232a741b27d5">operator[]</a>(std::size_t idx);</div>
<div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160; <span class="keyword">const</span> T&amp; <a class="code" href="classEule_1_1Vector4.html#ae64012cf90d0ad436066232a741b27d5">operator[]</a>(std::size_t idx) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00057"></a><span class="lineno"> 57</span>&#160; </div>
<div class="line"><a name="l00058"></a><span class="lineno"> 58</span>&#160; Vector4&lt;T&gt; <a class="code" href="classEule_1_1Vector4.html#a0b8b7947175218917b2683d48790a40f">operator+</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160; <span class="keywordtype">void</span> <a class="code" href="classEule_1_1Vector4.html#a54a9edbe72049b85f03827d488363d0a">operator+=</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other);</div>
<div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160; Vector4&lt;T&gt; <a class="code" href="classEule_1_1Vector4.html#a36426b12cdcdbfaa6daa35c9d3d4e9c4">operator-</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00061"></a><span class="lineno"> 61</span>&#160; <span class="keywordtype">void</span> <a class="code" href="classEule_1_1Vector4.html#aec85460804d89ed9206cc478b2f3c8ba">operator-=</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other);</div>
<div class="line"><a name="l00062"></a><span class="lineno"> 62</span>&#160; Vector4&lt;T&gt; <a class="code" href="classEule_1_1Vector4.html#af397629f4fc12f8846df9bab8d6d8bbe">operator*</a>(<span class="keyword">const</span> T scale) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00063"></a><span class="lineno"> 63</span>&#160; <span class="keywordtype">void</span> <a class="code" href="classEule_1_1Vector4.html#a2359c0ecd8b9af425df240774d5ae950">operator*=</a>(<span class="keyword">const</span> T scale);</div>
<div class="line"><a name="l00064"></a><span class="lineno"> 64</span>&#160; Vector4&lt;T&gt; <a class="code" href="classEule_1_1Vector4.html#ac952c5322209dffd5ea7bb4a9b06c52d">operator/</a>(<span class="keyword">const</span> T scale) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00065"></a><span class="lineno"> 65</span>&#160; <span class="keywordtype">void</span> <a class="code" href="classEule_1_1Vector4.html#a35680f0675813c93e1c2cd3607c1ea2e">operator/=</a>(<span class="keyword">const</span> T scale);</div>
<div class="line"><a name="l00066"></a><span class="lineno"> 66</span>&#160; Vector4&lt;T&gt; <a class="code" href="classEule_1_1Vector4.html#af397629f4fc12f8846df9bab8d6d8bbe">operator*</a>(<span class="keyword">const</span> Matrix4x4&amp; mat) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00067"></a><span class="lineno"> 67</span>&#160; <span class="keywordtype">void</span> <a class="code" href="classEule_1_1Vector4.html#a2359c0ecd8b9af425df240774d5ae950">operator*=</a>(<span class="keyword">const</span> Matrix4x4&amp; mat);</div>
<div class="line"><a name="l00068"></a><span class="lineno"> 68</span>&#160; Vector4&lt;T&gt; <a class="code" href="classEule_1_1Vector4.html#a36426b12cdcdbfaa6daa35c9d3d4e9c4">operator-</a>() <span class="keyword">const</span>;</div>
<div class="line"><a name="l00069"></a><span class="lineno"> 69</span>&#160; </div>
<div class="line"><a name="l00070"></a><span class="lineno"> 70</span>&#160; <span class="keyword">operator</span> Vector2&lt;T&gt;() <span class="keyword">const</span>; </div>
<div class="line"><a name="l00071"></a><span class="lineno"> 71</span>&#160; <span class="keyword">operator</span> Vector3&lt;T&gt;() <span class="keyword">const</span>; </div>
<div class="line"><a name="l00072"></a><span class="lineno"> 72</span>&#160; </div>
<div class="line"><a name="l00073"></a><span class="lineno"> 73</span>&#160; <span class="keywordtype">void</span> <a class="code" href="classEule_1_1Vector4.html#a7dc41444f6e3fd30a9cc256ed8414ee6">operator=</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other);</div>
<div class="line"><a name="l00074"></a><span class="lineno"> 74</span>&#160; <span class="keywordtype">void</span> <a class="code" href="classEule_1_1Vector4.html#a7dc41444f6e3fd30a9cc256ed8414ee6">operator=</a>(Vector4&lt;T&gt;&amp;&amp; other) noexcept;</div>
<div class="line"><a name="l00075"></a><span class="lineno"> 75</span>&#160; </div>
<div class="line"><a name="l00076"></a><span class="lineno"> 76</span>&#160; <span class="keywordtype">bool</span> <a class="code" href="classEule_1_1Vector4.html#ae2af40b477e41f8a42db7f80a832a1e7">operator==</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00077"></a><span class="lineno"> 77</span>&#160; <span class="keywordtype">bool</span> <a class="code" href="classEule_1_1Vector4.html#abc9e49133b73116830c953a4666e403c">operator!=</a>(<span class="keyword">const</span> Vector4&lt;T&gt;&amp; other) <span class="keyword">const</span>;</div>
<div class="line"><a name="l00078"></a><span class="lineno"> 78</span>&#160; </div>
<div class="line"><a name="l00079"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a67f776474e56594e4973be32df68602a"> 79</a></span>&#160; <span class="keyword">friend</span> std::ostream&amp; <a class="code" href="classEule_1_1Vector4.html#a67f776474e56594e4973be32df68602a">operator &lt;&lt; </a>(std::ostream&amp; os, <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;T&gt;</a>&amp; v)</div>
<div class="line"><a name="l00080"></a><span class="lineno"> 80</span>&#160; {</div>
<div class="line"><a name="l00081"></a><span class="lineno"> 81</span>&#160; <span class="keywordflow">return</span> os &lt;&lt; <span class="stringliteral">&quot;[x: &quot;</span> &lt;&lt; v.x &lt;&lt; <span class="stringliteral">&quot; y: &quot;</span> &lt;&lt; v.y &lt;&lt; <span class="stringliteral">&quot; z: &quot;</span> &lt;&lt; v.z &lt;&lt; <span class="stringliteral">&quot; w: &quot;</span> &lt;&lt; v.w &lt;&lt; <span class="stringliteral">&quot;]&quot;</span>;</div>
<div class="line"><a name="l00082"></a><span class="lineno"> 82</span>&#160; }</div>
<div class="line"><a name="l00083"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a111187ac1ffc14d4aa33d85a14645870"> 83</a></span>&#160; <span class="keyword">friend</span> std::wostream&amp; <a class="code" href="classEule_1_1Vector4.html#a67f776474e56594e4973be32df68602a">operator &lt;&lt; </a>(std::wostream&amp; os, <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;T&gt;</a>&amp; v)</div>
<div class="line"><a name="l00084"></a><span class="lineno"> 84</span>&#160; {</div>
<div class="line"><a name="l00085"></a><span class="lineno"> 85</span>&#160; <span class="keywordflow">return</span> os &lt;&lt; L<span class="stringliteral">&quot;[x: &quot;</span> &lt;&lt; v.x &lt;&lt; L<span class="stringliteral">&quot; y: &quot;</span> &lt;&lt; v.y &lt;&lt; L<span class="stringliteral">&quot; z: &quot;</span> &lt;&lt; v.z &lt;&lt; L<span class="stringliteral">&quot; w: &quot;</span> &lt;&lt; v.w &lt;&lt; L<span class="stringliteral">&quot;]&quot;</span>;</div>
<div class="line"><a name="l00086"></a><span class="lineno"> 86</span>&#160; }</div>
<div class="line"><a name="l00087"></a><span class="lineno"> 87</span>&#160; </div>
<div class="line"><a name="l00088"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a6abdc466a694e39b1bf5e71dd26e9fbf"> 88</a></span>&#160; T <a class="code" href="classEule_1_1Vector4.html#a6abdc466a694e39b1bf5e71dd26e9fbf">x</a>;</div>
<div class="line"><a name="l00089"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a994773dc2da079a335f4b57153cf82c9"> 89</a></span>&#160; T <a class="code" href="classEule_1_1Vector4.html#a994773dc2da079a335f4b57153cf82c9">y</a>;</div>
<div class="line"><a name="l00090"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#acf70d20ed586c3e168f2664f643902f0"> 90</a></span>&#160; T <a class="code" href="classEule_1_1Vector4.html#acf70d20ed586c3e168f2664f643902f0">z</a>;</div>
<div class="line"><a name="l00091"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a4b2184f91a991264ddc3dae3beadf23e"> 91</a></span>&#160; T <a class="code" href="classEule_1_1Vector4.html#a4b2184f91a991264ddc3dae3beadf23e">w</a>;</div>
<div class="line"><a name="l00092"></a><span class="lineno"> 92</span>&#160; </div>
<div class="line"><a name="l00093"></a><span class="lineno"> 93</span>&#160; <span class="comment">// Some handy predefines</span></div>
<div class="line"><a name="l00094"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a9a8c5882154587b3e34ae308466f98a5"> 94</a></span>&#160; <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="classEule_1_1Vector4.html#a9a8c5882154587b3e34ae308466f98a5">up</a>;</div>
<div class="line"><a name="l00095"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a0f00c430129cb8edfb9c96693c39ab73"> 95</a></span>&#160; <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="classEule_1_1Vector4.html#a0f00c430129cb8edfb9c96693c39ab73">down</a>;</div>
<div class="line"><a name="l00096"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a4701bae8f20522fe93575e8909478f36"> 96</a></span>&#160; <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="classEule_1_1Vector4.html#a4701bae8f20522fe93575e8909478f36">right</a>;</div>
<div class="line"><a name="l00097"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a354e05fd3b3a38b530258b3247c544d1"> 97</a></span>&#160; <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="classEule_1_1Vector4.html#a354e05fd3b3a38b530258b3247c544d1">left</a>;</div>
<div class="line"><a name="l00098"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a9ec10cf10c0edb934169211ad7fef821"> 98</a></span>&#160; <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="classEule_1_1Vector4.html#a9ec10cf10c0edb934169211ad7fef821">forward</a>;</div>
<div class="line"><a name="l00099"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a59d02244dbcd06b9d3f09da75128242e"> 99</a></span>&#160; <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="classEule_1_1Vector4.html#a59d02244dbcd06b9d3f09da75128242e">backward</a>;</div>
<div class="line"><a name="l00100"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#afefa0db0ba202f63e338506fd21a61e9"> 100</a></span>&#160; <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="classEule_1_1Vector4.html#afefa0db0ba202f63e338506fd21a61e9">future</a>;</div>
<div class="line"><a name="l00101"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a5533bb69dbc4714fd53aaf1e0db9bf99"> 101</a></span>&#160; <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="classEule_1_1Vector4.html#a5533bb69dbc4714fd53aaf1e0db9bf99">past</a>;</div>
<div class="line"><a name="l00102"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#a41087d79654271a580c8e5705825b2ed"> 102</a></span>&#160; <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="classEule_1_1Vector4.html#a41087d79654271a580c8e5705825b2ed">one</a>;</div>
<div class="line"><a name="l00103"></a><span class="lineno"><a class="line" href="classEule_1_1Vector4.html#adf801d37181ff33a920f31536337ca07"> 103</a></span>&#160; <span class="keyword">static</span> <span class="keyword">const</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="classEule_1_1Vector4.html#adf801d37181ff33a920f31536337ca07">zero</a>;</div>
<div class="line"><a name="l00104"></a><span class="lineno"> 104</span>&#160; };</div>
<div class="line"><a name="l00105"></a><span class="lineno"> 105</span>&#160; </div>
<div class="line"><a name="l00106"></a><span class="lineno"><a class="line" href="namespaceEule.html#aea48fbceb33833fc808355c9eec721bb"> 106</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;int&gt;</a> <a class="code" href="namespaceEule.html#aea48fbceb33833fc808355c9eec721bb">Vector4i</a>;</div>
<div class="line"><a name="l00107"></a><span class="lineno"><a class="line" href="namespaceEule.html#ab1f7f26891b56b960ca6cca5cc1cc44e"> 107</a></span>&#160; <span class="keyword">typedef</span> <a class="code" href="classEule_1_1Vector4.html">Vector4&lt;double&gt;</a> <a class="code" href="namespaceEule.html#ab1f7f26891b56b960ca6cca5cc1cc44e">Vector4d</a>;</div>
<div class="line"><a name="l00108"></a><span class="lineno"> 108</span>&#160;}</div>
</div><!-- fragment --></div><!-- contents -->
<div class="ttc" id="aclassEule_1_1Vector4_html_a53244995fd4f19de4e740b47aec029a3"><div class="ttname"><a href="classEule_1_1Vector4.html#a53244995fd4f19de4e740b47aec029a3">Eule::Vector4::ToInt</a></div><div class="ttdeci">Vector4&lt; int &gt; ToInt() const</div><div class="ttdoc">Will convert this vector to a Vector4i.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00173">Vector4.cpp:173</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_aaa8aa9abea8ad8dde3aaa2de27ac2391"><div class="ttname"><a href="classEule_1_1Vector4.html#aaa8aa9abea8ad8dde3aaa2de27ac2391">Eule::Vector4::Vector4</a></div><div class="ttdeci">Vector4(T _x, T _y, T _z, T _w)</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00021">Vector4.h:21</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a54a9edbe72049b85f03827d488363d0a"><div class="ttname"><a href="classEule_1_1Vector4.html#a54a9edbe72049b85f03827d488363d0a">Eule::Vector4::operator+=</a></div><div class="ttdeci">void operator+=(const Vector4&lt; T &gt; &amp;other)</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00376">Vector4.cpp:376</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_ac952c5322209dffd5ea7bb4a9b06c52d"><div class="ttname"><a href="classEule_1_1Vector4.html#ac952c5322209dffd5ea7bb4a9b06c52d">Eule::Vector4::operator/</a></div><div class="ttdeci">Vector4&lt; T &gt; operator/(const T scale) const</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00603">Vector4.cpp:603</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_af397629f4fc12f8846df9bab8d6d8bbe"><div class="ttname"><a href="classEule_1_1Vector4.html#af397629f4fc12f8846df9bab8d6d8bbe">Eule::Vector4::operator*</a></div><div class="ttdeci">Vector4&lt; T &gt; operator*(const T scale) const</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00512">Vector4.cpp:512</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a98bea58a58b04357044f72afc905896d"><div class="ttname"><a href="classEule_1_1Vector4.html#a98bea58a58b04357044f72afc905896d">Eule::Vector4::NormalizeSelf</a></div><div class="ttdeci">void NormalizeSelf()</div><div class="ttdoc">Will normalize this vector.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00148">Vector4.cpp:148</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_ad49c5d39b5478aefea2acfe65bd59393"><div class="ttname"><a href="classEule_1_1Vector4.html#ad49c5d39b5478aefea2acfe65bd59393">Eule::Vector4::Vector4</a></div><div class="ttdeci">Vector4()</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00020">Vector4.h:20</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a59d02244dbcd06b9d3f09da75128242e"><div class="ttname"><a href="classEule_1_1Vector4.html#a59d02244dbcd06b9d3f09da75128242e">Eule::Vector4::backward</a></div><div class="ttdeci">static const Vector4&lt; double &gt; backward</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00099">Vector4.h:99</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a6abdc466a694e39b1bf5e71dd26e9fbf"><div class="ttname"><a href="classEule_1_1Vector4.html#a6abdc466a694e39b1bf5e71dd26e9fbf">Eule::Vector4::x</a></div><div class="ttdeci">T x</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00088">Vector4.h:88</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a7dc41444f6e3fd30a9cc256ed8414ee6"><div class="ttname"><a href="classEule_1_1Vector4.html#a7dc41444f6e3fd30a9cc256ed8414ee6">Eule::Vector4::operator=</a></div><div class="ttdeci">void operator=(const Vector4&lt; T &gt; &amp;other)</div><div class="ttdoc">Conversion method.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00730">Vector4.cpp:730</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_aec85460804d89ed9206cc478b2f3c8ba"><div class="ttname"><a href="classEule_1_1Vector4.html#aec85460804d89ed9206cc478b2f3c8ba">Eule::Vector4::operator-=</a></div><div class="ttdeci">void operator-=(const Vector4&lt; T &gt; &amp;other)</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00466">Vector4.cpp:466</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a3d10b51b1fe97661650b2991b29b67a7"><div class="ttname"><a href="classEule_1_1Vector4.html#a3d10b51b1fe97661650b2991b29b67a7">Eule::Vector4::Normalize</a></div><div class="ttdeci">Vector4&lt; double &gt; Normalize() const</div><div class="ttdoc">Will return the normalization of this vector.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00092">Vector4.cpp:92</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_acf70d20ed586c3e168f2664f643902f0"><div class="ttname"><a href="classEule_1_1Vector4.html#acf70d20ed586c3e168f2664f643902f0">Eule::Vector4::z</a></div><div class="ttdeci">T z</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00090">Vector4.h:90</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a2359c0ecd8b9af425df240774d5ae950"><div class="ttname"><a href="classEule_1_1Vector4.html#a2359c0ecd8b9af425df240774d5ae950">Eule::Vector4::operator*=</a></div><div class="ttdeci">void operator*=(const T scale)</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00557">Vector4.cpp:557</a></div></div>
<div class="ttc" id="anamespaceEule_html_ab1f7f26891b56b960ca6cca5cc1cc44e"><div class="ttname"><a href="namespaceEule.html#ab1f7f26891b56b960ca6cca5cc1cc44e">Eule::Vector4d</a></div><div class="ttdeci">Vector4&lt; double &gt; Vector4d</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00107">Vector4.h:107</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_ae24537cb41abb4365a22fe3b07869b85"><div class="ttname"><a href="classEule_1_1Vector4.html#ae24537cb41abb4365a22fe3b07869b85">Eule::Vector4::VectorScale</a></div><div class="ttdeci">Vector4&lt; T &gt; VectorScale(const Vector4&lt; T &gt; &amp;scalar) const</div><div class="ttdoc">Will scale self.n by scalar.n.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00079">Vector4.cpp:79</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a36426b12cdcdbfaa6daa35c9d3d4e9c4"><div class="ttname"><a href="classEule_1_1Vector4.html#a36426b12cdcdbfaa6daa35c9d3d4e9c4">Eule::Vector4::operator-</a></div><div class="ttdeci">Vector4&lt; T &gt; operator-() const</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00719">Vector4.cpp:719</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_ae5b7ed7132d76ffbde20f24330fd4f69"><div class="ttname"><a href="classEule_1_1Vector4.html#ae5b7ed7132d76ffbde20f24330fd4f69">Eule::Vector4::Lerp</a></div><div class="ttdeci">Vector4&lt; double &gt; Lerp(const Vector4&lt; T &gt; &amp;other, double t) const</div><div class="ttdoc">Will return a lerp result between this and another vector.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00287">Vector4.cpp:287</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a41087d79654271a580c8e5705825b2ed"><div class="ttname"><a href="classEule_1_1Vector4.html#a41087d79654271a580c8e5705825b2ed">Eule::Vector4::one</a></div><div class="ttdeci">static const Vector4&lt; double &gt; one</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00102">Vector4.h:102</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_ab4efb629829cfebcbb82b4318c3e3bb3"><div class="ttname"><a href="classEule_1_1Vector4.html#ab4efb629829cfebcbb82b4318c3e3bb3">Eule::Vector4::LerpSelf</a></div><div class="ttdeci">void LerpSelf(const Vector4&lt; T &gt; &amp;other, double t)</div><div class="ttdoc">Will lerp itself towards other by t.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00267">Vector4.cpp:267</a></div></div>
<div class="ttc" id="aMatrix4x4_8h_html"><div class="ttname"><a href="Matrix4x4_8h.html">Matrix4x4.h</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a9ec10cf10c0edb934169211ad7fef821"><div class="ttname"><a href="classEule_1_1Vector4.html#a9ec10cf10c0edb934169211ad7fef821">Eule::Vector4::forward</a></div><div class="ttdeci">static const Vector4&lt; double &gt; forward</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00098">Vector4.h:98</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a35680f0675813c93e1c2cd3607c1ea2e"><div class="ttname"><a href="classEule_1_1Vector4.html#a35680f0675813c93e1c2cd3607c1ea2e">Eule::Vector4::operator/=</a></div><div class="ttdeci">void operator/=(const T scale)</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00647">Vector4.cpp:647</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a4b2184f91a991264ddc3dae3beadf23e"><div class="ttname"><a href="classEule_1_1Vector4.html#a4b2184f91a991264ddc3dae3beadf23e">Eule::Vector4::w</a></div><div class="ttdeci">T w</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00091">Vector4.h:91</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a0f00c430129cb8edfb9c96693c39ab73"><div class="ttname"><a href="classEule_1_1Vector4.html#a0f00c430129cb8edfb9c96693c39ab73">Eule::Vector4::down</a></div><div class="ttdeci">static const Vector4&lt; double &gt; down</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00095">Vector4.h:95</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a0b8b7947175218917b2683d48790a40f"><div class="ttname"><a href="classEule_1_1Vector4.html#a0b8b7947175218917b2683d48790a40f">Eule::Vector4::operator+</a></div><div class="ttdeci">Vector4&lt; T &gt; operator+(const Vector4&lt; T &gt; &amp;other) const</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00331">Vector4.cpp:331</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_ae64012cf90d0ad436066232a741b27d5"><div class="ttname"><a href="classEule_1_1Vector4.html#ae64012cf90d0ad436066232a741b27d5">Eule::Vector4::operator[]</a></div><div class="ttdeci">T &amp; operator[](std::size_t idx)</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00185">Vector4.cpp:185</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a267ad7bfad5ea8f6f8c001cee817c54e"><div class="ttname"><a href="classEule_1_1Vector4.html#a267ad7bfad5ea8f6f8c001cee817c54e">Eule::Vector4::ToDouble</a></div><div class="ttdeci">Vector4&lt; double &gt; ToDouble() const</div><div class="ttdoc">Will convert this vector to a Vector4d.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00179">Vector4.cpp:179</a></div></div>
<div class="ttc" id="anamespaceEule_html_aea48fbceb33833fc808355c9eec721bb"><div class="ttname"><a href="namespaceEule.html#aea48fbceb33833fc808355c9eec721bb">Eule::Vector4i</a></div><div class="ttdeci">Vector4&lt; int &gt; Vector4i</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00106">Vector4.h:106</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_abc9e49133b73116830c953a4666e403c"><div class="ttname"><a href="classEule_1_1Vector4.html#abc9e49133b73116830c953a4666e403c">Eule::Vector4::operator!=</a></div><div class="ttdeci">bool operator!=(const Vector4&lt; T &gt; &amp;other) const</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00767">Vector4.cpp:767</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_af49ea98d369420a07158d705eab60479"><div class="ttname"><a href="classEule_1_1Vector4.html#af49ea98d369420a07158d705eab60479">Eule::Vector4::Similar</a></div><div class="ttdeci">bool Similar(const Vector4&lt; T &gt; &amp;other, double epsilon=0.00001) const</div><div class="ttdoc">Will compare if two vectors are similar to a certain epsilon value.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00162">Vector4.cpp:162</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a35c6fccb7a02095b595575903b590dd2"><div class="ttname"><a href="classEule_1_1Vector4.html#a35c6fccb7a02095b595575903b590dd2">Eule::Vector4::Magnitude</a></div><div class="ttdeci">double Magnitude() const</div><div class="ttdoc">Will compute the magnitude.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00038">Vector4.cpp:38</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_afefa0db0ba202f63e338506fd21a61e9"><div class="ttname"><a href="classEule_1_1Vector4.html#afefa0db0ba202f63e338506fd21a61e9">Eule::Vector4::future</a></div><div class="ttdeci">static const Vector4&lt; double &gt; future</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00100">Vector4.h:100</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_ae2af40b477e41f8a42db7f80a832a1e7"><div class="ttname"><a href="classEule_1_1Vector4.html#ae2af40b477e41f8a42db7f80a832a1e7">Eule::Vector4::operator==</a></div><div class="ttdeci">bool operator==(const Vector4&lt; T &gt; &amp;other) const</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00659">Vector4.cpp:659</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_adf801d37181ff33a920f31536337ca07"><div class="ttname"><a href="classEule_1_1Vector4.html#adf801d37181ff33a920f31536337ca07">Eule::Vector4::zero</a></div><div class="ttdeci">static const Vector4&lt; double &gt; zero</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00103">Vector4.h:103</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a2cd0433c99303b8934993b2fd2aa1c6e"><div class="ttname"><a href="classEule_1_1Vector4.html#a2cd0433c99303b8934993b2fd2aa1c6e">Eule::Vector4::SqrMagnitude</a></div><div class="ttdeci">double SqrMagnitude() const</div><div class="ttdoc">Will compute the square magnitude.</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8cpp_source.html#l00031">Vector4.cpp:31</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a9a8c5882154587b3e34ae308466f98a5"><div class="ttname"><a href="classEule_1_1Vector4.html#a9a8c5882154587b3e34ae308466f98a5">Eule::Vector4::up</a></div><div class="ttdeci">static const Vector4&lt; double &gt; up</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00094">Vector4.h:94</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a5533bb69dbc4714fd53aaf1e0db9bf99"><div class="ttname"><a href="classEule_1_1Vector4.html#a5533bb69dbc4714fd53aaf1e0db9bf99">Eule::Vector4::past</a></div><div class="ttdeci">static const Vector4&lt; double &gt; past</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00101">Vector4.h:101</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a67f776474e56594e4973be32df68602a"><div class="ttname"><a href="classEule_1_1Vector4.html#a67f776474e56594e4973be32df68602a">Eule::Vector4::operator&lt;&lt;</a></div><div class="ttdeci">friend std::ostream &amp; operator&lt;&lt;(std::ostream &amp;os, const Vector4&lt; T &gt; &amp;v)</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00079">Vector4.h:79</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a994773dc2da079a335f4b57153cf82c9"><div class="ttname"><a href="classEule_1_1Vector4.html#a994773dc2da079a335f4b57153cf82c9">Eule::Vector4::y</a></div><div class="ttdeci">T y</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00089">Vector4.h:89</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a354e05fd3b3a38b530258b3247c544d1"><div class="ttname"><a href="classEule_1_1Vector4.html#a354e05fd3b3a38b530258b3247c544d1">Eule::Vector4::left</a></div><div class="ttdeci">static const Vector4&lt; double &gt; left</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00097">Vector4.h:97</a></div></div>
<div class="ttc" id="anamespaceEule_html"><div class="ttname"><a href="namespaceEule.html">Eule</a></div><div class="ttdef"><b>Definition:</b> <a href="Collider_8h_source.html#l00004">Collider.h:4</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html_a4701bae8f20522fe93575e8909478f36"><div class="ttname"><a href="classEule_1_1Vector4.html#a4701bae8f20522fe93575e8909478f36">Eule::Vector4::right</a></div><div class="ttdeci">static const Vector4&lt; double &gt; right</div><div class="ttdef"><b>Definition:</b> <a href="Vector4_8h_source.html#l00096">Vector4.h:96</a></div></div>
<div class="ttc" id="aclassEule_1_1Vector4_html"><div class="ttname"><a href="classEule_1_1Vector4.html">Eule::Vector4</a></div><div class="ttdoc">Representation of a 4d vector.</div><div class="ttdef"><b>Definition:</b> <a href="Vector2_8h_source.html#l00008">Vector2.h:8</a></div></div>
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Nov 15 2021 11:45:52 for Leonetienne/Eule by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.17
</small></address>
</body>
</html>