blob: 49e8b6b21dea7d692ff66b1745316400884dc462 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Library VectorMath / Class vec4</title>
<link rel="stylesheet" type="text/css"
href="../styles.css" />
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="../favicon.ico" />
<script src="../client-static.js"></script>
</head>
<body data-library="VectorMath" data-type="vec4">
<div class="page">
<div class="header">
<a href="../index.html"><div class="logo"></div></a>
<a href="../index.html">Dart Documentation</a>
&rsaquo; <a href="../VectorMath.html">VectorMath</a> &rsaquo; <a href="../VectorMath/vec4.html">vec4</a></div>
<div class="nav">
<h2><div class="icon-library"></div><a href="../dart_core.html">dart:core</a></h2><h2><div class="icon-library"></div><a href="../dart_coreimpl.html">dart:coreimpl</a></h2><h2><div class="icon-library"></div><a href="../VectorMath.html">VectorMath</a></h2><ul class="icon">
<li><a href="../VectorMath/vec2.html"><div class="icon-class"></div>vec2</a></li>
<li><a href="../VectorMath/vec3.html"><div class="icon-class"></div>vec3</a></li>
<li><div class="icon-class"></div><strong>vec4</strong></li>
<li><a href="../VectorMath/mat2x2.html"><div class="icon-class"></div>mat2x2</a></li>
<li><a href="../VectorMath/mat2x3.html"><div class="icon-class"></div>mat2x3</a></li>
<li><a href="../VectorMath/mat2x4.html"><div class="icon-class"></div>mat2x4</a></li>
<li><a href="../VectorMath/mat3x2.html"><div class="icon-class"></div>mat3x2</a></li>
<li><a href="../VectorMath/mat3x3.html"><div class="icon-class"></div>mat3x3</a></li>
<li><a href="../VectorMath/mat3x4.html"><div class="icon-class"></div>mat3x4</a></li>
<li><a href="../VectorMath/mat4x2.html"><div class="icon-class"></div>mat4x2</a></li>
<li><a href="../VectorMath/mat4x3.html"><div class="icon-class"></div>mat4x3</a></li>
<li><a href="../VectorMath/mat4x4.html"><div class="icon-class"></div>mat4x4</a></li>
<li><a href="../VectorMath/quat.html"><div class="icon-class"></div>quat</a></li>
</ul>
</div>
<div class="content">
<h2>Class
<strong>vec4</strong></h2>
<div class="doc">
</div>
<h3>Constructors</h3>
<div class="method"><h4 id="vec4">
<span class="show-code">Code</span>
new <strong>vec4</strong>([x_, y_, z_, w_]) <a class="anchor-link" href="#vec4"
title="Permalink to vec4.vec4">#</a></h4>
<div class="doc">
<p>Constructs a new <a class="crossref" href="../VectorMath/vec4.html">vec4</a>. Follows GLSL constructor syntax so many combinations are possible</p>
<pre class="source">
vec4([Dynamic x_, Dynamic y_, Dynamic z_, Dynamic w_]) {
x = y = z = w = 0.0;
if (x_ is vec3 &amp;&amp; y_ is num) {
this.xyz = x_.xyz;
this.w = y_;
}
if (x_ is num &amp;&amp; y_ is vec3) {
this.x = x_;
this.yzw = y_.xyz;
}
if (x_ is vec3 &amp;&amp; y_ == null) {
this.xyz = x_.xyz;
this.z = 0;
}
if (x_ is vec2 &amp;&amp; y_ is vec2) {
this.xy = x_.xy;
this.zw = y_.xy;
}
if (x_ is vec4) {
xyzw = x_.xyzw;
return;
}
if (x_ is num &amp;&amp; y_ is num &amp;&amp; z_ is num &amp;&amp; w_ is num) {
x = x_;
y = y_;
z = z_;
w = w_;
return;
}
if (x_ is num) {
x = y = z = w = x_;
return;
}
}
</pre>
</div>
</div>
<h3>Methods</h3>
<div class="method"><h4 id="toString">
<span class="show-code">Code</span>
<a href="../dart_core/String.html">String</a> <strong>toString</strong>() <a class="anchor-link" href="#toString"
title="Permalink to vec4.toString">#</a></h4>
<div class="doc">
<p>Returns a printable string</p>
<pre class="source">
String toString() =&gt; '$x,$y,$z,$w';
</pre>
</div>
</div>
<div class="method"><h4 id=":negate">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>operator negate</strong>() <a class="anchor-link" href="#:negate"
title="Permalink to vec4.operator negate">#</a></h4>
<div class="doc">
<p>Returns a new vec4 from -this</p>
<pre class="source">
vec4 operator negate() =&gt; new vec4(-x, -y, -z, -w);
</pre>
</div>
</div>
<div class="method"><h4 id=":sub">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>operator -</strong>(<a href="../VectorMath/vec4.html">vec4</a> other) <a class="anchor-link" href="#:sub"
title="Permalink to vec4.operator -">#</a></h4>
<div class="doc">
<p>Returns a new vec4 from this -
<span class="param">other</span></p>
<pre class="source">
vec4 operator-(vec4 other) =&gt; new vec4(x - other.x, y - other.y, z - other.z, w - other.w);
</pre>
</div>
</div>
<div class="method"><h4 id=":add">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>operator +</strong>(<a href="../VectorMath/vec4.html">vec4</a> other) <a class="anchor-link" href="#:add"
title="Permalink to vec4.operator +">#</a></h4>
<div class="doc">
<p>Returns a new vec4 from this +
<span class="param">other</span></p>
<pre class="source">
vec4 operator+(vec4 other) =&gt; new vec4(x + other.x, y + other.y, z + other.z, w + other.w);
</pre>
</div>
</div>
<div class="method"><h4 id=":div">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>operator /</strong>(other) <a class="anchor-link" href="#:div"
title="Permalink to vec4.operator /">#</a></h4>
<div class="doc">
<p>Returns a new vec4 divided by
<span class="param">other</span></p>
<pre class="source">
vec4 operator/(Dynamic other) {
if (other is num) {
return new vec4(x / other, y / other, z / other, w / other);
}
if (other is vec4) {
return new vec4(x / other.x, y / other.y, z / other.z, w / other.w);
}
}
</pre>
</div>
</div>
<div class="method"><h4 id=":mul">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>operator *</strong>(other) <a class="anchor-link" href="#:mul"
title="Permalink to vec4.operator *">#</a></h4>
<div class="doc">
<p>Returns a new vec4 scaled by
<span class="param">other</span></p>
<pre class="source">
vec4 operator*(Dynamic other) {
if (other is num) {
return new vec4(x * other, y * other, z * other, w * other);
}
if (other is vec4) {
return new vec4(x * other.x, y * other.y, z * other.z, w * other.w);
}
}
</pre>
</div>
</div>
<div class="method"><h4 id=":index">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>operator []</strong>(<a href="../dart_core/int.html">int</a> i) <a class="anchor-link" href="#:index"
title="Permalink to vec4.operator []">#</a></h4>
<div class="doc">
<p>Returns a component from vec4. This is indexed as an array with
<span class="param">i</span></p>
<pre class="source">
num operator[](int i) {
assert(i &gt;= 0 &amp;&amp; i &lt; 4);
switch (i) {
case 0: return x; break;
case 1: return y; break;
case 2: return z; break;
case 3: return w; break;
};
return 0.0;
}
</pre>
</div>
</div>
<div class="method"><h4 id=":setindex">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>operator []=</strong>(<a href="../dart_core/int.html">int</a> i, <a href="../dart_core/num.html">num</a> v) <a class="anchor-link" href="#:setindex"
title="Permalink to vec4.operator []=">#</a></h4>
<div class="doc">
<p>Assigns a component in vec4 the value in
<span class="param">v</span>. This is indexed as an array with
<span class="param">i</span></p>
<pre class="source">
num operator[]=(int i, num v) {
assert(i &gt;= 0 &amp;&amp; i &lt; 4);
switch (i) {
case 0: x = v; return x; break;
case 1: y = v; return y; break;
case 2: z = v; return z; break;
case 3: w = v; return w; break;
};
return 0.0;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:length">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>get length</strong>() <a class="anchor-link" href="#get:length"
title="Permalink to vec4.get length">#</a></h4>
<div class="doc">
<p>Returns length of this</p>
<pre class="source">
num get length() {
num sum = 0.0;
sum += (x * x);
sum += (y * y);
sum += (z * z);
sum += (w * w);
return Math.sqrt(sum);
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:length2">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>get length2</strong>() <a class="anchor-link" href="#get:length2"
title="Permalink to vec4.get length2">#</a></h4>
<div class="doc">
<p>Returns squared length of this</p>
<pre class="source">
num get length2() {
num sum = 0.0;
sum += (x * x);
sum += (y * y);
sum += (z * z);
sum += (w * w);
return sum;
}
</pre>
</div>
</div>
<div class="method"><h4 id="normalize">
<span class="show-code">Code</span>
<a href="../dart_core/void.html">void</a> <strong>normalize</strong>() <a class="anchor-link" href="#normalize"
title="Permalink to vec4.normalize">#</a></h4>
<div class="doc">
<p>Normalizes this</p>
<pre class="source">
void normalize() {
num l = length;
if (l == 0.0) {
return;
}
x /= l;
y /= l;
z /= l;
w /= l;
}
</pre>
</div>
</div>
<div class="method"><h4 id="dot">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>dot</strong>(<a href="../VectorMath/vec4.html">vec4</a> other) <a class="anchor-link" href="#dot"
title="Permalink to vec4.dot">#</a></h4>
<div class="doc">
<p>Returns the dot product of <code>this</code> and
<span class="param">other</span></p>
<pre class="source">
num dot(vec4 other) {
num sum = 0.0;
sum += (x * other.x);
sum += (y * other.y);
sum += (z * other.z);
sum += (w * other.w);
return sum;
}
</pre>
</div>
</div>
<div class="method"><h4 id="relativeError">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>relativeError</strong>(<a href="../VectorMath/vec4.html">vec4</a> correct) <a class="anchor-link" href="#relativeError"
title="Permalink to vec4.relativeError">#</a></h4>
<div class="doc">
<p>Returns the relative error between <code>this</code> and
<span class="param">correct</span></p>
<pre class="source">
num relativeError(vec4 correct) {
num this_norm = length;
num correct_norm = correct.length;
num diff_norm = (this_norm - correct_norm).abs();
return diff_norm/correct_norm;
}
</pre>
</div>
</div>
<div class="method"><h4 id="absoluteError">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>absoluteError</strong>(<a href="../VectorMath/vec4.html">vec4</a> correct) <a class="anchor-link" href="#absoluteError"
title="Permalink to vec4.absoluteError">#</a></h4>
<div class="doc">
<p>Returns the absolute error between <code>this</code> and
<span class="param">correct</span></p>
<pre class="source">
num absoluteError(vec4 correct) {
num this_norm = length;
num correct_norm = correct.length;
num diff_norm = (this_norm - correct_norm).abs();
return diff_norm;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get xy</strong>() <a class="anchor-link" href="#get:xy"
title="Permalink to vec4.get xy">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get xy() =&gt; new vec2(x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xy">
<span class="show-code">Code</span>
<strong>set xy</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:xy"
title="Permalink to vec4.set xy">#</a></h4>
<div class="doc">
<pre class="source">
set xy(vec2 arg) {
x = arg.x;
y = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get xz</strong>() <a class="anchor-link" href="#get:xz"
title="Permalink to vec4.get xz">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get xz() =&gt; new vec2(x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xz">
<span class="show-code">Code</span>
<strong>set xz</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:xz"
title="Permalink to vec4.set xz">#</a></h4>
<div class="doc">
<pre class="source">
set xz(vec2 arg) {
x = arg.x;
z = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get xw</strong>() <a class="anchor-link" href="#get:xw"
title="Permalink to vec4.get xw">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get xw() =&gt; new vec2(x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xw">
<span class="show-code">Code</span>
<strong>set xw</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:xw"
title="Permalink to vec4.set xw">#</a></h4>
<div class="doc">
<pre class="source">
set xw(vec2 arg) {
x = arg.x;
w = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get yx</strong>() <a class="anchor-link" href="#get:yx"
title="Permalink to vec4.get yx">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get yx() =&gt; new vec2(y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yx">
<span class="show-code">Code</span>
<strong>set yx</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:yx"
title="Permalink to vec4.set yx">#</a></h4>
<div class="doc">
<pre class="source">
set yx(vec2 arg) {
y = arg.x;
x = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get yz</strong>() <a class="anchor-link" href="#get:yz"
title="Permalink to vec4.get yz">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get yz() =&gt; new vec2(y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yz">
<span class="show-code">Code</span>
<strong>set yz</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:yz"
title="Permalink to vec4.set yz">#</a></h4>
<div class="doc">
<pre class="source">
set yz(vec2 arg) {
y = arg.x;
z = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get yw</strong>() <a class="anchor-link" href="#get:yw"
title="Permalink to vec4.get yw">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get yw() =&gt; new vec2(y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yw">
<span class="show-code">Code</span>
<strong>set yw</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:yw"
title="Permalink to vec4.set yw">#</a></h4>
<div class="doc">
<pre class="source">
set yw(vec2 arg) {
y = arg.x;
w = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get zx</strong>() <a class="anchor-link" href="#get:zx"
title="Permalink to vec4.get zx">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get zx() =&gt; new vec2(z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zx">
<span class="show-code">Code</span>
<strong>set zx</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:zx"
title="Permalink to vec4.set zx">#</a></h4>
<div class="doc">
<pre class="source">
set zx(vec2 arg) {
z = arg.x;
x = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get zy</strong>() <a class="anchor-link" href="#get:zy"
title="Permalink to vec4.get zy">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get zy() =&gt; new vec2(z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zy">
<span class="show-code">Code</span>
<strong>set zy</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:zy"
title="Permalink to vec4.set zy">#</a></h4>
<div class="doc">
<pre class="source">
set zy(vec2 arg) {
z = arg.x;
y = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get zw</strong>() <a class="anchor-link" href="#get:zw"
title="Permalink to vec4.get zw">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get zw() =&gt; new vec2(z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zw">
<span class="show-code">Code</span>
<strong>set zw</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:zw"
title="Permalink to vec4.set zw">#</a></h4>
<div class="doc">
<pre class="source">
set zw(vec2 arg) {
z = arg.x;
w = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get wx</strong>() <a class="anchor-link" href="#get:wx"
title="Permalink to vec4.get wx">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get wx() =&gt; new vec2(w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wx">
<span class="show-code">Code</span>
<strong>set wx</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:wx"
title="Permalink to vec4.set wx">#</a></h4>
<div class="doc">
<pre class="source">
set wx(vec2 arg) {
w = arg.x;
x = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get wy</strong>() <a class="anchor-link" href="#get:wy"
title="Permalink to vec4.get wy">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get wy() =&gt; new vec2(w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wy">
<span class="show-code">Code</span>
<strong>set wy</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:wy"
title="Permalink to vec4.set wy">#</a></h4>
<div class="doc">
<pre class="source">
set wy(vec2 arg) {
w = arg.x;
y = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get wz</strong>() <a class="anchor-link" href="#get:wz"
title="Permalink to vec4.get wz">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get wz() =&gt; new vec2(w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wz">
<span class="show-code">Code</span>
<strong>set wz</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:wz"
title="Permalink to vec4.set wz">#</a></h4>
<div class="doc">
<pre class="source">
set wz(vec2 arg) {
w = arg.x;
z = arg.y;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xyz</strong>() <a class="anchor-link" href="#get:xyz"
title="Permalink to vec4.get xyz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xyz() =&gt; new vec3(x, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xyz">
<span class="show-code">Code</span>
<strong>set xyz</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:xyz"
title="Permalink to vec4.set xyz">#</a></h4>
<div class="doc">
<pre class="source">
set xyz(vec3 arg) {
x = arg.x;
y = arg.y;
z = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xyw</strong>() <a class="anchor-link" href="#get:xyw"
title="Permalink to vec4.get xyw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xyw() =&gt; new vec3(x, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xyw">
<span class="show-code">Code</span>
<strong>set xyw</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:xyw"
title="Permalink to vec4.set xyw">#</a></h4>
<div class="doc">
<pre class="source">
set xyw(vec3 arg) {
x = arg.x;
y = arg.y;
w = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xzy</strong>() <a class="anchor-link" href="#get:xzy"
title="Permalink to vec4.get xzy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xzy() =&gt; new vec3(x, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xzy">
<span class="show-code">Code</span>
<strong>set xzy</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:xzy"
title="Permalink to vec4.set xzy">#</a></h4>
<div class="doc">
<pre class="source">
set xzy(vec3 arg) {
x = arg.x;
z = arg.y;
y = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xzw</strong>() <a class="anchor-link" href="#get:xzw"
title="Permalink to vec4.get xzw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xzw() =&gt; new vec3(x, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xzw">
<span class="show-code">Code</span>
<strong>set xzw</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:xzw"
title="Permalink to vec4.set xzw">#</a></h4>
<div class="doc">
<pre class="source">
set xzw(vec3 arg) {
x = arg.x;
z = arg.y;
w = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xwy</strong>() <a class="anchor-link" href="#get:xwy"
title="Permalink to vec4.get xwy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xwy() =&gt; new vec3(x, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xwy">
<span class="show-code">Code</span>
<strong>set xwy</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:xwy"
title="Permalink to vec4.set xwy">#</a></h4>
<div class="doc">
<pre class="source">
set xwy(vec3 arg) {
x = arg.x;
w = arg.y;
y = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xwz</strong>() <a class="anchor-link" href="#get:xwz"
title="Permalink to vec4.get xwz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xwz() =&gt; new vec3(x, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xwz">
<span class="show-code">Code</span>
<strong>set xwz</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:xwz"
title="Permalink to vec4.set xwz">#</a></h4>
<div class="doc">
<pre class="source">
set xwz(vec3 arg) {
x = arg.x;
w = arg.y;
z = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yxz</strong>() <a class="anchor-link" href="#get:yxz"
title="Permalink to vec4.get yxz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yxz() =&gt; new vec3(y, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yxz">
<span class="show-code">Code</span>
<strong>set yxz</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:yxz"
title="Permalink to vec4.set yxz">#</a></h4>
<div class="doc">
<pre class="source">
set yxz(vec3 arg) {
y = arg.x;
x = arg.y;
z = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yxw</strong>() <a class="anchor-link" href="#get:yxw"
title="Permalink to vec4.get yxw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yxw() =&gt; new vec3(y, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yxw">
<span class="show-code">Code</span>
<strong>set yxw</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:yxw"
title="Permalink to vec4.set yxw">#</a></h4>
<div class="doc">
<pre class="source">
set yxw(vec3 arg) {
y = arg.x;
x = arg.y;
w = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yzx</strong>() <a class="anchor-link" href="#get:yzx"
title="Permalink to vec4.get yzx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yzx() =&gt; new vec3(y, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yzx">
<span class="show-code">Code</span>
<strong>set yzx</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:yzx"
title="Permalink to vec4.set yzx">#</a></h4>
<div class="doc">
<pre class="source">
set yzx(vec3 arg) {
y = arg.x;
z = arg.y;
x = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yzw</strong>() <a class="anchor-link" href="#get:yzw"
title="Permalink to vec4.get yzw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yzw() =&gt; new vec3(y, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yzw">
<span class="show-code">Code</span>
<strong>set yzw</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:yzw"
title="Permalink to vec4.set yzw">#</a></h4>
<div class="doc">
<pre class="source">
set yzw(vec3 arg) {
y = arg.x;
z = arg.y;
w = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ywx</strong>() <a class="anchor-link" href="#get:ywx"
title="Permalink to vec4.get ywx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ywx() =&gt; new vec3(y, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ywx">
<span class="show-code">Code</span>
<strong>set ywx</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:ywx"
title="Permalink to vec4.set ywx">#</a></h4>
<div class="doc">
<pre class="source">
set ywx(vec3 arg) {
y = arg.x;
w = arg.y;
x = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ywz</strong>() <a class="anchor-link" href="#get:ywz"
title="Permalink to vec4.get ywz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ywz() =&gt; new vec3(y, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ywz">
<span class="show-code">Code</span>
<strong>set ywz</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:ywz"
title="Permalink to vec4.set ywz">#</a></h4>
<div class="doc">
<pre class="source">
set ywz(vec3 arg) {
y = arg.x;
w = arg.y;
z = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zxy</strong>() <a class="anchor-link" href="#get:zxy"
title="Permalink to vec4.get zxy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zxy() =&gt; new vec3(z, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zxy">
<span class="show-code">Code</span>
<strong>set zxy</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:zxy"
title="Permalink to vec4.set zxy">#</a></h4>
<div class="doc">
<pre class="source">
set zxy(vec3 arg) {
z = arg.x;
x = arg.y;
y = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zxw</strong>() <a class="anchor-link" href="#get:zxw"
title="Permalink to vec4.get zxw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zxw() =&gt; new vec3(z, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zxw">
<span class="show-code">Code</span>
<strong>set zxw</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:zxw"
title="Permalink to vec4.set zxw">#</a></h4>
<div class="doc">
<pre class="source">
set zxw(vec3 arg) {
z = arg.x;
x = arg.y;
w = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zyx</strong>() <a class="anchor-link" href="#get:zyx"
title="Permalink to vec4.get zyx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zyx() =&gt; new vec3(z, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zyx">
<span class="show-code">Code</span>
<strong>set zyx</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:zyx"
title="Permalink to vec4.set zyx">#</a></h4>
<div class="doc">
<pre class="source">
set zyx(vec3 arg) {
z = arg.x;
y = arg.y;
x = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zyw</strong>() <a class="anchor-link" href="#get:zyw"
title="Permalink to vec4.get zyw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zyw() =&gt; new vec3(z, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zyw">
<span class="show-code">Code</span>
<strong>set zyw</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:zyw"
title="Permalink to vec4.set zyw">#</a></h4>
<div class="doc">
<pre class="source">
set zyw(vec3 arg) {
z = arg.x;
y = arg.y;
w = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zwx</strong>() <a class="anchor-link" href="#get:zwx"
title="Permalink to vec4.get zwx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zwx() =&gt; new vec3(z, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zwx">
<span class="show-code">Code</span>
<strong>set zwx</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:zwx"
title="Permalink to vec4.set zwx">#</a></h4>
<div class="doc">
<pre class="source">
set zwx(vec3 arg) {
z = arg.x;
w = arg.y;
x = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zwy</strong>() <a class="anchor-link" href="#get:zwy"
title="Permalink to vec4.get zwy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zwy() =&gt; new vec3(z, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zwy">
<span class="show-code">Code</span>
<strong>set zwy</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:zwy"
title="Permalink to vec4.set zwy">#</a></h4>
<div class="doc">
<pre class="source">
set zwy(vec3 arg) {
z = arg.x;
w = arg.y;
y = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wxy</strong>() <a class="anchor-link" href="#get:wxy"
title="Permalink to vec4.get wxy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wxy() =&gt; new vec3(w, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wxy">
<span class="show-code">Code</span>
<strong>set wxy</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:wxy"
title="Permalink to vec4.set wxy">#</a></h4>
<div class="doc">
<pre class="source">
set wxy(vec3 arg) {
w = arg.x;
x = arg.y;
y = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wxz</strong>() <a class="anchor-link" href="#get:wxz"
title="Permalink to vec4.get wxz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wxz() =&gt; new vec3(w, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wxz">
<span class="show-code">Code</span>
<strong>set wxz</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:wxz"
title="Permalink to vec4.set wxz">#</a></h4>
<div class="doc">
<pre class="source">
set wxz(vec3 arg) {
w = arg.x;
x = arg.y;
z = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wyx</strong>() <a class="anchor-link" href="#get:wyx"
title="Permalink to vec4.get wyx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wyx() =&gt; new vec3(w, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wyx">
<span class="show-code">Code</span>
<strong>set wyx</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:wyx"
title="Permalink to vec4.set wyx">#</a></h4>
<div class="doc">
<pre class="source">
set wyx(vec3 arg) {
w = arg.x;
y = arg.y;
x = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wyz</strong>() <a class="anchor-link" href="#get:wyz"
title="Permalink to vec4.get wyz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wyz() =&gt; new vec3(w, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wyz">
<span class="show-code">Code</span>
<strong>set wyz</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:wyz"
title="Permalink to vec4.set wyz">#</a></h4>
<div class="doc">
<pre class="source">
set wyz(vec3 arg) {
w = arg.x;
y = arg.y;
z = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wzx</strong>() <a class="anchor-link" href="#get:wzx"
title="Permalink to vec4.get wzx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wzx() =&gt; new vec3(w, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wzx">
<span class="show-code">Code</span>
<strong>set wzx</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:wzx"
title="Permalink to vec4.set wzx">#</a></h4>
<div class="doc">
<pre class="source">
set wzx(vec3 arg) {
w = arg.x;
z = arg.y;
x = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wzy</strong>() <a class="anchor-link" href="#get:wzy"
title="Permalink to vec4.get wzy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wzy() =&gt; new vec3(w, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wzy">
<span class="show-code">Code</span>
<strong>set wzy</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:wzy"
title="Permalink to vec4.set wzy">#</a></h4>
<div class="doc">
<pre class="source">
set wzy(vec3 arg) {
w = arg.x;
z = arg.y;
y = arg.z;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyzw</strong>() <a class="anchor-link" href="#get:xyzw"
title="Permalink to vec4.get xyzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyzw() =&gt; new vec4(x, y, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xyzw">
<span class="show-code">Code</span>
<strong>set xyzw</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:xyzw"
title="Permalink to vec4.set xyzw">#</a></h4>
<div class="doc">
<pre class="source">
set xyzw(vec4 arg) {
x = arg.x;
y = arg.y;
z = arg.z;
w = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xywz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xywz</strong>() <a class="anchor-link" href="#get:xywz"
title="Permalink to vec4.get xywz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xywz() =&gt; new vec4(x, y, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xywz">
<span class="show-code">Code</span>
<strong>set xywz</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:xywz"
title="Permalink to vec4.set xywz">#</a></h4>
<div class="doc">
<pre class="source">
set xywz(vec4 arg) {
x = arg.x;
y = arg.y;
w = arg.z;
z = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzyw</strong>() <a class="anchor-link" href="#get:xzyw"
title="Permalink to vec4.get xzyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzyw() =&gt; new vec4(x, z, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xzyw">
<span class="show-code">Code</span>
<strong>set xzyw</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:xzyw"
title="Permalink to vec4.set xzyw">#</a></h4>
<div class="doc">
<pre class="source">
set xzyw(vec4 arg) {
x = arg.x;
z = arg.y;
y = arg.z;
w = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzwy</strong>() <a class="anchor-link" href="#get:xzwy"
title="Permalink to vec4.get xzwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzwy() =&gt; new vec4(x, z, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xzwy">
<span class="show-code">Code</span>
<strong>set xzwy</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:xzwy"
title="Permalink to vec4.set xzwy">#</a></h4>
<div class="doc">
<pre class="source">
set xzwy(vec4 arg) {
x = arg.x;
z = arg.y;
w = arg.z;
y = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwyz</strong>() <a class="anchor-link" href="#get:xwyz"
title="Permalink to vec4.get xwyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwyz() =&gt; new vec4(x, w, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xwyz">
<span class="show-code">Code</span>
<strong>set xwyz</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:xwyz"
title="Permalink to vec4.set xwyz">#</a></h4>
<div class="doc">
<pre class="source">
set xwyz(vec4 arg) {
x = arg.x;
w = arg.y;
y = arg.z;
z = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwzy</strong>() <a class="anchor-link" href="#get:xwzy"
title="Permalink to vec4.get xwzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwzy() =&gt; new vec4(x, w, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:xwzy">
<span class="show-code">Code</span>
<strong>set xwzy</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:xwzy"
title="Permalink to vec4.set xwzy">#</a></h4>
<div class="doc">
<pre class="source">
set xwzy(vec4 arg) {
x = arg.x;
w = arg.y;
z = arg.z;
y = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxzw</strong>() <a class="anchor-link" href="#get:yxzw"
title="Permalink to vec4.get yxzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxzw() =&gt; new vec4(y, x, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yxzw">
<span class="show-code">Code</span>
<strong>set yxzw</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:yxzw"
title="Permalink to vec4.set yxzw">#</a></h4>
<div class="doc">
<pre class="source">
set yxzw(vec4 arg) {
y = arg.x;
x = arg.y;
z = arg.z;
w = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxwz</strong>() <a class="anchor-link" href="#get:yxwz"
title="Permalink to vec4.get yxwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxwz() =&gt; new vec4(y, x, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yxwz">
<span class="show-code">Code</span>
<strong>set yxwz</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:yxwz"
title="Permalink to vec4.set yxwz">#</a></h4>
<div class="doc">
<pre class="source">
set yxwz(vec4 arg) {
y = arg.x;
x = arg.y;
w = arg.z;
z = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzxw</strong>() <a class="anchor-link" href="#get:yzxw"
title="Permalink to vec4.get yzxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzxw() =&gt; new vec4(y, z, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yzxw">
<span class="show-code">Code</span>
<strong>set yzxw</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:yzxw"
title="Permalink to vec4.set yzxw">#</a></h4>
<div class="doc">
<pre class="source">
set yzxw(vec4 arg) {
y = arg.x;
z = arg.y;
x = arg.z;
w = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzwx</strong>() <a class="anchor-link" href="#get:yzwx"
title="Permalink to vec4.get yzwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzwx() =&gt; new vec4(y, z, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:yzwx">
<span class="show-code">Code</span>
<strong>set yzwx</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:yzwx"
title="Permalink to vec4.set yzwx">#</a></h4>
<div class="doc">
<pre class="source">
set yzwx(vec4 arg) {
y = arg.x;
z = arg.y;
w = arg.z;
x = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywxz</strong>() <a class="anchor-link" href="#get:ywxz"
title="Permalink to vec4.get ywxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywxz() =&gt; new vec4(y, w, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ywxz">
<span class="show-code">Code</span>
<strong>set ywxz</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:ywxz"
title="Permalink to vec4.set ywxz">#</a></h4>
<div class="doc">
<pre class="source">
set ywxz(vec4 arg) {
y = arg.x;
w = arg.y;
x = arg.z;
z = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywzx</strong>() <a class="anchor-link" href="#get:ywzx"
title="Permalink to vec4.get ywzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywzx() =&gt; new vec4(y, w, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ywzx">
<span class="show-code">Code</span>
<strong>set ywzx</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:ywzx"
title="Permalink to vec4.set ywzx">#</a></h4>
<div class="doc">
<pre class="source">
set ywzx(vec4 arg) {
y = arg.x;
w = arg.y;
z = arg.z;
x = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxyw</strong>() <a class="anchor-link" href="#get:zxyw"
title="Permalink to vec4.get zxyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxyw() =&gt; new vec4(z, x, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zxyw">
<span class="show-code">Code</span>
<strong>set zxyw</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:zxyw"
title="Permalink to vec4.set zxyw">#</a></h4>
<div class="doc">
<pre class="source">
set zxyw(vec4 arg) {
z = arg.x;
x = arg.y;
y = arg.z;
w = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxwy</strong>() <a class="anchor-link" href="#get:zxwy"
title="Permalink to vec4.get zxwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxwy() =&gt; new vec4(z, x, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zxwy">
<span class="show-code">Code</span>
<strong>set zxwy</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:zxwy"
title="Permalink to vec4.set zxwy">#</a></h4>
<div class="doc">
<pre class="source">
set zxwy(vec4 arg) {
z = arg.x;
x = arg.y;
w = arg.z;
y = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyxw</strong>() <a class="anchor-link" href="#get:zyxw"
title="Permalink to vec4.get zyxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyxw() =&gt; new vec4(z, y, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zyxw">
<span class="show-code">Code</span>
<strong>set zyxw</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:zyxw"
title="Permalink to vec4.set zyxw">#</a></h4>
<div class="doc">
<pre class="source">
set zyxw(vec4 arg) {
z = arg.x;
y = arg.y;
x = arg.z;
w = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zywx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zywx</strong>() <a class="anchor-link" href="#get:zywx"
title="Permalink to vec4.get zywx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zywx() =&gt; new vec4(z, y, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zywx">
<span class="show-code">Code</span>
<strong>set zywx</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:zywx"
title="Permalink to vec4.set zywx">#</a></h4>
<div class="doc">
<pre class="source">
set zywx(vec4 arg) {
z = arg.x;
y = arg.y;
w = arg.z;
x = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwxy</strong>() <a class="anchor-link" href="#get:zwxy"
title="Permalink to vec4.get zwxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwxy() =&gt; new vec4(z, w, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zwxy">
<span class="show-code">Code</span>
<strong>set zwxy</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:zwxy"
title="Permalink to vec4.set zwxy">#</a></h4>
<div class="doc">
<pre class="source">
set zwxy(vec4 arg) {
z = arg.x;
w = arg.y;
x = arg.z;
y = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwyx</strong>() <a class="anchor-link" href="#get:zwyx"
title="Permalink to vec4.get zwyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwyx() =&gt; new vec4(z, w, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:zwyx">
<span class="show-code">Code</span>
<strong>set zwyx</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:zwyx"
title="Permalink to vec4.set zwyx">#</a></h4>
<div class="doc">
<pre class="source">
set zwyx(vec4 arg) {
z = arg.x;
w = arg.y;
y = arg.z;
x = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxyz</strong>() <a class="anchor-link" href="#get:wxyz"
title="Permalink to vec4.get wxyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxyz() =&gt; new vec4(w, x, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wxyz">
<span class="show-code">Code</span>
<strong>set wxyz</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:wxyz"
title="Permalink to vec4.set wxyz">#</a></h4>
<div class="doc">
<pre class="source">
set wxyz(vec4 arg) {
w = arg.x;
x = arg.y;
y = arg.z;
z = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxzy</strong>() <a class="anchor-link" href="#get:wxzy"
title="Permalink to vec4.get wxzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxzy() =&gt; new vec4(w, x, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wxzy">
<span class="show-code">Code</span>
<strong>set wxzy</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:wxzy"
title="Permalink to vec4.set wxzy">#</a></h4>
<div class="doc">
<pre class="source">
set wxzy(vec4 arg) {
w = arg.x;
x = arg.y;
z = arg.z;
y = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyxz</strong>() <a class="anchor-link" href="#get:wyxz"
title="Permalink to vec4.get wyxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyxz() =&gt; new vec4(w, y, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wyxz">
<span class="show-code">Code</span>
<strong>set wyxz</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:wyxz"
title="Permalink to vec4.set wyxz">#</a></h4>
<div class="doc">
<pre class="source">
set wyxz(vec4 arg) {
w = arg.x;
y = arg.y;
x = arg.z;
z = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyzx</strong>() <a class="anchor-link" href="#get:wyzx"
title="Permalink to vec4.get wyzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyzx() =&gt; new vec4(w, y, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wyzx">
<span class="show-code">Code</span>
<strong>set wyzx</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:wyzx"
title="Permalink to vec4.set wyzx">#</a></h4>
<div class="doc">
<pre class="source">
set wyzx(vec4 arg) {
w = arg.x;
y = arg.y;
z = arg.z;
x = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzxy</strong>() <a class="anchor-link" href="#get:wzxy"
title="Permalink to vec4.get wzxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzxy() =&gt; new vec4(w, z, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wzxy">
<span class="show-code">Code</span>
<strong>set wzxy</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:wzxy"
title="Permalink to vec4.set wzxy">#</a></h4>
<div class="doc">
<pre class="source">
set wzxy(vec4 arg) {
w = arg.x;
z = arg.y;
x = arg.z;
y = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzyx</strong>() <a class="anchor-link" href="#get:wzyx"
title="Permalink to vec4.get wzyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzyx() =&gt; new vec4(w, z, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="set:wzyx">
<span class="show-code">Code</span>
<strong>set wzyx</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:wzyx"
title="Permalink to vec4.set wzyx">#</a></h4>
<div class="doc">
<pre class="source">
set wzyx(vec4 arg) {
w = arg.x;
z = arg.y;
y = arg.z;
x = arg.w;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:r">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>get r</strong>() <a class="anchor-link" href="#get:r"
title="Permalink to vec4.get r">#</a></h4>
<div class="doc">
<pre class="source">
num get r() =&gt; x;
</pre>
</div>
</div>
<div class="method"><h4 id="set:r">
<span class="show-code">Code</span>
<strong>set r</strong>(<a href="../dart_core/num.html">num</a> arg) <a class="anchor-link" href="#set:r"
title="Permalink to vec4.set r">#</a></h4>
<div class="doc">
<pre class="source">
set r(num arg) =&gt; x = arg;
</pre>
</div>
</div>
<div class="method"><h4 id="get:g">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>get g</strong>() <a class="anchor-link" href="#get:g"
title="Permalink to vec4.get g">#</a></h4>
<div class="doc">
<pre class="source">
num get g() =&gt; y;
</pre>
</div>
</div>
<div class="method"><h4 id="set:g">
<span class="show-code">Code</span>
<strong>set g</strong>(<a href="../dart_core/num.html">num</a> arg) <a class="anchor-link" href="#set:g"
title="Permalink to vec4.set g">#</a></h4>
<div class="doc">
<pre class="source">
set g(num arg) =&gt; y = arg;
</pre>
</div>
</div>
<div class="method"><h4 id="get:b">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>get b</strong>() <a class="anchor-link" href="#get:b"
title="Permalink to vec4.get b">#</a></h4>
<div class="doc">
<pre class="source">
num get b() =&gt; z;
</pre>
</div>
</div>
<div class="method"><h4 id="set:b">
<span class="show-code">Code</span>
<strong>set b</strong>(<a href="../dart_core/num.html">num</a> arg) <a class="anchor-link" href="#set:b"
title="Permalink to vec4.set b">#</a></h4>
<div class="doc">
<pre class="source">
set b(num arg) =&gt; z = arg;
</pre>
</div>
</div>
<div class="method"><h4 id="get:a">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>get a</strong>() <a class="anchor-link" href="#get:a"
title="Permalink to vec4.get a">#</a></h4>
<div class="doc">
<pre class="source">
num get a() =&gt; w;
</pre>
</div>
</div>
<div class="method"><h4 id="set:a">
<span class="show-code">Code</span>
<strong>set a</strong>(<a href="../dart_core/num.html">num</a> arg) <a class="anchor-link" href="#set:a"
title="Permalink to vec4.set a">#</a></h4>
<div class="doc">
<pre class="source">
set a(num arg) =&gt; w = arg;
</pre>
</div>
</div>
<div class="method"><h4 id="get:s">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>get s</strong>() <a class="anchor-link" href="#get:s"
title="Permalink to vec4.get s">#</a></h4>
<div class="doc">
<pre class="source">
num get s() =&gt; x;
</pre>
</div>
</div>
<div class="method"><h4 id="set:s">
<span class="show-code">Code</span>
<strong>set s</strong>(<a href="../dart_core/num.html">num</a> arg) <a class="anchor-link" href="#set:s"
title="Permalink to vec4.set s">#</a></h4>
<div class="doc">
<pre class="source">
set s(num arg) =&gt; x = arg;
</pre>
</div>
</div>
<div class="method"><h4 id="get:t">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>get t</strong>() <a class="anchor-link" href="#get:t"
title="Permalink to vec4.get t">#</a></h4>
<div class="doc">
<pre class="source">
num get t() =&gt; y;
</pre>
</div>
</div>
<div class="method"><h4 id="set:t">
<span class="show-code">Code</span>
<strong>set t</strong>(<a href="../dart_core/num.html">num</a> arg) <a class="anchor-link" href="#set:t"
title="Permalink to vec4.set t">#</a></h4>
<div class="doc">
<pre class="source">
set t(num arg) =&gt; y = arg;
</pre>
</div>
</div>
<div class="method"><h4 id="get:p">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>get p</strong>() <a class="anchor-link" href="#get:p"
title="Permalink to vec4.get p">#</a></h4>
<div class="doc">
<pre class="source">
num get p() =&gt; z;
</pre>
</div>
</div>
<div class="method"><h4 id="set:p">
<span class="show-code">Code</span>
<strong>set p</strong>(<a href="../dart_core/num.html">num</a> arg) <a class="anchor-link" href="#set:p"
title="Permalink to vec4.set p">#</a></h4>
<div class="doc">
<pre class="source">
set p(num arg) =&gt; z = arg;
</pre>
</div>
</div>
<div class="method"><h4 id="get:q">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>get q</strong>() <a class="anchor-link" href="#get:q"
title="Permalink to vec4.get q">#</a></h4>
<div class="doc">
<pre class="source">
num get q() =&gt; w;
</pre>
</div>
</div>
<div class="method"><h4 id="set:q">
<span class="show-code">Code</span>
<strong>set q</strong>(<a href="../dart_core/num.html">num</a> arg) <a class="anchor-link" href="#set:q"
title="Permalink to vec4.set q">#</a></h4>
<div class="doc">
<pre class="source">
set q(num arg) =&gt; w = arg;
</pre>
</div>
</div>
<div class="method"><h4 id="get:rg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get rg</strong>() <a class="anchor-link" href="#get:rg"
title="Permalink to vec4.get rg">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get rg() =&gt; new vec2(r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rg">
<span class="show-code">Code</span>
<strong>set rg</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:rg"
title="Permalink to vec4.set rg">#</a></h4>
<div class="doc">
<pre class="source">
set rg(vec2 arg) {
r = arg.r;
g = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get rb</strong>() <a class="anchor-link" href="#get:rb"
title="Permalink to vec4.get rb">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get rb() =&gt; new vec2(r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rb">
<span class="show-code">Code</span>
<strong>set rb</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:rb"
title="Permalink to vec4.set rb">#</a></h4>
<div class="doc">
<pre class="source">
set rb(vec2 arg) {
r = arg.r;
b = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get ra</strong>() <a class="anchor-link" href="#get:ra"
title="Permalink to vec4.get ra">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get ra() =&gt; new vec2(r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ra">
<span class="show-code">Code</span>
<strong>set ra</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:ra"
title="Permalink to vec4.set ra">#</a></h4>
<div class="doc">
<pre class="source">
set ra(vec2 arg) {
r = arg.r;
a = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:gr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get gr</strong>() <a class="anchor-link" href="#get:gr"
title="Permalink to vec4.get gr">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get gr() =&gt; new vec2(g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:gr">
<span class="show-code">Code</span>
<strong>set gr</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:gr"
title="Permalink to vec4.set gr">#</a></h4>
<div class="doc">
<pre class="source">
set gr(vec2 arg) {
g = arg.r;
r = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:gb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get gb</strong>() <a class="anchor-link" href="#get:gb"
title="Permalink to vec4.get gb">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get gb() =&gt; new vec2(g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:gb">
<span class="show-code">Code</span>
<strong>set gb</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:gb"
title="Permalink to vec4.set gb">#</a></h4>
<div class="doc">
<pre class="source">
set gb(vec2 arg) {
g = arg.r;
b = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get ga</strong>() <a class="anchor-link" href="#get:ga"
title="Permalink to vec4.get ga">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get ga() =&gt; new vec2(g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ga">
<span class="show-code">Code</span>
<strong>set ga</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:ga"
title="Permalink to vec4.set ga">#</a></h4>
<div class="doc">
<pre class="source">
set ga(vec2 arg) {
g = arg.r;
a = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:br">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get br</strong>() <a class="anchor-link" href="#get:br"
title="Permalink to vec4.get br">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get br() =&gt; new vec2(b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:br">
<span class="show-code">Code</span>
<strong>set br</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:br"
title="Permalink to vec4.set br">#</a></h4>
<div class="doc">
<pre class="source">
set br(vec2 arg) {
b = arg.r;
r = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:bg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get bg</strong>() <a class="anchor-link" href="#get:bg"
title="Permalink to vec4.get bg">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get bg() =&gt; new vec2(b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:bg">
<span class="show-code">Code</span>
<strong>set bg</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:bg"
title="Permalink to vec4.set bg">#</a></h4>
<div class="doc">
<pre class="source">
set bg(vec2 arg) {
b = arg.r;
g = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get ba</strong>() <a class="anchor-link" href="#get:ba"
title="Permalink to vec4.get ba">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get ba() =&gt; new vec2(b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ba">
<span class="show-code">Code</span>
<strong>set ba</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:ba"
title="Permalink to vec4.set ba">#</a></h4>
<div class="doc">
<pre class="source">
set ba(vec2 arg) {
b = arg.r;
a = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get ar</strong>() <a class="anchor-link" href="#get:ar"
title="Permalink to vec4.get ar">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get ar() =&gt; new vec2(a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ar">
<span class="show-code">Code</span>
<strong>set ar</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:ar"
title="Permalink to vec4.set ar">#</a></h4>
<div class="doc">
<pre class="source">
set ar(vec2 arg) {
a = arg.r;
r = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get ag</strong>() <a class="anchor-link" href="#get:ag"
title="Permalink to vec4.get ag">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get ag() =&gt; new vec2(a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ag">
<span class="show-code">Code</span>
<strong>set ag</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:ag"
title="Permalink to vec4.set ag">#</a></h4>
<div class="doc">
<pre class="source">
set ag(vec2 arg) {
a = arg.r;
g = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get ab</strong>() <a class="anchor-link" href="#get:ab"
title="Permalink to vec4.get ab">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get ab() =&gt; new vec2(a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ab">
<span class="show-code">Code</span>
<strong>set ab</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:ab"
title="Permalink to vec4.set ab">#</a></h4>
<div class="doc">
<pre class="source">
set ab(vec2 arg) {
a = arg.r;
b = arg.g;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rgb</strong>() <a class="anchor-link" href="#get:rgb"
title="Permalink to vec4.get rgb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rgb() =&gt; new vec3(r, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rgb">
<span class="show-code">Code</span>
<strong>set rgb</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:rgb"
title="Permalink to vec4.set rgb">#</a></h4>
<div class="doc">
<pre class="source">
set rgb(vec3 arg) {
r = arg.r;
g = arg.g;
b = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rga</strong>() <a class="anchor-link" href="#get:rga"
title="Permalink to vec4.get rga">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rga() =&gt; new vec3(r, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rga">
<span class="show-code">Code</span>
<strong>set rga</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:rga"
title="Permalink to vec4.set rga">#</a></h4>
<div class="doc">
<pre class="source">
set rga(vec3 arg) {
r = arg.r;
g = arg.g;
a = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rbg</strong>() <a class="anchor-link" href="#get:rbg"
title="Permalink to vec4.get rbg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rbg() =&gt; new vec3(r, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rbg">
<span class="show-code">Code</span>
<strong>set rbg</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:rbg"
title="Permalink to vec4.set rbg">#</a></h4>
<div class="doc">
<pre class="source">
set rbg(vec3 arg) {
r = arg.r;
b = arg.g;
g = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rba</strong>() <a class="anchor-link" href="#get:rba"
title="Permalink to vec4.get rba">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rba() =&gt; new vec3(r, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rba">
<span class="show-code">Code</span>
<strong>set rba</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:rba"
title="Permalink to vec4.set rba">#</a></h4>
<div class="doc">
<pre class="source">
set rba(vec3 arg) {
r = arg.r;
b = arg.g;
a = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rag</strong>() <a class="anchor-link" href="#get:rag"
title="Permalink to vec4.get rag">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rag() =&gt; new vec3(r, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rag">
<span class="show-code">Code</span>
<strong>set rag</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:rag"
title="Permalink to vec4.set rag">#</a></h4>
<div class="doc">
<pre class="source">
set rag(vec3 arg) {
r = arg.r;
a = arg.g;
g = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rab</strong>() <a class="anchor-link" href="#get:rab"
title="Permalink to vec4.get rab">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rab() =&gt; new vec3(r, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rab">
<span class="show-code">Code</span>
<strong>set rab</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:rab"
title="Permalink to vec4.set rab">#</a></h4>
<div class="doc">
<pre class="source">
set rab(vec3 arg) {
r = arg.r;
a = arg.g;
b = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:grb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get grb</strong>() <a class="anchor-link" href="#get:grb"
title="Permalink to vec4.get grb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get grb() =&gt; new vec3(g, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:grb">
<span class="show-code">Code</span>
<strong>set grb</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:grb"
title="Permalink to vec4.set grb">#</a></h4>
<div class="doc">
<pre class="source">
set grb(vec3 arg) {
g = arg.r;
r = arg.g;
b = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:gra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get gra</strong>() <a class="anchor-link" href="#get:gra"
title="Permalink to vec4.get gra">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get gra() =&gt; new vec3(g, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:gra">
<span class="show-code">Code</span>
<strong>set gra</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:gra"
title="Permalink to vec4.set gra">#</a></h4>
<div class="doc">
<pre class="source">
set gra(vec3 arg) {
g = arg.r;
r = arg.g;
a = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get gbr</strong>() <a class="anchor-link" href="#get:gbr"
title="Permalink to vec4.get gbr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get gbr() =&gt; new vec3(g, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:gbr">
<span class="show-code">Code</span>
<strong>set gbr</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:gbr"
title="Permalink to vec4.set gbr">#</a></h4>
<div class="doc">
<pre class="source">
set gbr(vec3 arg) {
g = arg.r;
b = arg.g;
r = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:gba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get gba</strong>() <a class="anchor-link" href="#get:gba"
title="Permalink to vec4.get gba">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get gba() =&gt; new vec3(g, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:gba">
<span class="show-code">Code</span>
<strong>set gba</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:gba"
title="Permalink to vec4.set gba">#</a></h4>
<div class="doc">
<pre class="source">
set gba(vec3 arg) {
g = arg.r;
b = arg.g;
a = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:gar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get gar</strong>() <a class="anchor-link" href="#get:gar"
title="Permalink to vec4.get gar">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get gar() =&gt; new vec3(g, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:gar">
<span class="show-code">Code</span>
<strong>set gar</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:gar"
title="Permalink to vec4.set gar">#</a></h4>
<div class="doc">
<pre class="source">
set gar(vec3 arg) {
g = arg.r;
a = arg.g;
r = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:gab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get gab</strong>() <a class="anchor-link" href="#get:gab"
title="Permalink to vec4.get gab">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get gab() =&gt; new vec3(g, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:gab">
<span class="show-code">Code</span>
<strong>set gab</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:gab"
title="Permalink to vec4.set gab">#</a></h4>
<div class="doc">
<pre class="source">
set gab(vec3 arg) {
g = arg.r;
a = arg.g;
b = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:brg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get brg</strong>() <a class="anchor-link" href="#get:brg"
title="Permalink to vec4.get brg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get brg() =&gt; new vec3(b, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:brg">
<span class="show-code">Code</span>
<strong>set brg</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:brg"
title="Permalink to vec4.set brg">#</a></h4>
<div class="doc">
<pre class="source">
set brg(vec3 arg) {
b = arg.r;
r = arg.g;
g = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:bra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bra</strong>() <a class="anchor-link" href="#get:bra"
title="Permalink to vec4.get bra">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bra() =&gt; new vec3(b, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:bra">
<span class="show-code">Code</span>
<strong>set bra</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:bra"
title="Permalink to vec4.set bra">#</a></h4>
<div class="doc">
<pre class="source">
set bra(vec3 arg) {
b = arg.r;
r = arg.g;
a = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bgr</strong>() <a class="anchor-link" href="#get:bgr"
title="Permalink to vec4.get bgr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bgr() =&gt; new vec3(b, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:bgr">
<span class="show-code">Code</span>
<strong>set bgr</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:bgr"
title="Permalink to vec4.set bgr">#</a></h4>
<div class="doc">
<pre class="source">
set bgr(vec3 arg) {
b = arg.r;
g = arg.g;
r = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:bga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bga</strong>() <a class="anchor-link" href="#get:bga"
title="Permalink to vec4.get bga">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bga() =&gt; new vec3(b, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:bga">
<span class="show-code">Code</span>
<strong>set bga</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:bga"
title="Permalink to vec4.set bga">#</a></h4>
<div class="doc">
<pre class="source">
set bga(vec3 arg) {
b = arg.r;
g = arg.g;
a = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:bar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bar</strong>() <a class="anchor-link" href="#get:bar"
title="Permalink to vec4.get bar">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bar() =&gt; new vec3(b, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:bar">
<span class="show-code">Code</span>
<strong>set bar</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:bar"
title="Permalink to vec4.set bar">#</a></h4>
<div class="doc">
<pre class="source">
set bar(vec3 arg) {
b = arg.r;
a = arg.g;
r = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:bag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bag</strong>() <a class="anchor-link" href="#get:bag"
title="Permalink to vec4.get bag">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bag() =&gt; new vec3(b, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:bag">
<span class="show-code">Code</span>
<strong>set bag</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:bag"
title="Permalink to vec4.set bag">#</a></h4>
<div class="doc">
<pre class="source">
set bag(vec3 arg) {
b = arg.r;
a = arg.g;
g = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:arg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get arg</strong>() <a class="anchor-link" href="#get:arg"
title="Permalink to vec4.get arg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get arg() =&gt; new vec3(a, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:arg">
<span class="show-code">Code</span>
<strong>set arg</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:arg"
title="Permalink to vec4.set arg">#</a></h4>
<div class="doc">
<pre class="source">
set arg(vec3 arg) {
a = arg.r;
r = arg.g;
g = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:arb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get arb</strong>() <a class="anchor-link" href="#get:arb"
title="Permalink to vec4.get arb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get arb() =&gt; new vec3(a, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:arb">
<span class="show-code">Code</span>
<strong>set arb</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:arb"
title="Permalink to vec4.set arb">#</a></h4>
<div class="doc">
<pre class="source">
set arb(vec3 arg) {
a = arg.r;
r = arg.g;
b = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:agr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get agr</strong>() <a class="anchor-link" href="#get:agr"
title="Permalink to vec4.get agr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get agr() =&gt; new vec3(a, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:agr">
<span class="show-code">Code</span>
<strong>set agr</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:agr"
title="Permalink to vec4.set agr">#</a></h4>
<div class="doc">
<pre class="source">
set agr(vec3 arg) {
a = arg.r;
g = arg.g;
r = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:agb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get agb</strong>() <a class="anchor-link" href="#get:agb"
title="Permalink to vec4.get agb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get agb() =&gt; new vec3(a, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:agb">
<span class="show-code">Code</span>
<strong>set agb</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:agb"
title="Permalink to vec4.set agb">#</a></h4>
<div class="doc">
<pre class="source">
set agb(vec3 arg) {
a = arg.r;
g = arg.g;
b = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:abr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get abr</strong>() <a class="anchor-link" href="#get:abr"
title="Permalink to vec4.get abr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get abr() =&gt; new vec3(a, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:abr">
<span class="show-code">Code</span>
<strong>set abr</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:abr"
title="Permalink to vec4.set abr">#</a></h4>
<div class="doc">
<pre class="source">
set abr(vec3 arg) {
a = arg.r;
b = arg.g;
r = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:abg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get abg</strong>() <a class="anchor-link" href="#get:abg"
title="Permalink to vec4.get abg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get abg() =&gt; new vec3(a, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:abg">
<span class="show-code">Code</span>
<strong>set abg</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:abg"
title="Permalink to vec4.set abg">#</a></h4>
<div class="doc">
<pre class="source">
set abg(vec3 arg) {
a = arg.r;
b = arg.g;
g = arg.b;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgba</strong>() <a class="anchor-link" href="#get:rgba"
title="Permalink to vec4.get rgba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgba() =&gt; new vec4(r, g, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rgba">
<span class="show-code">Code</span>
<strong>set rgba</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:rgba"
title="Permalink to vec4.set rgba">#</a></h4>
<div class="doc">
<pre class="source">
set rgba(vec4 arg) {
r = arg.r;
g = arg.g;
b = arg.b;
a = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgab</strong>() <a class="anchor-link" href="#get:rgab"
title="Permalink to vec4.get rgab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgab() =&gt; new vec4(r, g, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rgab">
<span class="show-code">Code</span>
<strong>set rgab</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:rgab"
title="Permalink to vec4.set rgab">#</a></h4>
<div class="doc">
<pre class="source">
set rgab(vec4 arg) {
r = arg.r;
g = arg.g;
a = arg.b;
b = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbga</strong>() <a class="anchor-link" href="#get:rbga"
title="Permalink to vec4.get rbga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbga() =&gt; new vec4(r, b, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rbga">
<span class="show-code">Code</span>
<strong>set rbga</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:rbga"
title="Permalink to vec4.set rbga">#</a></h4>
<div class="doc">
<pre class="source">
set rbga(vec4 arg) {
r = arg.r;
b = arg.g;
g = arg.b;
a = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbag</strong>() <a class="anchor-link" href="#get:rbag"
title="Permalink to vec4.get rbag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbag() =&gt; new vec4(r, b, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rbag">
<span class="show-code">Code</span>
<strong>set rbag</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:rbag"
title="Permalink to vec4.set rbag">#</a></h4>
<div class="doc">
<pre class="source">
set rbag(vec4 arg) {
r = arg.r;
b = arg.g;
a = arg.b;
g = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ragb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ragb</strong>() <a class="anchor-link" href="#get:ragb"
title="Permalink to vec4.get ragb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ragb() =&gt; new vec4(r, a, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ragb">
<span class="show-code">Code</span>
<strong>set ragb</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:ragb"
title="Permalink to vec4.set ragb">#</a></h4>
<div class="doc">
<pre class="source">
set ragb(vec4 arg) {
r = arg.r;
a = arg.g;
g = arg.b;
b = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:rabg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rabg</strong>() <a class="anchor-link" href="#get:rabg"
title="Permalink to vec4.get rabg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rabg() =&gt; new vec4(r, a, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:rabg">
<span class="show-code">Code</span>
<strong>set rabg</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:rabg"
title="Permalink to vec4.set rabg">#</a></h4>
<div class="doc">
<pre class="source">
set rabg(vec4 arg) {
r = arg.r;
a = arg.g;
b = arg.b;
g = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:grba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grba</strong>() <a class="anchor-link" href="#get:grba"
title="Permalink to vec4.get grba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grba() =&gt; new vec4(g, r, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:grba">
<span class="show-code">Code</span>
<strong>set grba</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:grba"
title="Permalink to vec4.set grba">#</a></h4>
<div class="doc">
<pre class="source">
set grba(vec4 arg) {
g = arg.r;
r = arg.g;
b = arg.b;
a = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:grab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grab</strong>() <a class="anchor-link" href="#get:grab"
title="Permalink to vec4.get grab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grab() =&gt; new vec4(g, r, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:grab">
<span class="show-code">Code</span>
<strong>set grab</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:grab"
title="Permalink to vec4.set grab">#</a></h4>
<div class="doc">
<pre class="source">
set grab(vec4 arg) {
g = arg.r;
r = arg.g;
a = arg.b;
b = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbra</strong>() <a class="anchor-link" href="#get:gbra"
title="Permalink to vec4.get gbra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbra() =&gt; new vec4(g, b, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:gbra">
<span class="show-code">Code</span>
<strong>set gbra</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:gbra"
title="Permalink to vec4.set gbra">#</a></h4>
<div class="doc">
<pre class="source">
set gbra(vec4 arg) {
g = arg.r;
b = arg.g;
r = arg.b;
a = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbar</strong>() <a class="anchor-link" href="#get:gbar"
title="Permalink to vec4.get gbar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbar() =&gt; new vec4(g, b, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:gbar">
<span class="show-code">Code</span>
<strong>set gbar</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:gbar"
title="Permalink to vec4.set gbar">#</a></h4>
<div class="doc">
<pre class="source">
set gbar(vec4 arg) {
g = arg.r;
b = arg.g;
a = arg.b;
r = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:garb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get garb</strong>() <a class="anchor-link" href="#get:garb"
title="Permalink to vec4.get garb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get garb() =&gt; new vec4(g, a, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:garb">
<span class="show-code">Code</span>
<strong>set garb</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:garb"
title="Permalink to vec4.set garb">#</a></h4>
<div class="doc">
<pre class="source">
set garb(vec4 arg) {
g = arg.r;
a = arg.g;
r = arg.b;
b = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:gabr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gabr</strong>() <a class="anchor-link" href="#get:gabr"
title="Permalink to vec4.get gabr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gabr() =&gt; new vec4(g, a, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:gabr">
<span class="show-code">Code</span>
<strong>set gabr</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:gabr"
title="Permalink to vec4.set gabr">#</a></h4>
<div class="doc">
<pre class="source">
set gabr(vec4 arg) {
g = arg.r;
a = arg.g;
b = arg.b;
r = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:brga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brga</strong>() <a class="anchor-link" href="#get:brga"
title="Permalink to vec4.get brga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brga() =&gt; new vec4(b, r, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:brga">
<span class="show-code">Code</span>
<strong>set brga</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:brga"
title="Permalink to vec4.set brga">#</a></h4>
<div class="doc">
<pre class="source">
set brga(vec4 arg) {
b = arg.r;
r = arg.g;
g = arg.b;
a = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:brag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brag</strong>() <a class="anchor-link" href="#get:brag"
title="Permalink to vec4.get brag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brag() =&gt; new vec4(b, r, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:brag">
<span class="show-code">Code</span>
<strong>set brag</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:brag"
title="Permalink to vec4.set brag">#</a></h4>
<div class="doc">
<pre class="source">
set brag(vec4 arg) {
b = arg.r;
r = arg.g;
a = arg.b;
g = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgra</strong>() <a class="anchor-link" href="#get:bgra"
title="Permalink to vec4.get bgra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgra() =&gt; new vec4(b, g, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="set:bgra">
<span class="show-code">Code</span>
<strong>set bgra</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:bgra"
title="Permalink to vec4.set bgra">#</a></h4>
<div class="doc">
<pre class="source">
set bgra(vec4 arg) {
b = arg.r;
g = arg.g;
r = arg.b;
a = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgar</strong>() <a class="anchor-link" href="#get:bgar"
title="Permalink to vec4.get bgar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgar() =&gt; new vec4(b, g, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:bgar">
<span class="show-code">Code</span>
<strong>set bgar</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:bgar"
title="Permalink to vec4.set bgar">#</a></h4>
<div class="doc">
<pre class="source">
set bgar(vec4 arg) {
b = arg.r;
g = arg.g;
a = arg.b;
r = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:barg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get barg</strong>() <a class="anchor-link" href="#get:barg"
title="Permalink to vec4.get barg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get barg() =&gt; new vec4(b, a, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:barg">
<span class="show-code">Code</span>
<strong>set barg</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:barg"
title="Permalink to vec4.set barg">#</a></h4>
<div class="doc">
<pre class="source">
set barg(vec4 arg) {
b = arg.r;
a = arg.g;
r = arg.b;
g = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:bagr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bagr</strong>() <a class="anchor-link" href="#get:bagr"
title="Permalink to vec4.get bagr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bagr() =&gt; new vec4(b, a, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:bagr">
<span class="show-code">Code</span>
<strong>set bagr</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:bagr"
title="Permalink to vec4.set bagr">#</a></h4>
<div class="doc">
<pre class="source">
set bagr(vec4 arg) {
b = arg.r;
a = arg.g;
g = arg.b;
r = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:argb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get argb</strong>() <a class="anchor-link" href="#get:argb"
title="Permalink to vec4.get argb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get argb() =&gt; new vec4(a, r, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:argb">
<span class="show-code">Code</span>
<strong>set argb</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:argb"
title="Permalink to vec4.set argb">#</a></h4>
<div class="doc">
<pre class="source">
set argb(vec4 arg) {
a = arg.r;
r = arg.g;
g = arg.b;
b = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:arbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arbg</strong>() <a class="anchor-link" href="#get:arbg"
title="Permalink to vec4.get arbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arbg() =&gt; new vec4(a, r, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:arbg">
<span class="show-code">Code</span>
<strong>set arbg</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:arbg"
title="Permalink to vec4.set arbg">#</a></h4>
<div class="doc">
<pre class="source">
set arbg(vec4 arg) {
a = arg.r;
r = arg.g;
b = arg.b;
g = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:agrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agrb</strong>() <a class="anchor-link" href="#get:agrb"
title="Permalink to vec4.get agrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agrb() =&gt; new vec4(a, g, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="set:agrb">
<span class="show-code">Code</span>
<strong>set agrb</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:agrb"
title="Permalink to vec4.set agrb">#</a></h4>
<div class="doc">
<pre class="source">
set agrb(vec4 arg) {
a = arg.r;
g = arg.g;
r = arg.b;
b = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:agbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agbr</strong>() <a class="anchor-link" href="#get:agbr"
title="Permalink to vec4.get agbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agbr() =&gt; new vec4(a, g, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:agbr">
<span class="show-code">Code</span>
<strong>set agbr</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:agbr"
title="Permalink to vec4.set agbr">#</a></h4>
<div class="doc">
<pre class="source">
set agbr(vec4 arg) {
a = arg.r;
g = arg.g;
b = arg.b;
r = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:abrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abrg</strong>() <a class="anchor-link" href="#get:abrg"
title="Permalink to vec4.get abrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abrg() =&gt; new vec4(a, b, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="set:abrg">
<span class="show-code">Code</span>
<strong>set abrg</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:abrg"
title="Permalink to vec4.set abrg">#</a></h4>
<div class="doc">
<pre class="source">
set abrg(vec4 arg) {
a = arg.r;
b = arg.g;
r = arg.b;
g = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:abgr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abgr</strong>() <a class="anchor-link" href="#get:abgr"
title="Permalink to vec4.get abgr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abgr() =&gt; new vec4(a, b, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="set:abgr">
<span class="show-code">Code</span>
<strong>set abgr</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:abgr"
title="Permalink to vec4.set abgr">#</a></h4>
<div class="doc">
<pre class="source">
set abgr(vec4 arg) {
a = arg.r;
b = arg.g;
g = arg.b;
r = arg.a;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:st">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get st</strong>() <a class="anchor-link" href="#get:st"
title="Permalink to vec4.get st">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get st() =&gt; new vec2(s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:st">
<span class="show-code">Code</span>
<strong>set st</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:st"
title="Permalink to vec4.set st">#</a></h4>
<div class="doc">
<pre class="source">
set st(vec2 arg) {
s = arg.s;
t = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:sp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get sp</strong>() <a class="anchor-link" href="#get:sp"
title="Permalink to vec4.get sp">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get sp() =&gt; new vec2(s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:sp">
<span class="show-code">Code</span>
<strong>set sp</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:sp"
title="Permalink to vec4.set sp">#</a></h4>
<div class="doc">
<pre class="source">
set sp(vec2 arg) {
s = arg.s;
p = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:sq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get sq</strong>() <a class="anchor-link" href="#get:sq"
title="Permalink to vec4.get sq">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get sq() =&gt; new vec2(s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:sq">
<span class="show-code">Code</span>
<strong>set sq</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:sq"
title="Permalink to vec4.set sq">#</a></h4>
<div class="doc">
<pre class="source">
set sq(vec2 arg) {
s = arg.s;
q = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get ts</strong>() <a class="anchor-link" href="#get:ts"
title="Permalink to vec4.get ts">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get ts() =&gt; new vec2(t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ts">
<span class="show-code">Code</span>
<strong>set ts</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:ts"
title="Permalink to vec4.set ts">#</a></h4>
<div class="doc">
<pre class="source">
set ts(vec2 arg) {
t = arg.s;
s = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get tp</strong>() <a class="anchor-link" href="#get:tp"
title="Permalink to vec4.get tp">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get tp() =&gt; new vec2(t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tp">
<span class="show-code">Code</span>
<strong>set tp</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:tp"
title="Permalink to vec4.set tp">#</a></h4>
<div class="doc">
<pre class="source">
set tp(vec2 arg) {
t = arg.s;
p = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get tq</strong>() <a class="anchor-link" href="#get:tq"
title="Permalink to vec4.get tq">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get tq() =&gt; new vec2(t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tq">
<span class="show-code">Code</span>
<strong>set tq</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:tq"
title="Permalink to vec4.set tq">#</a></h4>
<div class="doc">
<pre class="source">
set tq(vec2 arg) {
t = arg.s;
q = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get ps</strong>() <a class="anchor-link" href="#get:ps"
title="Permalink to vec4.get ps">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get ps() =&gt; new vec2(p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ps">
<span class="show-code">Code</span>
<strong>set ps</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:ps"
title="Permalink to vec4.set ps">#</a></h4>
<div class="doc">
<pre class="source">
set ps(vec2 arg) {
p = arg.s;
s = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:pt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get pt</strong>() <a class="anchor-link" href="#get:pt"
title="Permalink to vec4.get pt">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get pt() =&gt; new vec2(p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:pt">
<span class="show-code">Code</span>
<strong>set pt</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:pt"
title="Permalink to vec4.set pt">#</a></h4>
<div class="doc">
<pre class="source">
set pt(vec2 arg) {
p = arg.s;
t = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:pq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get pq</strong>() <a class="anchor-link" href="#get:pq"
title="Permalink to vec4.get pq">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get pq() =&gt; new vec2(p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:pq">
<span class="show-code">Code</span>
<strong>set pq</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:pq"
title="Permalink to vec4.set pq">#</a></h4>
<div class="doc">
<pre class="source">
set pq(vec2 arg) {
p = arg.s;
q = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get qs</strong>() <a class="anchor-link" href="#get:qs"
title="Permalink to vec4.get qs">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get qs() =&gt; new vec2(q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qs">
<span class="show-code">Code</span>
<strong>set qs</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:qs"
title="Permalink to vec4.set qs">#</a></h4>
<div class="doc">
<pre class="source">
set qs(vec2 arg) {
q = arg.s;
s = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get qt</strong>() <a class="anchor-link" href="#get:qt"
title="Permalink to vec4.get qt">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get qt() =&gt; new vec2(q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qt">
<span class="show-code">Code</span>
<strong>set qt</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:qt"
title="Permalink to vec4.set qt">#</a></h4>
<div class="doc">
<pre class="source">
set qt(vec2 arg) {
q = arg.s;
t = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get qp</strong>() <a class="anchor-link" href="#get:qp"
title="Permalink to vec4.get qp">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get qp() =&gt; new vec2(q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qp">
<span class="show-code">Code</span>
<strong>set qp</strong>(<a href="../VectorMath/vec2.html">vec2</a> arg) <a class="anchor-link" href="#set:qp"
title="Permalink to vec4.set qp">#</a></h4>
<div class="doc">
<pre class="source">
set qp(vec2 arg) {
q = arg.s;
p = arg.t;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:stp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get stp</strong>() <a class="anchor-link" href="#get:stp"
title="Permalink to vec4.get stp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get stp() =&gt; new vec3(s, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:stp">
<span class="show-code">Code</span>
<strong>set stp</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:stp"
title="Permalink to vec4.set stp">#</a></h4>
<div class="doc">
<pre class="source">
set stp(vec3 arg) {
s = arg.s;
t = arg.t;
p = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:stq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get stq</strong>() <a class="anchor-link" href="#get:stq"
title="Permalink to vec4.get stq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get stq() =&gt; new vec3(s, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:stq">
<span class="show-code">Code</span>
<strong>set stq</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:stq"
title="Permalink to vec4.set stq">#</a></h4>
<div class="doc">
<pre class="source">
set stq(vec3 arg) {
s = arg.s;
t = arg.t;
q = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:spt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get spt</strong>() <a class="anchor-link" href="#get:spt"
title="Permalink to vec4.get spt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get spt() =&gt; new vec3(s, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:spt">
<span class="show-code">Code</span>
<strong>set spt</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:spt"
title="Permalink to vec4.set spt">#</a></h4>
<div class="doc">
<pre class="source">
set spt(vec3 arg) {
s = arg.s;
p = arg.t;
t = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:spq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get spq</strong>() <a class="anchor-link" href="#get:spq"
title="Permalink to vec4.get spq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get spq() =&gt; new vec3(s, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:spq">
<span class="show-code">Code</span>
<strong>set spq</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:spq"
title="Permalink to vec4.set spq">#</a></h4>
<div class="doc">
<pre class="source">
set spq(vec3 arg) {
s = arg.s;
p = arg.t;
q = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get sqt</strong>() <a class="anchor-link" href="#get:sqt"
title="Permalink to vec4.get sqt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get sqt() =&gt; new vec3(s, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:sqt">
<span class="show-code">Code</span>
<strong>set sqt</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:sqt"
title="Permalink to vec4.set sqt">#</a></h4>
<div class="doc">
<pre class="source">
set sqt(vec3 arg) {
s = arg.s;
q = arg.t;
t = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get sqp</strong>() <a class="anchor-link" href="#get:sqp"
title="Permalink to vec4.get sqp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get sqp() =&gt; new vec3(s, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:sqp">
<span class="show-code">Code</span>
<strong>set sqp</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:sqp"
title="Permalink to vec4.set sqp">#</a></h4>
<div class="doc">
<pre class="source">
set sqp(vec3 arg) {
s = arg.s;
q = arg.t;
p = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tsp</strong>() <a class="anchor-link" href="#get:tsp"
title="Permalink to vec4.get tsp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tsp() =&gt; new vec3(t, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tsp">
<span class="show-code">Code</span>
<strong>set tsp</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:tsp"
title="Permalink to vec4.set tsp">#</a></h4>
<div class="doc">
<pre class="source">
set tsp(vec3 arg) {
t = arg.s;
s = arg.t;
p = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tsq</strong>() <a class="anchor-link" href="#get:tsq"
title="Permalink to vec4.get tsq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tsq() =&gt; new vec3(t, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tsq">
<span class="show-code">Code</span>
<strong>set tsq</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:tsq"
title="Permalink to vec4.set tsq">#</a></h4>
<div class="doc">
<pre class="source">
set tsq(vec3 arg) {
t = arg.s;
s = arg.t;
q = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tps</strong>() <a class="anchor-link" href="#get:tps"
title="Permalink to vec4.get tps">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tps() =&gt; new vec3(t, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tps">
<span class="show-code">Code</span>
<strong>set tps</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:tps"
title="Permalink to vec4.set tps">#</a></h4>
<div class="doc">
<pre class="source">
set tps(vec3 arg) {
t = arg.s;
p = arg.t;
s = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tpq</strong>() <a class="anchor-link" href="#get:tpq"
title="Permalink to vec4.get tpq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tpq() =&gt; new vec3(t, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tpq">
<span class="show-code">Code</span>
<strong>set tpq</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:tpq"
title="Permalink to vec4.set tpq">#</a></h4>
<div class="doc">
<pre class="source">
set tpq(vec3 arg) {
t = arg.s;
p = arg.t;
q = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tqs</strong>() <a class="anchor-link" href="#get:tqs"
title="Permalink to vec4.get tqs">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tqs() =&gt; new vec3(t, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tqs">
<span class="show-code">Code</span>
<strong>set tqs</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:tqs"
title="Permalink to vec4.set tqs">#</a></h4>
<div class="doc">
<pre class="source">
set tqs(vec3 arg) {
t = arg.s;
q = arg.t;
s = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tqp</strong>() <a class="anchor-link" href="#get:tqp"
title="Permalink to vec4.get tqp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tqp() =&gt; new vec3(t, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tqp">
<span class="show-code">Code</span>
<strong>set tqp</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:tqp"
title="Permalink to vec4.set tqp">#</a></h4>
<div class="doc">
<pre class="source">
set tqp(vec3 arg) {
t = arg.s;
q = arg.t;
p = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:pst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get pst</strong>() <a class="anchor-link" href="#get:pst"
title="Permalink to vec4.get pst">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get pst() =&gt; new vec3(p, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:pst">
<span class="show-code">Code</span>
<strong>set pst</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:pst"
title="Permalink to vec4.set pst">#</a></h4>
<div class="doc">
<pre class="source">
set pst(vec3 arg) {
p = arg.s;
s = arg.t;
t = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:psq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get psq</strong>() <a class="anchor-link" href="#get:psq"
title="Permalink to vec4.get psq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get psq() =&gt; new vec3(p, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:psq">
<span class="show-code">Code</span>
<strong>set psq</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:psq"
title="Permalink to vec4.set psq">#</a></h4>
<div class="doc">
<pre class="source">
set psq(vec3 arg) {
p = arg.s;
s = arg.t;
q = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:pts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get pts</strong>() <a class="anchor-link" href="#get:pts"
title="Permalink to vec4.get pts">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get pts() =&gt; new vec3(p, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:pts">
<span class="show-code">Code</span>
<strong>set pts</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:pts"
title="Permalink to vec4.set pts">#</a></h4>
<div class="doc">
<pre class="source">
set pts(vec3 arg) {
p = arg.s;
t = arg.t;
s = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ptq</strong>() <a class="anchor-link" href="#get:ptq"
title="Permalink to vec4.get ptq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ptq() =&gt; new vec3(p, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ptq">
<span class="show-code">Code</span>
<strong>set ptq</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:ptq"
title="Permalink to vec4.set ptq">#</a></h4>
<div class="doc">
<pre class="source">
set ptq(vec3 arg) {
p = arg.s;
t = arg.t;
q = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get pqs</strong>() <a class="anchor-link" href="#get:pqs"
title="Permalink to vec4.get pqs">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get pqs() =&gt; new vec3(p, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:pqs">
<span class="show-code">Code</span>
<strong>set pqs</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:pqs"
title="Permalink to vec4.set pqs">#</a></h4>
<div class="doc">
<pre class="source">
set pqs(vec3 arg) {
p = arg.s;
q = arg.t;
s = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get pqt</strong>() <a class="anchor-link" href="#get:pqt"
title="Permalink to vec4.get pqt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get pqt() =&gt; new vec3(p, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:pqt">
<span class="show-code">Code</span>
<strong>set pqt</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:pqt"
title="Permalink to vec4.set pqt">#</a></h4>
<div class="doc">
<pre class="source">
set pqt(vec3 arg) {
p = arg.s;
q = arg.t;
t = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qst</strong>() <a class="anchor-link" href="#get:qst"
title="Permalink to vec4.get qst">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qst() =&gt; new vec3(q, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qst">
<span class="show-code">Code</span>
<strong>set qst</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:qst"
title="Permalink to vec4.set qst">#</a></h4>
<div class="doc">
<pre class="source">
set qst(vec3 arg) {
q = arg.s;
s = arg.t;
t = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qsp</strong>() <a class="anchor-link" href="#get:qsp"
title="Permalink to vec4.get qsp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qsp() =&gt; new vec3(q, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qsp">
<span class="show-code">Code</span>
<strong>set qsp</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:qsp"
title="Permalink to vec4.set qsp">#</a></h4>
<div class="doc">
<pre class="source">
set qsp(vec3 arg) {
q = arg.s;
s = arg.t;
p = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qts</strong>() <a class="anchor-link" href="#get:qts"
title="Permalink to vec4.get qts">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qts() =&gt; new vec3(q, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qts">
<span class="show-code">Code</span>
<strong>set qts</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:qts"
title="Permalink to vec4.set qts">#</a></h4>
<div class="doc">
<pre class="source">
set qts(vec3 arg) {
q = arg.s;
t = arg.t;
s = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qtp</strong>() <a class="anchor-link" href="#get:qtp"
title="Permalink to vec4.get qtp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qtp() =&gt; new vec3(q, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qtp">
<span class="show-code">Code</span>
<strong>set qtp</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:qtp"
title="Permalink to vec4.set qtp">#</a></h4>
<div class="doc">
<pre class="source">
set qtp(vec3 arg) {
q = arg.s;
t = arg.t;
p = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qps</strong>() <a class="anchor-link" href="#get:qps"
title="Permalink to vec4.get qps">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qps() =&gt; new vec3(q, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qps">
<span class="show-code">Code</span>
<strong>set qps</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:qps"
title="Permalink to vec4.set qps">#</a></h4>
<div class="doc">
<pre class="source">
set qps(vec3 arg) {
q = arg.s;
p = arg.t;
s = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qpt</strong>() <a class="anchor-link" href="#get:qpt"
title="Permalink to vec4.get qpt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qpt() =&gt; new vec3(q, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qpt">
<span class="show-code">Code</span>
<strong>set qpt</strong>(<a href="../VectorMath/vec3.html">vec3</a> arg) <a class="anchor-link" href="#set:qpt"
title="Permalink to vec4.set qpt">#</a></h4>
<div class="doc">
<pre class="source">
set qpt(vec3 arg) {
q = arg.s;
p = arg.t;
t = arg.p;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:stpq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stpq</strong>() <a class="anchor-link" href="#get:stpq"
title="Permalink to vec4.get stpq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stpq() =&gt; new vec4(s, t, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:stpq">
<span class="show-code">Code</span>
<strong>set stpq</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:stpq"
title="Permalink to vec4.set stpq">#</a></h4>
<div class="doc">
<pre class="source">
set stpq(vec4 arg) {
s = arg.s;
t = arg.t;
p = arg.p;
q = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:stqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stqp</strong>() <a class="anchor-link" href="#get:stqp"
title="Permalink to vec4.get stqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stqp() =&gt; new vec4(s, t, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:stqp">
<span class="show-code">Code</span>
<strong>set stqp</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:stqp"
title="Permalink to vec4.set stqp">#</a></h4>
<div class="doc">
<pre class="source">
set stqp(vec4 arg) {
s = arg.s;
t = arg.t;
q = arg.p;
p = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:sptq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sptq</strong>() <a class="anchor-link" href="#get:sptq"
title="Permalink to vec4.get sptq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sptq() =&gt; new vec4(s, p, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:sptq">
<span class="show-code">Code</span>
<strong>set sptq</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:sptq"
title="Permalink to vec4.set sptq">#</a></h4>
<div class="doc">
<pre class="source">
set sptq(vec4 arg) {
s = arg.s;
p = arg.t;
t = arg.p;
q = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:spqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get spqt</strong>() <a class="anchor-link" href="#get:spqt"
title="Permalink to vec4.get spqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get spqt() =&gt; new vec4(s, p, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:spqt">
<span class="show-code">Code</span>
<strong>set spqt</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:spqt"
title="Permalink to vec4.set spqt">#</a></h4>
<div class="doc">
<pre class="source">
set spqt(vec4 arg) {
s = arg.s;
p = arg.t;
q = arg.p;
t = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqtp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqtp</strong>() <a class="anchor-link" href="#get:sqtp"
title="Permalink to vec4.get sqtp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqtp() =&gt; new vec4(s, q, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:sqtp">
<span class="show-code">Code</span>
<strong>set sqtp</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:sqtp"
title="Permalink to vec4.set sqtp">#</a></h4>
<div class="doc">
<pre class="source">
set sqtp(vec4 arg) {
s = arg.s;
q = arg.t;
t = arg.p;
p = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqpt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqpt</strong>() <a class="anchor-link" href="#get:sqpt"
title="Permalink to vec4.get sqpt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqpt() =&gt; new vec4(s, q, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:sqpt">
<span class="show-code">Code</span>
<strong>set sqpt</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:sqpt"
title="Permalink to vec4.set sqpt">#</a></h4>
<div class="doc">
<pre class="source">
set sqpt(vec4 arg) {
s = arg.s;
q = arg.t;
p = arg.p;
t = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tspq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tspq</strong>() <a class="anchor-link" href="#get:tspq"
title="Permalink to vec4.get tspq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tspq() =&gt; new vec4(t, s, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tspq">
<span class="show-code">Code</span>
<strong>set tspq</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:tspq"
title="Permalink to vec4.set tspq">#</a></h4>
<div class="doc">
<pre class="source">
set tspq(vec4 arg) {
t = arg.s;
s = arg.t;
p = arg.p;
q = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tsqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tsqp</strong>() <a class="anchor-link" href="#get:tsqp"
title="Permalink to vec4.get tsqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tsqp() =&gt; new vec4(t, s, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tsqp">
<span class="show-code">Code</span>
<strong>set tsqp</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:tsqp"
title="Permalink to vec4.set tsqp">#</a></h4>
<div class="doc">
<pre class="source">
set tsqp(vec4 arg) {
t = arg.s;
s = arg.t;
q = arg.p;
p = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tpsq</strong>() <a class="anchor-link" href="#get:tpsq"
title="Permalink to vec4.get tpsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tpsq() =&gt; new vec4(t, p, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tpsq">
<span class="show-code">Code</span>
<strong>set tpsq</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:tpsq"
title="Permalink to vec4.set tpsq">#</a></h4>
<div class="doc">
<pre class="source">
set tpsq(vec4 arg) {
t = arg.s;
p = arg.t;
s = arg.p;
q = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tpqs</strong>() <a class="anchor-link" href="#get:tpqs"
title="Permalink to vec4.get tpqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tpqs() =&gt; new vec4(t, p, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tpqs">
<span class="show-code">Code</span>
<strong>set tpqs</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:tpqs"
title="Permalink to vec4.set tpqs">#</a></h4>
<div class="doc">
<pre class="source">
set tpqs(vec4 arg) {
t = arg.s;
p = arg.t;
q = arg.p;
s = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqsp</strong>() <a class="anchor-link" href="#get:tqsp"
title="Permalink to vec4.get tqsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqsp() =&gt; new vec4(t, q, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tqsp">
<span class="show-code">Code</span>
<strong>set tqsp</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:tqsp"
title="Permalink to vec4.set tqsp">#</a></h4>
<div class="doc">
<pre class="source">
set tqsp(vec4 arg) {
t = arg.s;
q = arg.t;
s = arg.p;
p = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqps</strong>() <a class="anchor-link" href="#get:tqps"
title="Permalink to vec4.get tqps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqps() =&gt; new vec4(t, q, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:tqps">
<span class="show-code">Code</span>
<strong>set tqps</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:tqps"
title="Permalink to vec4.set tqps">#</a></h4>
<div class="doc">
<pre class="source">
set tqps(vec4 arg) {
t = arg.s;
q = arg.t;
p = arg.p;
s = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:pstq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pstq</strong>() <a class="anchor-link" href="#get:pstq"
title="Permalink to vec4.get pstq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pstq() =&gt; new vec4(p, s, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:pstq">
<span class="show-code">Code</span>
<strong>set pstq</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:pstq"
title="Permalink to vec4.set pstq">#</a></h4>
<div class="doc">
<pre class="source">
set pstq(vec4 arg) {
p = arg.s;
s = arg.t;
t = arg.p;
q = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:psqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get psqt</strong>() <a class="anchor-link" href="#get:psqt"
title="Permalink to vec4.get psqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get psqt() =&gt; new vec4(p, s, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:psqt">
<span class="show-code">Code</span>
<strong>set psqt</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:psqt"
title="Permalink to vec4.set psqt">#</a></h4>
<div class="doc">
<pre class="source">
set psqt(vec4 arg) {
p = arg.s;
s = arg.t;
q = arg.p;
t = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptsq</strong>() <a class="anchor-link" href="#get:ptsq"
title="Permalink to vec4.get ptsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptsq() =&gt; new vec4(p, t, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ptsq">
<span class="show-code">Code</span>
<strong>set ptsq</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:ptsq"
title="Permalink to vec4.set ptsq">#</a></h4>
<div class="doc">
<pre class="source">
set ptsq(vec4 arg) {
p = arg.s;
t = arg.t;
s = arg.p;
q = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptqs</strong>() <a class="anchor-link" href="#get:ptqs"
title="Permalink to vec4.get ptqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptqs() =&gt; new vec4(p, t, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:ptqs">
<span class="show-code">Code</span>
<strong>set ptqs</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:ptqs"
title="Permalink to vec4.set ptqs">#</a></h4>
<div class="doc">
<pre class="source">
set ptqs(vec4 arg) {
p = arg.s;
t = arg.t;
q = arg.p;
s = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqst</strong>() <a class="anchor-link" href="#get:pqst"
title="Permalink to vec4.get pqst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqst() =&gt; new vec4(p, q, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:pqst">
<span class="show-code">Code</span>
<strong>set pqst</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:pqst"
title="Permalink to vec4.set pqst">#</a></h4>
<div class="doc">
<pre class="source">
set pqst(vec4 arg) {
p = arg.s;
q = arg.t;
s = arg.p;
t = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqts</strong>() <a class="anchor-link" href="#get:pqts"
title="Permalink to vec4.get pqts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqts() =&gt; new vec4(p, q, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:pqts">
<span class="show-code">Code</span>
<strong>set pqts</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:pqts"
title="Permalink to vec4.set pqts">#</a></h4>
<div class="doc">
<pre class="source">
set pqts(vec4 arg) {
p = arg.s;
q = arg.t;
t = arg.p;
s = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qstp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qstp</strong>() <a class="anchor-link" href="#get:qstp"
title="Permalink to vec4.get qstp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qstp() =&gt; new vec4(q, s, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qstp">
<span class="show-code">Code</span>
<strong>set qstp</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:qstp"
title="Permalink to vec4.set qstp">#</a></h4>
<div class="doc">
<pre class="source">
set qstp(vec4 arg) {
q = arg.s;
s = arg.t;
t = arg.p;
p = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qspt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qspt</strong>() <a class="anchor-link" href="#get:qspt"
title="Permalink to vec4.get qspt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qspt() =&gt; new vec4(q, s, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qspt">
<span class="show-code">Code</span>
<strong>set qspt</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:qspt"
title="Permalink to vec4.set qspt">#</a></h4>
<div class="doc">
<pre class="source">
set qspt(vec4 arg) {
q = arg.s;
s = arg.t;
p = arg.p;
t = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtsp</strong>() <a class="anchor-link" href="#get:qtsp"
title="Permalink to vec4.get qtsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtsp() =&gt; new vec4(q, t, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qtsp">
<span class="show-code">Code</span>
<strong>set qtsp</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:qtsp"
title="Permalink to vec4.set qtsp">#</a></h4>
<div class="doc">
<pre class="source">
set qtsp(vec4 arg) {
q = arg.s;
t = arg.t;
s = arg.p;
p = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtps</strong>() <a class="anchor-link" href="#get:qtps"
title="Permalink to vec4.get qtps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtps() =&gt; new vec4(q, t, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qtps">
<span class="show-code">Code</span>
<strong>set qtps</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:qtps"
title="Permalink to vec4.set qtps">#</a></h4>
<div class="doc">
<pre class="source">
set qtps(vec4 arg) {
q = arg.s;
t = arg.t;
p = arg.p;
s = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qpst</strong>() <a class="anchor-link" href="#get:qpst"
title="Permalink to vec4.get qpst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qpst() =&gt; new vec4(q, p, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qpst">
<span class="show-code">Code</span>
<strong>set qpst</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:qpst"
title="Permalink to vec4.set qpst">#</a></h4>
<div class="doc">
<pre class="source">
set qpst(vec4 arg) {
q = arg.s;
p = arg.t;
s = arg.p;
t = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qpts</strong>() <a class="anchor-link" href="#get:qpts"
title="Permalink to vec4.get qpts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qpts() =&gt; new vec4(q, p, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="set:qpts">
<span class="show-code">Code</span>
<strong>set qpts</strong>(<a href="../VectorMath/vec4.html">vec4</a> arg) <a class="anchor-link" href="#set:qpts"
title="Permalink to vec4.set qpts">#</a></h4>
<div class="doc">
<pre class="source">
set qpts(vec4 arg) {
q = arg.s;
p = arg.t;
t = arg.p;
s = arg.q;
}
</pre>
</div>
</div>
<div class="method"><h4 id="get:xx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get xx</strong>() <a class="anchor-link" href="#get:xx"
title="Permalink to vec4.get xx">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get xx() =&gt; new vec2(x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get yy</strong>() <a class="anchor-link" href="#get:yy"
title="Permalink to vec4.get yy">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get yy() =&gt; new vec2(y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get zz</strong>() <a class="anchor-link" href="#get:zz"
title="Permalink to vec4.get zz">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get zz() =&gt; new vec2(z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get ww</strong>() <a class="anchor-link" href="#get:ww"
title="Permalink to vec4.get ww">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get ww() =&gt; new vec2(w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xxx</strong>() <a class="anchor-link" href="#get:xxx"
title="Permalink to vec4.get xxx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xxx() =&gt; new vec3(x, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xxy</strong>() <a class="anchor-link" href="#get:xxy"
title="Permalink to vec4.get xxy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xxy() =&gt; new vec3(x, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xxz</strong>() <a class="anchor-link" href="#get:xxz"
title="Permalink to vec4.get xxz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xxz() =&gt; new vec3(x, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xxw</strong>() <a class="anchor-link" href="#get:xxw"
title="Permalink to vec4.get xxw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xxw() =&gt; new vec3(x, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xyx</strong>() <a class="anchor-link" href="#get:xyx"
title="Permalink to vec4.get xyx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xyx() =&gt; new vec3(x, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xyy</strong>() <a class="anchor-link" href="#get:xyy"
title="Permalink to vec4.get xyy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xyy() =&gt; new vec3(x, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xzx</strong>() <a class="anchor-link" href="#get:xzx"
title="Permalink to vec4.get xzx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xzx() =&gt; new vec3(x, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xzz</strong>() <a class="anchor-link" href="#get:xzz"
title="Permalink to vec4.get xzz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xzz() =&gt; new vec3(x, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xwx</strong>() <a class="anchor-link" href="#get:xwx"
title="Permalink to vec4.get xwx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xwx() =&gt; new vec3(x, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get xww</strong>() <a class="anchor-link" href="#get:xww"
title="Permalink to vec4.get xww">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get xww() =&gt; new vec3(x, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yxx</strong>() <a class="anchor-link" href="#get:yxx"
title="Permalink to vec4.get yxx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yxx() =&gt; new vec3(y, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yxy</strong>() <a class="anchor-link" href="#get:yxy"
title="Permalink to vec4.get yxy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yxy() =&gt; new vec3(y, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yyx</strong>() <a class="anchor-link" href="#get:yyx"
title="Permalink to vec4.get yyx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yyx() =&gt; new vec3(y, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yyy</strong>() <a class="anchor-link" href="#get:yyy"
title="Permalink to vec4.get yyy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yyy() =&gt; new vec3(y, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yyz</strong>() <a class="anchor-link" href="#get:yyz"
title="Permalink to vec4.get yyz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yyz() =&gt; new vec3(y, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yyw</strong>() <a class="anchor-link" href="#get:yyw"
title="Permalink to vec4.get yyw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yyw() =&gt; new vec3(y, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yzy</strong>() <a class="anchor-link" href="#get:yzy"
title="Permalink to vec4.get yzy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yzy() =&gt; new vec3(y, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yzz</strong>() <a class="anchor-link" href="#get:yzz"
title="Permalink to vec4.get yzz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yzz() =&gt; new vec3(y, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ywy</strong>() <a class="anchor-link" href="#get:ywy"
title="Permalink to vec4.get ywy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ywy() =&gt; new vec3(y, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get yww</strong>() <a class="anchor-link" href="#get:yww"
title="Permalink to vec4.get yww">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get yww() =&gt; new vec3(y, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zxx</strong>() <a class="anchor-link" href="#get:zxx"
title="Permalink to vec4.get zxx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zxx() =&gt; new vec3(z, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zxz</strong>() <a class="anchor-link" href="#get:zxz"
title="Permalink to vec4.get zxz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zxz() =&gt; new vec3(z, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zyy</strong>() <a class="anchor-link" href="#get:zyy"
title="Permalink to vec4.get zyy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zyy() =&gt; new vec3(z, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zyz</strong>() <a class="anchor-link" href="#get:zyz"
title="Permalink to vec4.get zyz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zyz() =&gt; new vec3(z, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zzx</strong>() <a class="anchor-link" href="#get:zzx"
title="Permalink to vec4.get zzx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zzx() =&gt; new vec3(z, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zzy</strong>() <a class="anchor-link" href="#get:zzy"
title="Permalink to vec4.get zzy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zzy() =&gt; new vec3(z, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zzz</strong>() <a class="anchor-link" href="#get:zzz"
title="Permalink to vec4.get zzz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zzz() =&gt; new vec3(z, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zzw</strong>() <a class="anchor-link" href="#get:zzw"
title="Permalink to vec4.get zzw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zzw() =&gt; new vec3(z, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zwz</strong>() <a class="anchor-link" href="#get:zwz"
title="Permalink to vec4.get zwz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zwz() =&gt; new vec3(z, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get zww</strong>() <a class="anchor-link" href="#get:zww"
title="Permalink to vec4.get zww">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get zww() =&gt; new vec3(z, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wxx</strong>() <a class="anchor-link" href="#get:wxx"
title="Permalink to vec4.get wxx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wxx() =&gt; new vec3(w, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wxw</strong>() <a class="anchor-link" href="#get:wxw"
title="Permalink to vec4.get wxw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wxw() =&gt; new vec3(w, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wyy</strong>() <a class="anchor-link" href="#get:wyy"
title="Permalink to vec4.get wyy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wyy() =&gt; new vec3(w, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wyw</strong>() <a class="anchor-link" href="#get:wyw"
title="Permalink to vec4.get wyw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wyw() =&gt; new vec3(w, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wzz</strong>() <a class="anchor-link" href="#get:wzz"
title="Permalink to vec4.get wzz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wzz() =&gt; new vec3(w, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wzw</strong>() <a class="anchor-link" href="#get:wzw"
title="Permalink to vec4.get wzw">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wzw() =&gt; new vec3(w, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wwx</strong>() <a class="anchor-link" href="#get:wwx"
title="Permalink to vec4.get wwx">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wwx() =&gt; new vec3(w, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wwy</strong>() <a class="anchor-link" href="#get:wwy"
title="Permalink to vec4.get wwy">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wwy() =&gt; new vec3(w, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get wwz</strong>() <a class="anchor-link" href="#get:wwz"
title="Permalink to vec4.get wwz">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get wwz() =&gt; new vec3(w, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:www">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get www</strong>() <a class="anchor-link" href="#get:www"
title="Permalink to vec4.get www">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get www() =&gt; new vec3(w, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxxx</strong>() <a class="anchor-link" href="#get:xxxx"
title="Permalink to vec4.get xxxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxxx() =&gt; new vec4(x, x, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxxy</strong>() <a class="anchor-link" href="#get:xxxy"
title="Permalink to vec4.get xxxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxxy() =&gt; new vec4(x, x, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxxz</strong>() <a class="anchor-link" href="#get:xxxz"
title="Permalink to vec4.get xxxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxxz() =&gt; new vec4(x, x, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxxw</strong>() <a class="anchor-link" href="#get:xxxw"
title="Permalink to vec4.get xxxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxxw() =&gt; new vec4(x, x, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxyx</strong>() <a class="anchor-link" href="#get:xxyx"
title="Permalink to vec4.get xxyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxyx() =&gt; new vec4(x, x, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxyy</strong>() <a class="anchor-link" href="#get:xxyy"
title="Permalink to vec4.get xxyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxyy() =&gt; new vec4(x, x, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxyz</strong>() <a class="anchor-link" href="#get:xxyz"
title="Permalink to vec4.get xxyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxyz() =&gt; new vec4(x, x, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxyw</strong>() <a class="anchor-link" href="#get:xxyw"
title="Permalink to vec4.get xxyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxyw() =&gt; new vec4(x, x, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxzx</strong>() <a class="anchor-link" href="#get:xxzx"
title="Permalink to vec4.get xxzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxzx() =&gt; new vec4(x, x, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxzy</strong>() <a class="anchor-link" href="#get:xxzy"
title="Permalink to vec4.get xxzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxzy() =&gt; new vec4(x, x, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxzz</strong>() <a class="anchor-link" href="#get:xxzz"
title="Permalink to vec4.get xxzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxzz() =&gt; new vec4(x, x, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxzw</strong>() <a class="anchor-link" href="#get:xxzw"
title="Permalink to vec4.get xxzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxzw() =&gt; new vec4(x, x, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxwx</strong>() <a class="anchor-link" href="#get:xxwx"
title="Permalink to vec4.get xxwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxwx() =&gt; new vec4(x, x, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxwy</strong>() <a class="anchor-link" href="#get:xxwy"
title="Permalink to vec4.get xxwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxwy() =&gt; new vec4(x, x, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxwz</strong>() <a class="anchor-link" href="#get:xxwz"
title="Permalink to vec4.get xxwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxwz() =&gt; new vec4(x, x, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xxww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xxww</strong>() <a class="anchor-link" href="#get:xxww"
title="Permalink to vec4.get xxww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xxww() =&gt; new vec4(x, x, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyxx</strong>() <a class="anchor-link" href="#get:xyxx"
title="Permalink to vec4.get xyxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyxx() =&gt; new vec4(x, y, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyxy</strong>() <a class="anchor-link" href="#get:xyxy"
title="Permalink to vec4.get xyxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyxy() =&gt; new vec4(x, y, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyxz</strong>() <a class="anchor-link" href="#get:xyxz"
title="Permalink to vec4.get xyxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyxz() =&gt; new vec4(x, y, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyxw</strong>() <a class="anchor-link" href="#get:xyxw"
title="Permalink to vec4.get xyxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyxw() =&gt; new vec4(x, y, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyyx</strong>() <a class="anchor-link" href="#get:xyyx"
title="Permalink to vec4.get xyyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyyx() =&gt; new vec4(x, y, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyyy</strong>() <a class="anchor-link" href="#get:xyyy"
title="Permalink to vec4.get xyyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyyy() =&gt; new vec4(x, y, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyyz</strong>() <a class="anchor-link" href="#get:xyyz"
title="Permalink to vec4.get xyyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyyz() =&gt; new vec4(x, y, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyyw</strong>() <a class="anchor-link" href="#get:xyyw"
title="Permalink to vec4.get xyyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyyw() =&gt; new vec4(x, y, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyzx</strong>() <a class="anchor-link" href="#get:xyzx"
title="Permalink to vec4.get xyzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyzx() =&gt; new vec4(x, y, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyzy</strong>() <a class="anchor-link" href="#get:xyzy"
title="Permalink to vec4.get xyzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyzy() =&gt; new vec4(x, y, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyzz</strong>() <a class="anchor-link" href="#get:xyzz"
title="Permalink to vec4.get xyzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyzz() =&gt; new vec4(x, y, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xywx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xywx</strong>() <a class="anchor-link" href="#get:xywx"
title="Permalink to vec4.get xywx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xywx() =&gt; new vec4(x, y, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xywy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xywy</strong>() <a class="anchor-link" href="#get:xywy"
title="Permalink to vec4.get xywy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xywy() =&gt; new vec4(x, y, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xyww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xyww</strong>() <a class="anchor-link" href="#get:xyww"
title="Permalink to vec4.get xyww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xyww() =&gt; new vec4(x, y, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzxx</strong>() <a class="anchor-link" href="#get:xzxx"
title="Permalink to vec4.get xzxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzxx() =&gt; new vec4(x, z, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzxy</strong>() <a class="anchor-link" href="#get:xzxy"
title="Permalink to vec4.get xzxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzxy() =&gt; new vec4(x, z, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzxz</strong>() <a class="anchor-link" href="#get:xzxz"
title="Permalink to vec4.get xzxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzxz() =&gt; new vec4(x, z, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzxw</strong>() <a class="anchor-link" href="#get:xzxw"
title="Permalink to vec4.get xzxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzxw() =&gt; new vec4(x, z, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzyx</strong>() <a class="anchor-link" href="#get:xzyx"
title="Permalink to vec4.get xzyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzyx() =&gt; new vec4(x, z, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzyy</strong>() <a class="anchor-link" href="#get:xzyy"
title="Permalink to vec4.get xzyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzyy() =&gt; new vec4(x, z, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzyz</strong>() <a class="anchor-link" href="#get:xzyz"
title="Permalink to vec4.get xzyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzyz() =&gt; new vec4(x, z, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzzx</strong>() <a class="anchor-link" href="#get:xzzx"
title="Permalink to vec4.get xzzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzzx() =&gt; new vec4(x, z, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzzy</strong>() <a class="anchor-link" href="#get:xzzy"
title="Permalink to vec4.get xzzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzzy() =&gt; new vec4(x, z, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzzz</strong>() <a class="anchor-link" href="#get:xzzz"
title="Permalink to vec4.get xzzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzzz() =&gt; new vec4(x, z, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzzw</strong>() <a class="anchor-link" href="#get:xzzw"
title="Permalink to vec4.get xzzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzzw() =&gt; new vec4(x, z, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzwx</strong>() <a class="anchor-link" href="#get:xzwx"
title="Permalink to vec4.get xzwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzwx() =&gt; new vec4(x, z, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzwz</strong>() <a class="anchor-link" href="#get:xzwz"
title="Permalink to vec4.get xzwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzwz() =&gt; new vec4(x, z, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xzww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xzww</strong>() <a class="anchor-link" href="#get:xzww"
title="Permalink to vec4.get xzww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xzww() =&gt; new vec4(x, z, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwxx</strong>() <a class="anchor-link" href="#get:xwxx"
title="Permalink to vec4.get xwxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwxx() =&gt; new vec4(x, w, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwxy</strong>() <a class="anchor-link" href="#get:xwxy"
title="Permalink to vec4.get xwxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwxy() =&gt; new vec4(x, w, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwxz</strong>() <a class="anchor-link" href="#get:xwxz"
title="Permalink to vec4.get xwxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwxz() =&gt; new vec4(x, w, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwxw</strong>() <a class="anchor-link" href="#get:xwxw"
title="Permalink to vec4.get xwxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwxw() =&gt; new vec4(x, w, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwyx</strong>() <a class="anchor-link" href="#get:xwyx"
title="Permalink to vec4.get xwyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwyx() =&gt; new vec4(x, w, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwyy</strong>() <a class="anchor-link" href="#get:xwyy"
title="Permalink to vec4.get xwyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwyy() =&gt; new vec4(x, w, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwyw</strong>() <a class="anchor-link" href="#get:xwyw"
title="Permalink to vec4.get xwyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwyw() =&gt; new vec4(x, w, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwzx</strong>() <a class="anchor-link" href="#get:xwzx"
title="Permalink to vec4.get xwzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwzx() =&gt; new vec4(x, w, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwzz</strong>() <a class="anchor-link" href="#get:xwzz"
title="Permalink to vec4.get xwzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwzz() =&gt; new vec4(x, w, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwzw</strong>() <a class="anchor-link" href="#get:xwzw"
title="Permalink to vec4.get xwzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwzw() =&gt; new vec4(x, w, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwwx</strong>() <a class="anchor-link" href="#get:xwwx"
title="Permalink to vec4.get xwwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwwx() =&gt; new vec4(x, w, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwwy</strong>() <a class="anchor-link" href="#get:xwwy"
title="Permalink to vec4.get xwwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwwy() =&gt; new vec4(x, w, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwwz</strong>() <a class="anchor-link" href="#get:xwwz"
title="Permalink to vec4.get xwwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwwz() =&gt; new vec4(x, w, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:xwww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get xwww</strong>() <a class="anchor-link" href="#get:xwww"
title="Permalink to vec4.get xwww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get xwww() =&gt; new vec4(x, w, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxxx</strong>() <a class="anchor-link" href="#get:yxxx"
title="Permalink to vec4.get yxxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxxx() =&gt; new vec4(y, x, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxxy</strong>() <a class="anchor-link" href="#get:yxxy"
title="Permalink to vec4.get yxxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxxy() =&gt; new vec4(y, x, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxxz</strong>() <a class="anchor-link" href="#get:yxxz"
title="Permalink to vec4.get yxxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxxz() =&gt; new vec4(y, x, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxxw</strong>() <a class="anchor-link" href="#get:yxxw"
title="Permalink to vec4.get yxxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxxw() =&gt; new vec4(y, x, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxyx</strong>() <a class="anchor-link" href="#get:yxyx"
title="Permalink to vec4.get yxyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxyx() =&gt; new vec4(y, x, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxyy</strong>() <a class="anchor-link" href="#get:yxyy"
title="Permalink to vec4.get yxyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxyy() =&gt; new vec4(y, x, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxyz</strong>() <a class="anchor-link" href="#get:yxyz"
title="Permalink to vec4.get yxyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxyz() =&gt; new vec4(y, x, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxyw</strong>() <a class="anchor-link" href="#get:yxyw"
title="Permalink to vec4.get yxyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxyw() =&gt; new vec4(y, x, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxzx</strong>() <a class="anchor-link" href="#get:yxzx"
title="Permalink to vec4.get yxzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxzx() =&gt; new vec4(y, x, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxzy</strong>() <a class="anchor-link" href="#get:yxzy"
title="Permalink to vec4.get yxzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxzy() =&gt; new vec4(y, x, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxzz</strong>() <a class="anchor-link" href="#get:yxzz"
title="Permalink to vec4.get yxzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxzz() =&gt; new vec4(y, x, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxwx</strong>() <a class="anchor-link" href="#get:yxwx"
title="Permalink to vec4.get yxwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxwx() =&gt; new vec4(y, x, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxwy</strong>() <a class="anchor-link" href="#get:yxwy"
title="Permalink to vec4.get yxwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxwy() =&gt; new vec4(y, x, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yxww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yxww</strong>() <a class="anchor-link" href="#get:yxww"
title="Permalink to vec4.get yxww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yxww() =&gt; new vec4(y, x, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyxx</strong>() <a class="anchor-link" href="#get:yyxx"
title="Permalink to vec4.get yyxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyxx() =&gt; new vec4(y, y, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyxy</strong>() <a class="anchor-link" href="#get:yyxy"
title="Permalink to vec4.get yyxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyxy() =&gt; new vec4(y, y, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyxz</strong>() <a class="anchor-link" href="#get:yyxz"
title="Permalink to vec4.get yyxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyxz() =&gt; new vec4(y, y, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyxw</strong>() <a class="anchor-link" href="#get:yyxw"
title="Permalink to vec4.get yyxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyxw() =&gt; new vec4(y, y, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyyx</strong>() <a class="anchor-link" href="#get:yyyx"
title="Permalink to vec4.get yyyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyyx() =&gt; new vec4(y, y, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyyy</strong>() <a class="anchor-link" href="#get:yyyy"
title="Permalink to vec4.get yyyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyyy() =&gt; new vec4(y, y, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyyz</strong>() <a class="anchor-link" href="#get:yyyz"
title="Permalink to vec4.get yyyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyyz() =&gt; new vec4(y, y, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyyw</strong>() <a class="anchor-link" href="#get:yyyw"
title="Permalink to vec4.get yyyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyyw() =&gt; new vec4(y, y, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyzx</strong>() <a class="anchor-link" href="#get:yyzx"
title="Permalink to vec4.get yyzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyzx() =&gt; new vec4(y, y, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyzy</strong>() <a class="anchor-link" href="#get:yyzy"
title="Permalink to vec4.get yyzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyzy() =&gt; new vec4(y, y, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyzz</strong>() <a class="anchor-link" href="#get:yyzz"
title="Permalink to vec4.get yyzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyzz() =&gt; new vec4(y, y, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyzw</strong>() <a class="anchor-link" href="#get:yyzw"
title="Permalink to vec4.get yyzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyzw() =&gt; new vec4(y, y, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yywx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yywx</strong>() <a class="anchor-link" href="#get:yywx"
title="Permalink to vec4.get yywx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yywx() =&gt; new vec4(y, y, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yywy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yywy</strong>() <a class="anchor-link" href="#get:yywy"
title="Permalink to vec4.get yywy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yywy() =&gt; new vec4(y, y, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yywz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yywz</strong>() <a class="anchor-link" href="#get:yywz"
title="Permalink to vec4.get yywz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yywz() =&gt; new vec4(y, y, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yyww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yyww</strong>() <a class="anchor-link" href="#get:yyww"
title="Permalink to vec4.get yyww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yyww() =&gt; new vec4(y, y, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzxx</strong>() <a class="anchor-link" href="#get:yzxx"
title="Permalink to vec4.get yzxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzxx() =&gt; new vec4(y, z, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzxy</strong>() <a class="anchor-link" href="#get:yzxy"
title="Permalink to vec4.get yzxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzxy() =&gt; new vec4(y, z, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzxz</strong>() <a class="anchor-link" href="#get:yzxz"
title="Permalink to vec4.get yzxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzxz() =&gt; new vec4(y, z, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzyx</strong>() <a class="anchor-link" href="#get:yzyx"
title="Permalink to vec4.get yzyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzyx() =&gt; new vec4(y, z, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzyy</strong>() <a class="anchor-link" href="#get:yzyy"
title="Permalink to vec4.get yzyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzyy() =&gt; new vec4(y, z, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzyz</strong>() <a class="anchor-link" href="#get:yzyz"
title="Permalink to vec4.get yzyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzyz() =&gt; new vec4(y, z, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzyw</strong>() <a class="anchor-link" href="#get:yzyw"
title="Permalink to vec4.get yzyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzyw() =&gt; new vec4(y, z, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzzx</strong>() <a class="anchor-link" href="#get:yzzx"
title="Permalink to vec4.get yzzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzzx() =&gt; new vec4(y, z, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzzy</strong>() <a class="anchor-link" href="#get:yzzy"
title="Permalink to vec4.get yzzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzzy() =&gt; new vec4(y, z, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzzz</strong>() <a class="anchor-link" href="#get:yzzz"
title="Permalink to vec4.get yzzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzzz() =&gt; new vec4(y, z, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzzw</strong>() <a class="anchor-link" href="#get:yzzw"
title="Permalink to vec4.get yzzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzzw() =&gt; new vec4(y, z, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzwy</strong>() <a class="anchor-link" href="#get:yzwy"
title="Permalink to vec4.get yzwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzwy() =&gt; new vec4(y, z, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzwz</strong>() <a class="anchor-link" href="#get:yzwz"
title="Permalink to vec4.get yzwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzwz() =&gt; new vec4(y, z, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:yzww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get yzww</strong>() <a class="anchor-link" href="#get:yzww"
title="Permalink to vec4.get yzww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get yzww() =&gt; new vec4(y, z, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywxx</strong>() <a class="anchor-link" href="#get:ywxx"
title="Permalink to vec4.get ywxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywxx() =&gt; new vec4(y, w, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywxy</strong>() <a class="anchor-link" href="#get:ywxy"
title="Permalink to vec4.get ywxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywxy() =&gt; new vec4(y, w, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywxw</strong>() <a class="anchor-link" href="#get:ywxw"
title="Permalink to vec4.get ywxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywxw() =&gt; new vec4(y, w, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywyx</strong>() <a class="anchor-link" href="#get:ywyx"
title="Permalink to vec4.get ywyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywyx() =&gt; new vec4(y, w, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywyy</strong>() <a class="anchor-link" href="#get:ywyy"
title="Permalink to vec4.get ywyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywyy() =&gt; new vec4(y, w, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywyz</strong>() <a class="anchor-link" href="#get:ywyz"
title="Permalink to vec4.get ywyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywyz() =&gt; new vec4(y, w, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywyw</strong>() <a class="anchor-link" href="#get:ywyw"
title="Permalink to vec4.get ywyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywyw() =&gt; new vec4(y, w, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywzy</strong>() <a class="anchor-link" href="#get:ywzy"
title="Permalink to vec4.get ywzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywzy() =&gt; new vec4(y, w, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywzz</strong>() <a class="anchor-link" href="#get:ywzz"
title="Permalink to vec4.get ywzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywzz() =&gt; new vec4(y, w, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywzw</strong>() <a class="anchor-link" href="#get:ywzw"
title="Permalink to vec4.get ywzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywzw() =&gt; new vec4(y, w, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywwx</strong>() <a class="anchor-link" href="#get:ywwx"
title="Permalink to vec4.get ywwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywwx() =&gt; new vec4(y, w, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywwy</strong>() <a class="anchor-link" href="#get:ywwy"
title="Permalink to vec4.get ywwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywwy() =&gt; new vec4(y, w, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywwz</strong>() <a class="anchor-link" href="#get:ywwz"
title="Permalink to vec4.get ywwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywwz() =&gt; new vec4(y, w, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ywww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ywww</strong>() <a class="anchor-link" href="#get:ywww"
title="Permalink to vec4.get ywww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ywww() =&gt; new vec4(y, w, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxxx</strong>() <a class="anchor-link" href="#get:zxxx"
title="Permalink to vec4.get zxxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxxx() =&gt; new vec4(z, x, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxxy</strong>() <a class="anchor-link" href="#get:zxxy"
title="Permalink to vec4.get zxxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxxy() =&gt; new vec4(z, x, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxxz</strong>() <a class="anchor-link" href="#get:zxxz"
title="Permalink to vec4.get zxxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxxz() =&gt; new vec4(z, x, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxxw</strong>() <a class="anchor-link" href="#get:zxxw"
title="Permalink to vec4.get zxxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxxw() =&gt; new vec4(z, x, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxyx</strong>() <a class="anchor-link" href="#get:zxyx"
title="Permalink to vec4.get zxyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxyx() =&gt; new vec4(z, x, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxyy</strong>() <a class="anchor-link" href="#get:zxyy"
title="Permalink to vec4.get zxyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxyy() =&gt; new vec4(z, x, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxyz</strong>() <a class="anchor-link" href="#get:zxyz"
title="Permalink to vec4.get zxyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxyz() =&gt; new vec4(z, x, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxzx</strong>() <a class="anchor-link" href="#get:zxzx"
title="Permalink to vec4.get zxzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxzx() =&gt; new vec4(z, x, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxzy</strong>() <a class="anchor-link" href="#get:zxzy"
title="Permalink to vec4.get zxzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxzy() =&gt; new vec4(z, x, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxzz</strong>() <a class="anchor-link" href="#get:zxzz"
title="Permalink to vec4.get zxzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxzz() =&gt; new vec4(z, x, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxzw</strong>() <a class="anchor-link" href="#get:zxzw"
title="Permalink to vec4.get zxzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxzw() =&gt; new vec4(z, x, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxwx</strong>() <a class="anchor-link" href="#get:zxwx"
title="Permalink to vec4.get zxwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxwx() =&gt; new vec4(z, x, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxwz</strong>() <a class="anchor-link" href="#get:zxwz"
title="Permalink to vec4.get zxwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxwz() =&gt; new vec4(z, x, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zxww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zxww</strong>() <a class="anchor-link" href="#get:zxww"
title="Permalink to vec4.get zxww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zxww() =&gt; new vec4(z, x, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyxx</strong>() <a class="anchor-link" href="#get:zyxx"
title="Permalink to vec4.get zyxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyxx() =&gt; new vec4(z, y, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyxy</strong>() <a class="anchor-link" href="#get:zyxy"
title="Permalink to vec4.get zyxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyxy() =&gt; new vec4(z, y, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyxz</strong>() <a class="anchor-link" href="#get:zyxz"
title="Permalink to vec4.get zyxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyxz() =&gt; new vec4(z, y, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyyx</strong>() <a class="anchor-link" href="#get:zyyx"
title="Permalink to vec4.get zyyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyyx() =&gt; new vec4(z, y, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyyy</strong>() <a class="anchor-link" href="#get:zyyy"
title="Permalink to vec4.get zyyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyyy() =&gt; new vec4(z, y, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyyz</strong>() <a class="anchor-link" href="#get:zyyz"
title="Permalink to vec4.get zyyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyyz() =&gt; new vec4(z, y, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyyw</strong>() <a class="anchor-link" href="#get:zyyw"
title="Permalink to vec4.get zyyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyyw() =&gt; new vec4(z, y, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyzx</strong>() <a class="anchor-link" href="#get:zyzx"
title="Permalink to vec4.get zyzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyzx() =&gt; new vec4(z, y, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyzy</strong>() <a class="anchor-link" href="#get:zyzy"
title="Permalink to vec4.get zyzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyzy() =&gt; new vec4(z, y, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyzz</strong>() <a class="anchor-link" href="#get:zyzz"
title="Permalink to vec4.get zyzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyzz() =&gt; new vec4(z, y, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyzw</strong>() <a class="anchor-link" href="#get:zyzw"
title="Permalink to vec4.get zyzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyzw() =&gt; new vec4(z, y, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zywy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zywy</strong>() <a class="anchor-link" href="#get:zywy"
title="Permalink to vec4.get zywy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zywy() =&gt; new vec4(z, y, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zywz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zywz</strong>() <a class="anchor-link" href="#get:zywz"
title="Permalink to vec4.get zywz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zywz() =&gt; new vec4(z, y, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zyww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zyww</strong>() <a class="anchor-link" href="#get:zyww"
title="Permalink to vec4.get zyww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zyww() =&gt; new vec4(z, y, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzxx</strong>() <a class="anchor-link" href="#get:zzxx"
title="Permalink to vec4.get zzxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzxx() =&gt; new vec4(z, z, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzxy</strong>() <a class="anchor-link" href="#get:zzxy"
title="Permalink to vec4.get zzxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzxy() =&gt; new vec4(z, z, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzxz</strong>() <a class="anchor-link" href="#get:zzxz"
title="Permalink to vec4.get zzxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzxz() =&gt; new vec4(z, z, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzxw</strong>() <a class="anchor-link" href="#get:zzxw"
title="Permalink to vec4.get zzxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzxw() =&gt; new vec4(z, z, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzyx</strong>() <a class="anchor-link" href="#get:zzyx"
title="Permalink to vec4.get zzyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzyx() =&gt; new vec4(z, z, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzyy</strong>() <a class="anchor-link" href="#get:zzyy"
title="Permalink to vec4.get zzyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzyy() =&gt; new vec4(z, z, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzyz</strong>() <a class="anchor-link" href="#get:zzyz"
title="Permalink to vec4.get zzyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzyz() =&gt; new vec4(z, z, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzyw</strong>() <a class="anchor-link" href="#get:zzyw"
title="Permalink to vec4.get zzyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzyw() =&gt; new vec4(z, z, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzzx</strong>() <a class="anchor-link" href="#get:zzzx"
title="Permalink to vec4.get zzzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzzx() =&gt; new vec4(z, z, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzzy</strong>() <a class="anchor-link" href="#get:zzzy"
title="Permalink to vec4.get zzzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzzy() =&gt; new vec4(z, z, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzzz</strong>() <a class="anchor-link" href="#get:zzzz"
title="Permalink to vec4.get zzzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzzz() =&gt; new vec4(z, z, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzzw</strong>() <a class="anchor-link" href="#get:zzzw"
title="Permalink to vec4.get zzzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzzw() =&gt; new vec4(z, z, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzwx</strong>() <a class="anchor-link" href="#get:zzwx"
title="Permalink to vec4.get zzwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzwx() =&gt; new vec4(z, z, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzwy</strong>() <a class="anchor-link" href="#get:zzwy"
title="Permalink to vec4.get zzwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzwy() =&gt; new vec4(z, z, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzwz</strong>() <a class="anchor-link" href="#get:zzwz"
title="Permalink to vec4.get zzwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzwz() =&gt; new vec4(z, z, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zzww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zzww</strong>() <a class="anchor-link" href="#get:zzww"
title="Permalink to vec4.get zzww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zzww() =&gt; new vec4(z, z, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwxx</strong>() <a class="anchor-link" href="#get:zwxx"
title="Permalink to vec4.get zwxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwxx() =&gt; new vec4(z, w, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwxz</strong>() <a class="anchor-link" href="#get:zwxz"
title="Permalink to vec4.get zwxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwxz() =&gt; new vec4(z, w, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwxw</strong>() <a class="anchor-link" href="#get:zwxw"
title="Permalink to vec4.get zwxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwxw() =&gt; new vec4(z, w, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwyy</strong>() <a class="anchor-link" href="#get:zwyy"
title="Permalink to vec4.get zwyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwyy() =&gt; new vec4(z, w, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwyz</strong>() <a class="anchor-link" href="#get:zwyz"
title="Permalink to vec4.get zwyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwyz() =&gt; new vec4(z, w, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwyw</strong>() <a class="anchor-link" href="#get:zwyw"
title="Permalink to vec4.get zwyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwyw() =&gt; new vec4(z, w, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwzx</strong>() <a class="anchor-link" href="#get:zwzx"
title="Permalink to vec4.get zwzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwzx() =&gt; new vec4(z, w, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwzy</strong>() <a class="anchor-link" href="#get:zwzy"
title="Permalink to vec4.get zwzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwzy() =&gt; new vec4(z, w, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwzz</strong>() <a class="anchor-link" href="#get:zwzz"
title="Permalink to vec4.get zwzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwzz() =&gt; new vec4(z, w, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwzw</strong>() <a class="anchor-link" href="#get:zwzw"
title="Permalink to vec4.get zwzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwzw() =&gt; new vec4(z, w, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwwx</strong>() <a class="anchor-link" href="#get:zwwx"
title="Permalink to vec4.get zwwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwwx() =&gt; new vec4(z, w, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwwy</strong>() <a class="anchor-link" href="#get:zwwy"
title="Permalink to vec4.get zwwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwwy() =&gt; new vec4(z, w, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwwz</strong>() <a class="anchor-link" href="#get:zwwz"
title="Permalink to vec4.get zwwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwwz() =&gt; new vec4(z, w, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:zwww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get zwww</strong>() <a class="anchor-link" href="#get:zwww"
title="Permalink to vec4.get zwww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get zwww() =&gt; new vec4(z, w, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxxx</strong>() <a class="anchor-link" href="#get:wxxx"
title="Permalink to vec4.get wxxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxxx() =&gt; new vec4(w, x, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxxy</strong>() <a class="anchor-link" href="#get:wxxy"
title="Permalink to vec4.get wxxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxxy() =&gt; new vec4(w, x, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxxz</strong>() <a class="anchor-link" href="#get:wxxz"
title="Permalink to vec4.get wxxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxxz() =&gt; new vec4(w, x, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxxw</strong>() <a class="anchor-link" href="#get:wxxw"
title="Permalink to vec4.get wxxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxxw() =&gt; new vec4(w, x, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxyx</strong>() <a class="anchor-link" href="#get:wxyx"
title="Permalink to vec4.get wxyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxyx() =&gt; new vec4(w, x, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxyy</strong>() <a class="anchor-link" href="#get:wxyy"
title="Permalink to vec4.get wxyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxyy() =&gt; new vec4(w, x, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxyw</strong>() <a class="anchor-link" href="#get:wxyw"
title="Permalink to vec4.get wxyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxyw() =&gt; new vec4(w, x, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxzx</strong>() <a class="anchor-link" href="#get:wxzx"
title="Permalink to vec4.get wxzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxzx() =&gt; new vec4(w, x, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxzz</strong>() <a class="anchor-link" href="#get:wxzz"
title="Permalink to vec4.get wxzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxzz() =&gt; new vec4(w, x, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxzw</strong>() <a class="anchor-link" href="#get:wxzw"
title="Permalink to vec4.get wxzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxzw() =&gt; new vec4(w, x, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxwx</strong>() <a class="anchor-link" href="#get:wxwx"
title="Permalink to vec4.get wxwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxwx() =&gt; new vec4(w, x, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxwy</strong>() <a class="anchor-link" href="#get:wxwy"
title="Permalink to vec4.get wxwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxwy() =&gt; new vec4(w, x, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxwz</strong>() <a class="anchor-link" href="#get:wxwz"
title="Permalink to vec4.get wxwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxwz() =&gt; new vec4(w, x, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wxww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wxww</strong>() <a class="anchor-link" href="#get:wxww"
title="Permalink to vec4.get wxww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wxww() =&gt; new vec4(w, x, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyxx</strong>() <a class="anchor-link" href="#get:wyxx"
title="Permalink to vec4.get wyxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyxx() =&gt; new vec4(w, y, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyxy</strong>() <a class="anchor-link" href="#get:wyxy"
title="Permalink to vec4.get wyxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyxy() =&gt; new vec4(w, y, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyxw</strong>() <a class="anchor-link" href="#get:wyxw"
title="Permalink to vec4.get wyxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyxw() =&gt; new vec4(w, y, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyyx</strong>() <a class="anchor-link" href="#get:wyyx"
title="Permalink to vec4.get wyyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyyx() =&gt; new vec4(w, y, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyyy</strong>() <a class="anchor-link" href="#get:wyyy"
title="Permalink to vec4.get wyyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyyy() =&gt; new vec4(w, y, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyyz</strong>() <a class="anchor-link" href="#get:wyyz"
title="Permalink to vec4.get wyyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyyz() =&gt; new vec4(w, y, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyyw</strong>() <a class="anchor-link" href="#get:wyyw"
title="Permalink to vec4.get wyyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyyw() =&gt; new vec4(w, y, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyzy</strong>() <a class="anchor-link" href="#get:wyzy"
title="Permalink to vec4.get wyzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyzy() =&gt; new vec4(w, y, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyzz</strong>() <a class="anchor-link" href="#get:wyzz"
title="Permalink to vec4.get wyzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyzz() =&gt; new vec4(w, y, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyzw</strong>() <a class="anchor-link" href="#get:wyzw"
title="Permalink to vec4.get wyzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyzw() =&gt; new vec4(w, y, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wywx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wywx</strong>() <a class="anchor-link" href="#get:wywx"
title="Permalink to vec4.get wywx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wywx() =&gt; new vec4(w, y, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wywy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wywy</strong>() <a class="anchor-link" href="#get:wywy"
title="Permalink to vec4.get wywy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wywy() =&gt; new vec4(w, y, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wywz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wywz</strong>() <a class="anchor-link" href="#get:wywz"
title="Permalink to vec4.get wywz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wywz() =&gt; new vec4(w, y, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wyww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wyww</strong>() <a class="anchor-link" href="#get:wyww"
title="Permalink to vec4.get wyww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wyww() =&gt; new vec4(w, y, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzxx</strong>() <a class="anchor-link" href="#get:wzxx"
title="Permalink to vec4.get wzxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzxx() =&gt; new vec4(w, z, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzxz</strong>() <a class="anchor-link" href="#get:wzxz"
title="Permalink to vec4.get wzxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzxz() =&gt; new vec4(w, z, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzxw</strong>() <a class="anchor-link" href="#get:wzxw"
title="Permalink to vec4.get wzxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzxw() =&gt; new vec4(w, z, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzyy</strong>() <a class="anchor-link" href="#get:wzyy"
title="Permalink to vec4.get wzyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzyy() =&gt; new vec4(w, z, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzyz</strong>() <a class="anchor-link" href="#get:wzyz"
title="Permalink to vec4.get wzyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzyz() =&gt; new vec4(w, z, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzyw</strong>() <a class="anchor-link" href="#get:wzyw"
title="Permalink to vec4.get wzyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzyw() =&gt; new vec4(w, z, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzzx</strong>() <a class="anchor-link" href="#get:wzzx"
title="Permalink to vec4.get wzzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzzx() =&gt; new vec4(w, z, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzzy</strong>() <a class="anchor-link" href="#get:wzzy"
title="Permalink to vec4.get wzzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzzy() =&gt; new vec4(w, z, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzzz</strong>() <a class="anchor-link" href="#get:wzzz"
title="Permalink to vec4.get wzzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzzz() =&gt; new vec4(w, z, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzzw</strong>() <a class="anchor-link" href="#get:wzzw"
title="Permalink to vec4.get wzzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzzw() =&gt; new vec4(w, z, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzwx</strong>() <a class="anchor-link" href="#get:wzwx"
title="Permalink to vec4.get wzwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzwx() =&gt; new vec4(w, z, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzwy</strong>() <a class="anchor-link" href="#get:wzwy"
title="Permalink to vec4.get wzwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzwy() =&gt; new vec4(w, z, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzwz</strong>() <a class="anchor-link" href="#get:wzwz"
title="Permalink to vec4.get wzwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzwz() =&gt; new vec4(w, z, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wzww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wzww</strong>() <a class="anchor-link" href="#get:wzww"
title="Permalink to vec4.get wzww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wzww() =&gt; new vec4(w, z, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwxx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwxx</strong>() <a class="anchor-link" href="#get:wwxx"
title="Permalink to vec4.get wwxx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwxx() =&gt; new vec4(w, w, x, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwxy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwxy</strong>() <a class="anchor-link" href="#get:wwxy"
title="Permalink to vec4.get wwxy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwxy() =&gt; new vec4(w, w, x, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwxz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwxz</strong>() <a class="anchor-link" href="#get:wwxz"
title="Permalink to vec4.get wwxz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwxz() =&gt; new vec4(w, w, x, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwxw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwxw</strong>() <a class="anchor-link" href="#get:wwxw"
title="Permalink to vec4.get wwxw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwxw() =&gt; new vec4(w, w, x, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwyx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwyx</strong>() <a class="anchor-link" href="#get:wwyx"
title="Permalink to vec4.get wwyx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwyx() =&gt; new vec4(w, w, y, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwyy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwyy</strong>() <a class="anchor-link" href="#get:wwyy"
title="Permalink to vec4.get wwyy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwyy() =&gt; new vec4(w, w, y, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwyz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwyz</strong>() <a class="anchor-link" href="#get:wwyz"
title="Permalink to vec4.get wwyz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwyz() =&gt; new vec4(w, w, y, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwyw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwyw</strong>() <a class="anchor-link" href="#get:wwyw"
title="Permalink to vec4.get wwyw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwyw() =&gt; new vec4(w, w, y, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwzx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwzx</strong>() <a class="anchor-link" href="#get:wwzx"
title="Permalink to vec4.get wwzx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwzx() =&gt; new vec4(w, w, z, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwzy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwzy</strong>() <a class="anchor-link" href="#get:wwzy"
title="Permalink to vec4.get wwzy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwzy() =&gt; new vec4(w, w, z, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwzz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwzz</strong>() <a class="anchor-link" href="#get:wwzz"
title="Permalink to vec4.get wwzz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwzz() =&gt; new vec4(w, w, z, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwzw">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwzw</strong>() <a class="anchor-link" href="#get:wwzw"
title="Permalink to vec4.get wwzw">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwzw() =&gt; new vec4(w, w, z, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwwx">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwwx</strong>() <a class="anchor-link" href="#get:wwwx"
title="Permalink to vec4.get wwwx">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwwx() =&gt; new vec4(w, w, w, x);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwwy">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwwy</strong>() <a class="anchor-link" href="#get:wwwy"
title="Permalink to vec4.get wwwy">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwwy() =&gt; new vec4(w, w, w, y);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwwz">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwwz</strong>() <a class="anchor-link" href="#get:wwwz"
title="Permalink to vec4.get wwwz">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwwz() =&gt; new vec4(w, w, w, z);
</pre>
</div>
</div>
<div class="method"><h4 id="get:wwww">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get wwww</strong>() <a class="anchor-link" href="#get:wwww"
title="Permalink to vec4.get wwww">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get wwww() =&gt; new vec4(w, w, w, w);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get rr</strong>() <a class="anchor-link" href="#get:rr"
title="Permalink to vec4.get rr">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get rr() =&gt; new vec2(r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get gg</strong>() <a class="anchor-link" href="#get:gg"
title="Permalink to vec4.get gg">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get gg() =&gt; new vec2(g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get bb</strong>() <a class="anchor-link" href="#get:bb"
title="Permalink to vec4.get bb">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get bb() =&gt; new vec2(b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get aa</strong>() <a class="anchor-link" href="#get:aa"
title="Permalink to vec4.get aa">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get aa() =&gt; new vec2(a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rrr</strong>() <a class="anchor-link" href="#get:rrr"
title="Permalink to vec4.get rrr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rrr() =&gt; new vec3(r, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rrg</strong>() <a class="anchor-link" href="#get:rrg"
title="Permalink to vec4.get rrg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rrg() =&gt; new vec3(r, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rrb</strong>() <a class="anchor-link" href="#get:rrb"
title="Permalink to vec4.get rrb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rrb() =&gt; new vec3(r, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rra</strong>() <a class="anchor-link" href="#get:rra"
title="Permalink to vec4.get rra">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rra() =&gt; new vec3(r, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rgr</strong>() <a class="anchor-link" href="#get:rgr"
title="Permalink to vec4.get rgr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rgr() =&gt; new vec3(r, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rgg</strong>() <a class="anchor-link" href="#get:rgg"
title="Permalink to vec4.get rgg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rgg() =&gt; new vec3(r, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rbr</strong>() <a class="anchor-link" href="#get:rbr"
title="Permalink to vec4.get rbr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rbr() =&gt; new vec3(r, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rbb</strong>() <a class="anchor-link" href="#get:rbb"
title="Permalink to vec4.get rbb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rbb() =&gt; new vec3(r, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get rar</strong>() <a class="anchor-link" href="#get:rar"
title="Permalink to vec4.get rar">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get rar() =&gt; new vec3(r, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:raa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get raa</strong>() <a class="anchor-link" href="#get:raa"
title="Permalink to vec4.get raa">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get raa() =&gt; new vec3(r, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get grr</strong>() <a class="anchor-link" href="#get:grr"
title="Permalink to vec4.get grr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get grr() =&gt; new vec3(g, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get grg</strong>() <a class="anchor-link" href="#get:grg"
title="Permalink to vec4.get grg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get grg() =&gt; new vec3(g, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ggr</strong>() <a class="anchor-link" href="#get:ggr"
title="Permalink to vec4.get ggr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ggr() =&gt; new vec3(g, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ggg</strong>() <a class="anchor-link" href="#get:ggg"
title="Permalink to vec4.get ggg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ggg() =&gt; new vec3(g, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ggb</strong>() <a class="anchor-link" href="#get:ggb"
title="Permalink to vec4.get ggb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ggb() =&gt; new vec3(g, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get gga</strong>() <a class="anchor-link" href="#get:gga"
title="Permalink to vec4.get gga">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get gga() =&gt; new vec3(g, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get gbg</strong>() <a class="anchor-link" href="#get:gbg"
title="Permalink to vec4.get gbg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get gbg() =&gt; new vec3(g, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get gbb</strong>() <a class="anchor-link" href="#get:gbb"
title="Permalink to vec4.get gbb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get gbb() =&gt; new vec3(g, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get gag</strong>() <a class="anchor-link" href="#get:gag"
title="Permalink to vec4.get gag">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get gag() =&gt; new vec3(g, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get gaa</strong>() <a class="anchor-link" href="#get:gaa"
title="Permalink to vec4.get gaa">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get gaa() =&gt; new vec3(g, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get brr</strong>() <a class="anchor-link" href="#get:brr"
title="Permalink to vec4.get brr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get brr() =&gt; new vec3(b, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get brb</strong>() <a class="anchor-link" href="#get:brb"
title="Permalink to vec4.get brb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get brb() =&gt; new vec3(b, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bgg</strong>() <a class="anchor-link" href="#get:bgg"
title="Permalink to vec4.get bgg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bgg() =&gt; new vec3(b, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bgb</strong>() <a class="anchor-link" href="#get:bgb"
title="Permalink to vec4.get bgb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bgb() =&gt; new vec3(b, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bbr</strong>() <a class="anchor-link" href="#get:bbr"
title="Permalink to vec4.get bbr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bbr() =&gt; new vec3(b, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bbg</strong>() <a class="anchor-link" href="#get:bbg"
title="Permalink to vec4.get bbg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bbg() =&gt; new vec3(b, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bbb</strong>() <a class="anchor-link" href="#get:bbb"
title="Permalink to vec4.get bbb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bbb() =&gt; new vec3(b, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bba</strong>() <a class="anchor-link" href="#get:bba"
title="Permalink to vec4.get bba">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bba() =&gt; new vec3(b, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get bab</strong>() <a class="anchor-link" href="#get:bab"
title="Permalink to vec4.get bab">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get bab() =&gt; new vec3(b, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:baa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get baa</strong>() <a class="anchor-link" href="#get:baa"
title="Permalink to vec4.get baa">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get baa() =&gt; new vec3(b, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get arr</strong>() <a class="anchor-link" href="#get:arr"
title="Permalink to vec4.get arr">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get arr() =&gt; new vec3(a, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ara">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ara</strong>() <a class="anchor-link" href="#get:ara"
title="Permalink to vec4.get ara">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ara() =&gt; new vec3(a, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get agg</strong>() <a class="anchor-link" href="#get:agg"
title="Permalink to vec4.get agg">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get agg() =&gt; new vec3(a, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get aga</strong>() <a class="anchor-link" href="#get:aga"
title="Permalink to vec4.get aga">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get aga() =&gt; new vec3(a, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get abb</strong>() <a class="anchor-link" href="#get:abb"
title="Permalink to vec4.get abb">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get abb() =&gt; new vec3(a, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get aba</strong>() <a class="anchor-link" href="#get:aba"
title="Permalink to vec4.get aba">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get aba() =&gt; new vec3(a, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get aar</strong>() <a class="anchor-link" href="#get:aar"
title="Permalink to vec4.get aar">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get aar() =&gt; new vec3(a, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get aag</strong>() <a class="anchor-link" href="#get:aag"
title="Permalink to vec4.get aag">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get aag() =&gt; new vec3(a, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get aab</strong>() <a class="anchor-link" href="#get:aab"
title="Permalink to vec4.get aab">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get aab() =&gt; new vec3(a, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get aaa</strong>() <a class="anchor-link" href="#get:aaa"
title="Permalink to vec4.get aaa">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get aaa() =&gt; new vec3(a, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrrr</strong>() <a class="anchor-link" href="#get:rrrr"
title="Permalink to vec4.get rrrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrrr() =&gt; new vec4(r, r, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrrg</strong>() <a class="anchor-link" href="#get:rrrg"
title="Permalink to vec4.get rrrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrrg() =&gt; new vec4(r, r, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrrb</strong>() <a class="anchor-link" href="#get:rrrb"
title="Permalink to vec4.get rrrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrrb() =&gt; new vec4(r, r, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrra</strong>() <a class="anchor-link" href="#get:rrra"
title="Permalink to vec4.get rrra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrra() =&gt; new vec4(r, r, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrgr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrgr</strong>() <a class="anchor-link" href="#get:rrgr"
title="Permalink to vec4.get rrgr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrgr() =&gt; new vec4(r, r, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrgg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrgg</strong>() <a class="anchor-link" href="#get:rrgg"
title="Permalink to vec4.get rrgg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrgg() =&gt; new vec4(r, r, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrgb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrgb</strong>() <a class="anchor-link" href="#get:rrgb"
title="Permalink to vec4.get rrgb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrgb() =&gt; new vec4(r, r, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrga</strong>() <a class="anchor-link" href="#get:rrga"
title="Permalink to vec4.get rrga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrga() =&gt; new vec4(r, r, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrbr</strong>() <a class="anchor-link" href="#get:rrbr"
title="Permalink to vec4.get rrbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrbr() =&gt; new vec4(r, r, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrbg</strong>() <a class="anchor-link" href="#get:rrbg"
title="Permalink to vec4.get rrbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrbg() =&gt; new vec4(r, r, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrbb</strong>() <a class="anchor-link" href="#get:rrbb"
title="Permalink to vec4.get rrbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrbb() =&gt; new vec4(r, r, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrba</strong>() <a class="anchor-link" href="#get:rrba"
title="Permalink to vec4.get rrba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrba() =&gt; new vec4(r, r, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrar</strong>() <a class="anchor-link" href="#get:rrar"
title="Permalink to vec4.get rrar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrar() =&gt; new vec4(r, r, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrag</strong>() <a class="anchor-link" href="#get:rrag"
title="Permalink to vec4.get rrag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrag() =&gt; new vec4(r, r, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rrab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rrab</strong>() <a class="anchor-link" href="#get:rrab"
title="Permalink to vec4.get rrab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rrab() =&gt; new vec4(r, r, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rraa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rraa</strong>() <a class="anchor-link" href="#get:rraa"
title="Permalink to vec4.get rraa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rraa() =&gt; new vec4(r, r, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgrr</strong>() <a class="anchor-link" href="#get:rgrr"
title="Permalink to vec4.get rgrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgrr() =&gt; new vec4(r, g, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgrg</strong>() <a class="anchor-link" href="#get:rgrg"
title="Permalink to vec4.get rgrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgrg() =&gt; new vec4(r, g, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgrb</strong>() <a class="anchor-link" href="#get:rgrb"
title="Permalink to vec4.get rgrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgrb() =&gt; new vec4(r, g, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgra</strong>() <a class="anchor-link" href="#get:rgra"
title="Permalink to vec4.get rgra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgra() =&gt; new vec4(r, g, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rggr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rggr</strong>() <a class="anchor-link" href="#get:rggr"
title="Permalink to vec4.get rggr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rggr() =&gt; new vec4(r, g, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rggg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rggg</strong>() <a class="anchor-link" href="#get:rggg"
title="Permalink to vec4.get rggg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rggg() =&gt; new vec4(r, g, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rggb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rggb</strong>() <a class="anchor-link" href="#get:rggb"
title="Permalink to vec4.get rggb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rggb() =&gt; new vec4(r, g, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgga</strong>() <a class="anchor-link" href="#get:rgga"
title="Permalink to vec4.get rgga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgga() =&gt; new vec4(r, g, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgbr</strong>() <a class="anchor-link" href="#get:rgbr"
title="Permalink to vec4.get rgbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgbr() =&gt; new vec4(r, g, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgbg</strong>() <a class="anchor-link" href="#get:rgbg"
title="Permalink to vec4.get rgbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgbg() =&gt; new vec4(r, g, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgbb</strong>() <a class="anchor-link" href="#get:rgbb"
title="Permalink to vec4.get rgbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgbb() =&gt; new vec4(r, g, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgar</strong>() <a class="anchor-link" href="#get:rgar"
title="Permalink to vec4.get rgar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgar() =&gt; new vec4(r, g, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgag</strong>() <a class="anchor-link" href="#get:rgag"
title="Permalink to vec4.get rgag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgag() =&gt; new vec4(r, g, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rgaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rgaa</strong>() <a class="anchor-link" href="#get:rgaa"
title="Permalink to vec4.get rgaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rgaa() =&gt; new vec4(r, g, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbrr</strong>() <a class="anchor-link" href="#get:rbrr"
title="Permalink to vec4.get rbrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbrr() =&gt; new vec4(r, b, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbrg</strong>() <a class="anchor-link" href="#get:rbrg"
title="Permalink to vec4.get rbrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbrg() =&gt; new vec4(r, b, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbrb</strong>() <a class="anchor-link" href="#get:rbrb"
title="Permalink to vec4.get rbrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbrb() =&gt; new vec4(r, b, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbra</strong>() <a class="anchor-link" href="#get:rbra"
title="Permalink to vec4.get rbra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbra() =&gt; new vec4(r, b, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbgr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbgr</strong>() <a class="anchor-link" href="#get:rbgr"
title="Permalink to vec4.get rbgr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbgr() =&gt; new vec4(r, b, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbgg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbgg</strong>() <a class="anchor-link" href="#get:rbgg"
title="Permalink to vec4.get rbgg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbgg() =&gt; new vec4(r, b, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbgb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbgb</strong>() <a class="anchor-link" href="#get:rbgb"
title="Permalink to vec4.get rbgb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbgb() =&gt; new vec4(r, b, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbbr</strong>() <a class="anchor-link" href="#get:rbbr"
title="Permalink to vec4.get rbbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbbr() =&gt; new vec4(r, b, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbbg</strong>() <a class="anchor-link" href="#get:rbbg"
title="Permalink to vec4.get rbbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbbg() =&gt; new vec4(r, b, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbbb</strong>() <a class="anchor-link" href="#get:rbbb"
title="Permalink to vec4.get rbbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbbb() =&gt; new vec4(r, b, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbba</strong>() <a class="anchor-link" href="#get:rbba"
title="Permalink to vec4.get rbba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbba() =&gt; new vec4(r, b, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbar</strong>() <a class="anchor-link" href="#get:rbar"
title="Permalink to vec4.get rbar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbar() =&gt; new vec4(r, b, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbab</strong>() <a class="anchor-link" href="#get:rbab"
title="Permalink to vec4.get rbab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbab() =&gt; new vec4(r, b, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rbaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rbaa</strong>() <a class="anchor-link" href="#get:rbaa"
title="Permalink to vec4.get rbaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rbaa() =&gt; new vec4(r, b, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rarr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rarr</strong>() <a class="anchor-link" href="#get:rarr"
title="Permalink to vec4.get rarr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rarr() =&gt; new vec4(r, a, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rarg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rarg</strong>() <a class="anchor-link" href="#get:rarg"
title="Permalink to vec4.get rarg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rarg() =&gt; new vec4(r, a, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rarb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rarb</strong>() <a class="anchor-link" href="#get:rarb"
title="Permalink to vec4.get rarb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rarb() =&gt; new vec4(r, a, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rara">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rara</strong>() <a class="anchor-link" href="#get:rara"
title="Permalink to vec4.get rara">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rara() =&gt; new vec4(r, a, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ragr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ragr</strong>() <a class="anchor-link" href="#get:ragr"
title="Permalink to vec4.get ragr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ragr() =&gt; new vec4(r, a, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ragg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ragg</strong>() <a class="anchor-link" href="#get:ragg"
title="Permalink to vec4.get ragg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ragg() =&gt; new vec4(r, a, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:raga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get raga</strong>() <a class="anchor-link" href="#get:raga"
title="Permalink to vec4.get raga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get raga() =&gt; new vec4(r, a, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rabr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rabr</strong>() <a class="anchor-link" href="#get:rabr"
title="Permalink to vec4.get rabr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rabr() =&gt; new vec4(r, a, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:rabb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get rabb</strong>() <a class="anchor-link" href="#get:rabb"
title="Permalink to vec4.get rabb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get rabb() =&gt; new vec4(r, a, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:raba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get raba</strong>() <a class="anchor-link" href="#get:raba"
title="Permalink to vec4.get raba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get raba() =&gt; new vec4(r, a, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:raar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get raar</strong>() <a class="anchor-link" href="#get:raar"
title="Permalink to vec4.get raar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get raar() =&gt; new vec4(r, a, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:raag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get raag</strong>() <a class="anchor-link" href="#get:raag"
title="Permalink to vec4.get raag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get raag() =&gt; new vec4(r, a, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:raab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get raab</strong>() <a class="anchor-link" href="#get:raab"
title="Permalink to vec4.get raab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get raab() =&gt; new vec4(r, a, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:raaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get raaa</strong>() <a class="anchor-link" href="#get:raaa"
title="Permalink to vec4.get raaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get raaa() =&gt; new vec4(r, a, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grrr</strong>() <a class="anchor-link" href="#get:grrr"
title="Permalink to vec4.get grrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grrr() =&gt; new vec4(g, r, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grrg</strong>() <a class="anchor-link" href="#get:grrg"
title="Permalink to vec4.get grrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grrg() =&gt; new vec4(g, r, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grrb</strong>() <a class="anchor-link" href="#get:grrb"
title="Permalink to vec4.get grrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grrb() =&gt; new vec4(g, r, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grra</strong>() <a class="anchor-link" href="#get:grra"
title="Permalink to vec4.get grra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grra() =&gt; new vec4(g, r, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grgr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grgr</strong>() <a class="anchor-link" href="#get:grgr"
title="Permalink to vec4.get grgr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grgr() =&gt; new vec4(g, r, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grgg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grgg</strong>() <a class="anchor-link" href="#get:grgg"
title="Permalink to vec4.get grgg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grgg() =&gt; new vec4(g, r, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grgb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grgb</strong>() <a class="anchor-link" href="#get:grgb"
title="Permalink to vec4.get grgb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grgb() =&gt; new vec4(g, r, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grga</strong>() <a class="anchor-link" href="#get:grga"
title="Permalink to vec4.get grga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grga() =&gt; new vec4(g, r, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grbr</strong>() <a class="anchor-link" href="#get:grbr"
title="Permalink to vec4.get grbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grbr() =&gt; new vec4(g, r, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grbg</strong>() <a class="anchor-link" href="#get:grbg"
title="Permalink to vec4.get grbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grbg() =&gt; new vec4(g, r, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grbb</strong>() <a class="anchor-link" href="#get:grbb"
title="Permalink to vec4.get grbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grbb() =&gt; new vec4(g, r, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grar</strong>() <a class="anchor-link" href="#get:grar"
title="Permalink to vec4.get grar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grar() =&gt; new vec4(g, r, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:grag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get grag</strong>() <a class="anchor-link" href="#get:grag"
title="Permalink to vec4.get grag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get grag() =&gt; new vec4(g, r, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:graa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get graa</strong>() <a class="anchor-link" href="#get:graa"
title="Permalink to vec4.get graa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get graa() =&gt; new vec4(g, r, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggrr</strong>() <a class="anchor-link" href="#get:ggrr"
title="Permalink to vec4.get ggrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggrr() =&gt; new vec4(g, g, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggrg</strong>() <a class="anchor-link" href="#get:ggrg"
title="Permalink to vec4.get ggrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggrg() =&gt; new vec4(g, g, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggrb</strong>() <a class="anchor-link" href="#get:ggrb"
title="Permalink to vec4.get ggrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggrb() =&gt; new vec4(g, g, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggra</strong>() <a class="anchor-link" href="#get:ggra"
title="Permalink to vec4.get ggra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggra() =&gt; new vec4(g, g, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gggr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gggr</strong>() <a class="anchor-link" href="#get:gggr"
title="Permalink to vec4.get gggr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gggr() =&gt; new vec4(g, g, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gggg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gggg</strong>() <a class="anchor-link" href="#get:gggg"
title="Permalink to vec4.get gggg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gggg() =&gt; new vec4(g, g, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gggb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gggb</strong>() <a class="anchor-link" href="#get:gggb"
title="Permalink to vec4.get gggb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gggb() =&gt; new vec4(g, g, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggga</strong>() <a class="anchor-link" href="#get:ggga"
title="Permalink to vec4.get ggga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggga() =&gt; new vec4(g, g, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggbr</strong>() <a class="anchor-link" href="#get:ggbr"
title="Permalink to vec4.get ggbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggbr() =&gt; new vec4(g, g, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggbg</strong>() <a class="anchor-link" href="#get:ggbg"
title="Permalink to vec4.get ggbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggbg() =&gt; new vec4(g, g, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggbb</strong>() <a class="anchor-link" href="#get:ggbb"
title="Permalink to vec4.get ggbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggbb() =&gt; new vec4(g, g, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggba</strong>() <a class="anchor-link" href="#get:ggba"
title="Permalink to vec4.get ggba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggba() =&gt; new vec4(g, g, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggar</strong>() <a class="anchor-link" href="#get:ggar"
title="Permalink to vec4.get ggar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggar() =&gt; new vec4(g, g, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggag</strong>() <a class="anchor-link" href="#get:ggag"
title="Permalink to vec4.get ggag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggag() =&gt; new vec4(g, g, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggab</strong>() <a class="anchor-link" href="#get:ggab"
title="Permalink to vec4.get ggab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggab() =&gt; new vec4(g, g, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ggaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ggaa</strong>() <a class="anchor-link" href="#get:ggaa"
title="Permalink to vec4.get ggaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ggaa() =&gt; new vec4(g, g, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbrr</strong>() <a class="anchor-link" href="#get:gbrr"
title="Permalink to vec4.get gbrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbrr() =&gt; new vec4(g, b, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbrg</strong>() <a class="anchor-link" href="#get:gbrg"
title="Permalink to vec4.get gbrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbrg() =&gt; new vec4(g, b, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbrb</strong>() <a class="anchor-link" href="#get:gbrb"
title="Permalink to vec4.get gbrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbrb() =&gt; new vec4(g, b, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbgr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbgr</strong>() <a class="anchor-link" href="#get:gbgr"
title="Permalink to vec4.get gbgr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbgr() =&gt; new vec4(g, b, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbgg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbgg</strong>() <a class="anchor-link" href="#get:gbgg"
title="Permalink to vec4.get gbgg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbgg() =&gt; new vec4(g, b, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbgb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbgb</strong>() <a class="anchor-link" href="#get:gbgb"
title="Permalink to vec4.get gbgb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbgb() =&gt; new vec4(g, b, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbga</strong>() <a class="anchor-link" href="#get:gbga"
title="Permalink to vec4.get gbga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbga() =&gt; new vec4(g, b, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbbr</strong>() <a class="anchor-link" href="#get:gbbr"
title="Permalink to vec4.get gbbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbbr() =&gt; new vec4(g, b, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbbg</strong>() <a class="anchor-link" href="#get:gbbg"
title="Permalink to vec4.get gbbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbbg() =&gt; new vec4(g, b, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbbb</strong>() <a class="anchor-link" href="#get:gbbb"
title="Permalink to vec4.get gbbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbbb() =&gt; new vec4(g, b, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbba</strong>() <a class="anchor-link" href="#get:gbba"
title="Permalink to vec4.get gbba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbba() =&gt; new vec4(g, b, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbag</strong>() <a class="anchor-link" href="#get:gbag"
title="Permalink to vec4.get gbag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbag() =&gt; new vec4(g, b, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbab</strong>() <a class="anchor-link" href="#get:gbab"
title="Permalink to vec4.get gbab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbab() =&gt; new vec4(g, b, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gbaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gbaa</strong>() <a class="anchor-link" href="#get:gbaa"
title="Permalink to vec4.get gbaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gbaa() =&gt; new vec4(g, b, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:garr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get garr</strong>() <a class="anchor-link" href="#get:garr"
title="Permalink to vec4.get garr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get garr() =&gt; new vec4(g, a, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:garg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get garg</strong>() <a class="anchor-link" href="#get:garg"
title="Permalink to vec4.get garg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get garg() =&gt; new vec4(g, a, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gara">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gara</strong>() <a class="anchor-link" href="#get:gara"
title="Permalink to vec4.get gara">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gara() =&gt; new vec4(g, a, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gagr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gagr</strong>() <a class="anchor-link" href="#get:gagr"
title="Permalink to vec4.get gagr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gagr() =&gt; new vec4(g, a, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gagg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gagg</strong>() <a class="anchor-link" href="#get:gagg"
title="Permalink to vec4.get gagg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gagg() =&gt; new vec4(g, a, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gagb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gagb</strong>() <a class="anchor-link" href="#get:gagb"
title="Permalink to vec4.get gagb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gagb() =&gt; new vec4(g, a, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gaga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gaga</strong>() <a class="anchor-link" href="#get:gaga"
title="Permalink to vec4.get gaga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gaga() =&gt; new vec4(g, a, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gabg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gabg</strong>() <a class="anchor-link" href="#get:gabg"
title="Permalink to vec4.get gabg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gabg() =&gt; new vec4(g, a, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gabb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gabb</strong>() <a class="anchor-link" href="#get:gabb"
title="Permalink to vec4.get gabb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gabb() =&gt; new vec4(g, a, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gaba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gaba</strong>() <a class="anchor-link" href="#get:gaba"
title="Permalink to vec4.get gaba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gaba() =&gt; new vec4(g, a, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gaar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gaar</strong>() <a class="anchor-link" href="#get:gaar"
title="Permalink to vec4.get gaar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gaar() =&gt; new vec4(g, a, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gaag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gaag</strong>() <a class="anchor-link" href="#get:gaag"
title="Permalink to vec4.get gaag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gaag() =&gt; new vec4(g, a, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gaab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gaab</strong>() <a class="anchor-link" href="#get:gaab"
title="Permalink to vec4.get gaab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gaab() =&gt; new vec4(g, a, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:gaaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get gaaa</strong>() <a class="anchor-link" href="#get:gaaa"
title="Permalink to vec4.get gaaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get gaaa() =&gt; new vec4(g, a, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brrr</strong>() <a class="anchor-link" href="#get:brrr"
title="Permalink to vec4.get brrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brrr() =&gt; new vec4(b, r, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brrg</strong>() <a class="anchor-link" href="#get:brrg"
title="Permalink to vec4.get brrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brrg() =&gt; new vec4(b, r, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brrb</strong>() <a class="anchor-link" href="#get:brrb"
title="Permalink to vec4.get brrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brrb() =&gt; new vec4(b, r, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brra</strong>() <a class="anchor-link" href="#get:brra"
title="Permalink to vec4.get brra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brra() =&gt; new vec4(b, r, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brgr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brgr</strong>() <a class="anchor-link" href="#get:brgr"
title="Permalink to vec4.get brgr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brgr() =&gt; new vec4(b, r, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brgg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brgg</strong>() <a class="anchor-link" href="#get:brgg"
title="Permalink to vec4.get brgg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brgg() =&gt; new vec4(b, r, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brgb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brgb</strong>() <a class="anchor-link" href="#get:brgb"
title="Permalink to vec4.get brgb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brgb() =&gt; new vec4(b, r, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brbr</strong>() <a class="anchor-link" href="#get:brbr"
title="Permalink to vec4.get brbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brbr() =&gt; new vec4(b, r, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brbg</strong>() <a class="anchor-link" href="#get:brbg"
title="Permalink to vec4.get brbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brbg() =&gt; new vec4(b, r, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brbb</strong>() <a class="anchor-link" href="#get:brbb"
title="Permalink to vec4.get brbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brbb() =&gt; new vec4(b, r, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brba</strong>() <a class="anchor-link" href="#get:brba"
title="Permalink to vec4.get brba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brba() =&gt; new vec4(b, r, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brar</strong>() <a class="anchor-link" href="#get:brar"
title="Permalink to vec4.get brar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brar() =&gt; new vec4(b, r, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:brab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get brab</strong>() <a class="anchor-link" href="#get:brab"
title="Permalink to vec4.get brab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get brab() =&gt; new vec4(b, r, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:braa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get braa</strong>() <a class="anchor-link" href="#get:braa"
title="Permalink to vec4.get braa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get braa() =&gt; new vec4(b, r, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgrr</strong>() <a class="anchor-link" href="#get:bgrr"
title="Permalink to vec4.get bgrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgrr() =&gt; new vec4(b, g, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgrg</strong>() <a class="anchor-link" href="#get:bgrg"
title="Permalink to vec4.get bgrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgrg() =&gt; new vec4(b, g, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgrb</strong>() <a class="anchor-link" href="#get:bgrb"
title="Permalink to vec4.get bgrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgrb() =&gt; new vec4(b, g, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bggr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bggr</strong>() <a class="anchor-link" href="#get:bggr"
title="Permalink to vec4.get bggr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bggr() =&gt; new vec4(b, g, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bggg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bggg</strong>() <a class="anchor-link" href="#get:bggg"
title="Permalink to vec4.get bggg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bggg() =&gt; new vec4(b, g, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bggb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bggb</strong>() <a class="anchor-link" href="#get:bggb"
title="Permalink to vec4.get bggb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bggb() =&gt; new vec4(b, g, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgga</strong>() <a class="anchor-link" href="#get:bgga"
title="Permalink to vec4.get bgga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgga() =&gt; new vec4(b, g, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgbr</strong>() <a class="anchor-link" href="#get:bgbr"
title="Permalink to vec4.get bgbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgbr() =&gt; new vec4(b, g, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgbg</strong>() <a class="anchor-link" href="#get:bgbg"
title="Permalink to vec4.get bgbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgbg() =&gt; new vec4(b, g, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgbb</strong>() <a class="anchor-link" href="#get:bgbb"
title="Permalink to vec4.get bgbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgbb() =&gt; new vec4(b, g, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgba</strong>() <a class="anchor-link" href="#get:bgba"
title="Permalink to vec4.get bgba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgba() =&gt; new vec4(b, g, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgag</strong>() <a class="anchor-link" href="#get:bgag"
title="Permalink to vec4.get bgag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgag() =&gt; new vec4(b, g, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgab</strong>() <a class="anchor-link" href="#get:bgab"
title="Permalink to vec4.get bgab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgab() =&gt; new vec4(b, g, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bgaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bgaa</strong>() <a class="anchor-link" href="#get:bgaa"
title="Permalink to vec4.get bgaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bgaa() =&gt; new vec4(b, g, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbrr</strong>() <a class="anchor-link" href="#get:bbrr"
title="Permalink to vec4.get bbrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbrr() =&gt; new vec4(b, b, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbrg</strong>() <a class="anchor-link" href="#get:bbrg"
title="Permalink to vec4.get bbrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbrg() =&gt; new vec4(b, b, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbrb</strong>() <a class="anchor-link" href="#get:bbrb"
title="Permalink to vec4.get bbrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbrb() =&gt; new vec4(b, b, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbra</strong>() <a class="anchor-link" href="#get:bbra"
title="Permalink to vec4.get bbra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbra() =&gt; new vec4(b, b, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbgr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbgr</strong>() <a class="anchor-link" href="#get:bbgr"
title="Permalink to vec4.get bbgr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbgr() =&gt; new vec4(b, b, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbgg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbgg</strong>() <a class="anchor-link" href="#get:bbgg"
title="Permalink to vec4.get bbgg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbgg() =&gt; new vec4(b, b, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbgb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbgb</strong>() <a class="anchor-link" href="#get:bbgb"
title="Permalink to vec4.get bbgb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbgb() =&gt; new vec4(b, b, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbga</strong>() <a class="anchor-link" href="#get:bbga"
title="Permalink to vec4.get bbga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbga() =&gt; new vec4(b, b, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbbr</strong>() <a class="anchor-link" href="#get:bbbr"
title="Permalink to vec4.get bbbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbbr() =&gt; new vec4(b, b, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbbg</strong>() <a class="anchor-link" href="#get:bbbg"
title="Permalink to vec4.get bbbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbbg() =&gt; new vec4(b, b, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbbb</strong>() <a class="anchor-link" href="#get:bbbb"
title="Permalink to vec4.get bbbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbbb() =&gt; new vec4(b, b, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbba</strong>() <a class="anchor-link" href="#get:bbba"
title="Permalink to vec4.get bbba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbba() =&gt; new vec4(b, b, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbar</strong>() <a class="anchor-link" href="#get:bbar"
title="Permalink to vec4.get bbar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbar() =&gt; new vec4(b, b, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbag</strong>() <a class="anchor-link" href="#get:bbag"
title="Permalink to vec4.get bbag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbag() =&gt; new vec4(b, b, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbab</strong>() <a class="anchor-link" href="#get:bbab"
title="Permalink to vec4.get bbab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbab() =&gt; new vec4(b, b, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bbaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bbaa</strong>() <a class="anchor-link" href="#get:bbaa"
title="Permalink to vec4.get bbaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bbaa() =&gt; new vec4(b, b, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:barr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get barr</strong>() <a class="anchor-link" href="#get:barr"
title="Permalink to vec4.get barr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get barr() =&gt; new vec4(b, a, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:barb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get barb</strong>() <a class="anchor-link" href="#get:barb"
title="Permalink to vec4.get barb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get barb() =&gt; new vec4(b, a, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bara">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bara</strong>() <a class="anchor-link" href="#get:bara"
title="Permalink to vec4.get bara">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bara() =&gt; new vec4(b, a, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bagg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bagg</strong>() <a class="anchor-link" href="#get:bagg"
title="Permalink to vec4.get bagg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bagg() =&gt; new vec4(b, a, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:bagb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get bagb</strong>() <a class="anchor-link" href="#get:bagb"
title="Permalink to vec4.get bagb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get bagb() =&gt; new vec4(b, a, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:baga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get baga</strong>() <a class="anchor-link" href="#get:baga"
title="Permalink to vec4.get baga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get baga() =&gt; new vec4(b, a, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:babr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get babr</strong>() <a class="anchor-link" href="#get:babr"
title="Permalink to vec4.get babr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get babr() =&gt; new vec4(b, a, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:babg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get babg</strong>() <a class="anchor-link" href="#get:babg"
title="Permalink to vec4.get babg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get babg() =&gt; new vec4(b, a, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:babb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get babb</strong>() <a class="anchor-link" href="#get:babb"
title="Permalink to vec4.get babb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get babb() =&gt; new vec4(b, a, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:baba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get baba</strong>() <a class="anchor-link" href="#get:baba"
title="Permalink to vec4.get baba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get baba() =&gt; new vec4(b, a, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:baar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get baar</strong>() <a class="anchor-link" href="#get:baar"
title="Permalink to vec4.get baar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get baar() =&gt; new vec4(b, a, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:baag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get baag</strong>() <a class="anchor-link" href="#get:baag"
title="Permalink to vec4.get baag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get baag() =&gt; new vec4(b, a, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:baab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get baab</strong>() <a class="anchor-link" href="#get:baab"
title="Permalink to vec4.get baab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get baab() =&gt; new vec4(b, a, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:baaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get baaa</strong>() <a class="anchor-link" href="#get:baaa"
title="Permalink to vec4.get baaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get baaa() =&gt; new vec4(b, a, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arrr</strong>() <a class="anchor-link" href="#get:arrr"
title="Permalink to vec4.get arrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arrr() =&gt; new vec4(a, r, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arrg</strong>() <a class="anchor-link" href="#get:arrg"
title="Permalink to vec4.get arrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arrg() =&gt; new vec4(a, r, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arrb</strong>() <a class="anchor-link" href="#get:arrb"
title="Permalink to vec4.get arrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arrb() =&gt; new vec4(a, r, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arra</strong>() <a class="anchor-link" href="#get:arra"
title="Permalink to vec4.get arra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arra() =&gt; new vec4(a, r, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:argr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get argr</strong>() <a class="anchor-link" href="#get:argr"
title="Permalink to vec4.get argr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get argr() =&gt; new vec4(a, r, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:argg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get argg</strong>() <a class="anchor-link" href="#get:argg"
title="Permalink to vec4.get argg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get argg() =&gt; new vec4(a, r, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arga</strong>() <a class="anchor-link" href="#get:arga"
title="Permalink to vec4.get arga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arga() =&gt; new vec4(a, r, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arbr</strong>() <a class="anchor-link" href="#get:arbr"
title="Permalink to vec4.get arbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arbr() =&gt; new vec4(a, r, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arbb</strong>() <a class="anchor-link" href="#get:arbb"
title="Permalink to vec4.get arbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arbb() =&gt; new vec4(a, r, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arba</strong>() <a class="anchor-link" href="#get:arba"
title="Permalink to vec4.get arba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arba() =&gt; new vec4(a, r, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arar</strong>() <a class="anchor-link" href="#get:arar"
title="Permalink to vec4.get arar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arar() =&gt; new vec4(a, r, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arag</strong>() <a class="anchor-link" href="#get:arag"
title="Permalink to vec4.get arag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arag() =&gt; new vec4(a, r, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:arab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get arab</strong>() <a class="anchor-link" href="#get:arab"
title="Permalink to vec4.get arab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get arab() =&gt; new vec4(a, r, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:araa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get araa</strong>() <a class="anchor-link" href="#get:araa"
title="Permalink to vec4.get araa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get araa() =&gt; new vec4(a, r, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agrr</strong>() <a class="anchor-link" href="#get:agrr"
title="Permalink to vec4.get agrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agrr() =&gt; new vec4(a, g, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agrg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agrg</strong>() <a class="anchor-link" href="#get:agrg"
title="Permalink to vec4.get agrg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agrg() =&gt; new vec4(a, g, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agra</strong>() <a class="anchor-link" href="#get:agra"
title="Permalink to vec4.get agra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agra() =&gt; new vec4(a, g, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aggr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aggr</strong>() <a class="anchor-link" href="#get:aggr"
title="Permalink to vec4.get aggr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aggr() =&gt; new vec4(a, g, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aggg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aggg</strong>() <a class="anchor-link" href="#get:aggg"
title="Permalink to vec4.get aggg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aggg() =&gt; new vec4(a, g, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aggb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aggb</strong>() <a class="anchor-link" href="#get:aggb"
title="Permalink to vec4.get aggb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aggb() =&gt; new vec4(a, g, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agga</strong>() <a class="anchor-link" href="#get:agga"
title="Permalink to vec4.get agga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agga() =&gt; new vec4(a, g, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agbg</strong>() <a class="anchor-link" href="#get:agbg"
title="Permalink to vec4.get agbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agbg() =&gt; new vec4(a, g, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agbb</strong>() <a class="anchor-link" href="#get:agbb"
title="Permalink to vec4.get agbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agbb() =&gt; new vec4(a, g, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agba</strong>() <a class="anchor-link" href="#get:agba"
title="Permalink to vec4.get agba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agba() =&gt; new vec4(a, g, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agar</strong>() <a class="anchor-link" href="#get:agar"
title="Permalink to vec4.get agar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agar() =&gt; new vec4(a, g, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agag</strong>() <a class="anchor-link" href="#get:agag"
title="Permalink to vec4.get agag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agag() =&gt; new vec4(a, g, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agab</strong>() <a class="anchor-link" href="#get:agab"
title="Permalink to vec4.get agab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agab() =&gt; new vec4(a, g, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:agaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get agaa</strong>() <a class="anchor-link" href="#get:agaa"
title="Permalink to vec4.get agaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get agaa() =&gt; new vec4(a, g, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abrr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abrr</strong>() <a class="anchor-link" href="#get:abrr"
title="Permalink to vec4.get abrr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abrr() =&gt; new vec4(a, b, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abrb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abrb</strong>() <a class="anchor-link" href="#get:abrb"
title="Permalink to vec4.get abrb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abrb() =&gt; new vec4(a, b, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abra">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abra</strong>() <a class="anchor-link" href="#get:abra"
title="Permalink to vec4.get abra">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abra() =&gt; new vec4(a, b, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abgg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abgg</strong>() <a class="anchor-link" href="#get:abgg"
title="Permalink to vec4.get abgg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abgg() =&gt; new vec4(a, b, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abgb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abgb</strong>() <a class="anchor-link" href="#get:abgb"
title="Permalink to vec4.get abgb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abgb() =&gt; new vec4(a, b, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abga</strong>() <a class="anchor-link" href="#get:abga"
title="Permalink to vec4.get abga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abga() =&gt; new vec4(a, b, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abbr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abbr</strong>() <a class="anchor-link" href="#get:abbr"
title="Permalink to vec4.get abbr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abbr() =&gt; new vec4(a, b, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abbg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abbg</strong>() <a class="anchor-link" href="#get:abbg"
title="Permalink to vec4.get abbg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abbg() =&gt; new vec4(a, b, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abbb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abbb</strong>() <a class="anchor-link" href="#get:abbb"
title="Permalink to vec4.get abbb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abbb() =&gt; new vec4(a, b, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abba</strong>() <a class="anchor-link" href="#get:abba"
title="Permalink to vec4.get abba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abba() =&gt; new vec4(a, b, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abar</strong>() <a class="anchor-link" href="#get:abar"
title="Permalink to vec4.get abar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abar() =&gt; new vec4(a, b, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abag</strong>() <a class="anchor-link" href="#get:abag"
title="Permalink to vec4.get abag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abag() =&gt; new vec4(a, b, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abab</strong>() <a class="anchor-link" href="#get:abab"
title="Permalink to vec4.get abab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abab() =&gt; new vec4(a, b, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:abaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get abaa</strong>() <a class="anchor-link" href="#get:abaa"
title="Permalink to vec4.get abaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get abaa() =&gt; new vec4(a, b, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aarr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aarr</strong>() <a class="anchor-link" href="#get:aarr"
title="Permalink to vec4.get aarr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aarr() =&gt; new vec4(a, a, r, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aarg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aarg</strong>() <a class="anchor-link" href="#get:aarg"
title="Permalink to vec4.get aarg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aarg() =&gt; new vec4(a, a, r, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aarb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aarb</strong>() <a class="anchor-link" href="#get:aarb"
title="Permalink to vec4.get aarb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aarb() =&gt; new vec4(a, a, r, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aara">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aara</strong>() <a class="anchor-link" href="#get:aara"
title="Permalink to vec4.get aara">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aara() =&gt; new vec4(a, a, r, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aagr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aagr</strong>() <a class="anchor-link" href="#get:aagr"
title="Permalink to vec4.get aagr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aagr() =&gt; new vec4(a, a, g, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aagg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aagg</strong>() <a class="anchor-link" href="#get:aagg"
title="Permalink to vec4.get aagg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aagg() =&gt; new vec4(a, a, g, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aagb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aagb</strong>() <a class="anchor-link" href="#get:aagb"
title="Permalink to vec4.get aagb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aagb() =&gt; new vec4(a, a, g, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aaga">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aaga</strong>() <a class="anchor-link" href="#get:aaga"
title="Permalink to vec4.get aaga">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aaga() =&gt; new vec4(a, a, g, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aabr">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aabr</strong>() <a class="anchor-link" href="#get:aabr"
title="Permalink to vec4.get aabr">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aabr() =&gt; new vec4(a, a, b, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aabg">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aabg</strong>() <a class="anchor-link" href="#get:aabg"
title="Permalink to vec4.get aabg">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aabg() =&gt; new vec4(a, a, b, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aabb">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aabb</strong>() <a class="anchor-link" href="#get:aabb"
title="Permalink to vec4.get aabb">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aabb() =&gt; new vec4(a, a, b, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aaba">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aaba</strong>() <a class="anchor-link" href="#get:aaba"
title="Permalink to vec4.get aaba">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aaba() =&gt; new vec4(a, a, b, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aaar">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aaar</strong>() <a class="anchor-link" href="#get:aaar"
title="Permalink to vec4.get aaar">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aaar() =&gt; new vec4(a, a, a, r);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aaag">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aaag</strong>() <a class="anchor-link" href="#get:aaag"
title="Permalink to vec4.get aaag">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aaag() =&gt; new vec4(a, a, a, g);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aaab">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aaab</strong>() <a class="anchor-link" href="#get:aaab"
title="Permalink to vec4.get aaab">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aaab() =&gt; new vec4(a, a, a, b);
</pre>
</div>
</div>
<div class="method"><h4 id="get:aaaa">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get aaaa</strong>() <a class="anchor-link" href="#get:aaaa"
title="Permalink to vec4.get aaaa">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get aaaa() =&gt; new vec4(a, a, a, a);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get ss</strong>() <a class="anchor-link" href="#get:ss"
title="Permalink to vec4.get ss">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get ss() =&gt; new vec2(s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get tt</strong>() <a class="anchor-link" href="#get:tt"
title="Permalink to vec4.get tt">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get tt() =&gt; new vec2(t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get pp</strong>() <a class="anchor-link" href="#get:pp"
title="Permalink to vec4.get pp">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get pp() =&gt; new vec2(p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec2.html">vec2</a> <strong>get qq</strong>() <a class="anchor-link" href="#get:qq"
title="Permalink to vec4.get qq">#</a></h4>
<div class="doc">
<pre class="source">
vec2 get qq() =&gt; new vec2(q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get sss</strong>() <a class="anchor-link" href="#get:sss"
title="Permalink to vec4.get sss">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get sss() =&gt; new vec3(s, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get sst</strong>() <a class="anchor-link" href="#get:sst"
title="Permalink to vec4.get sst">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get sst() =&gt; new vec3(s, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ssp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ssp</strong>() <a class="anchor-link" href="#get:ssp"
title="Permalink to vec4.get ssp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ssp() =&gt; new vec3(s, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ssq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ssq</strong>() <a class="anchor-link" href="#get:ssq"
title="Permalink to vec4.get ssq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ssq() =&gt; new vec3(s, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get sts</strong>() <a class="anchor-link" href="#get:sts"
title="Permalink to vec4.get sts">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get sts() =&gt; new vec3(s, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get stt</strong>() <a class="anchor-link" href="#get:stt"
title="Permalink to vec4.get stt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get stt() =&gt; new vec3(s, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get sps</strong>() <a class="anchor-link" href="#get:sps"
title="Permalink to vec4.get sps">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get sps() =&gt; new vec3(s, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:spp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get spp</strong>() <a class="anchor-link" href="#get:spp"
title="Permalink to vec4.get spp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get spp() =&gt; new vec3(s, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get sqs</strong>() <a class="anchor-link" href="#get:sqs"
title="Permalink to vec4.get sqs">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get sqs() =&gt; new vec3(s, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get sqq</strong>() <a class="anchor-link" href="#get:sqq"
title="Permalink to vec4.get sqq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get sqq() =&gt; new vec3(s, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tss</strong>() <a class="anchor-link" href="#get:tss"
title="Permalink to vec4.get tss">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tss() =&gt; new vec3(t, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tst</strong>() <a class="anchor-link" href="#get:tst"
title="Permalink to vec4.get tst">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tst() =&gt; new vec3(t, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tts</strong>() <a class="anchor-link" href="#get:tts"
title="Permalink to vec4.get tts">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tts() =&gt; new vec3(t, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ttt</strong>() <a class="anchor-link" href="#get:ttt"
title="Permalink to vec4.get ttt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ttt() =&gt; new vec3(t, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ttp</strong>() <a class="anchor-link" href="#get:ttp"
title="Permalink to vec4.get ttp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ttp() =&gt; new vec3(t, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ttq</strong>() <a class="anchor-link" href="#get:ttq"
title="Permalink to vec4.get ttq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ttq() =&gt; new vec3(t, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tpt</strong>() <a class="anchor-link" href="#get:tpt"
title="Permalink to vec4.get tpt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tpt() =&gt; new vec3(t, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tpp</strong>() <a class="anchor-link" href="#get:tpp"
title="Permalink to vec4.get tpp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tpp() =&gt; new vec3(t, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tqt</strong>() <a class="anchor-link" href="#get:tqt"
title="Permalink to vec4.get tqt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tqt() =&gt; new vec3(t, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get tqq</strong>() <a class="anchor-link" href="#get:tqq"
title="Permalink to vec4.get tqq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get tqq() =&gt; new vec3(t, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get pss</strong>() <a class="anchor-link" href="#get:pss"
title="Permalink to vec4.get pss">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get pss() =&gt; new vec3(p, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:psp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get psp</strong>() <a class="anchor-link" href="#get:psp"
title="Permalink to vec4.get psp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get psp() =&gt; new vec3(p, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ptt</strong>() <a class="anchor-link" href="#get:ptt"
title="Permalink to vec4.get ptt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ptt() =&gt; new vec3(p, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ptp</strong>() <a class="anchor-link" href="#get:ptp"
title="Permalink to vec4.get ptp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ptp() =&gt; new vec3(p, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get pps</strong>() <a class="anchor-link" href="#get:pps"
title="Permalink to vec4.get pps">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get pps() =&gt; new vec3(p, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ppt</strong>() <a class="anchor-link" href="#get:ppt"
title="Permalink to vec4.get ppt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ppt() =&gt; new vec3(p, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ppp</strong>() <a class="anchor-link" href="#get:ppp"
title="Permalink to vec4.get ppp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ppp() =&gt; new vec3(p, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get ppq</strong>() <a class="anchor-link" href="#get:ppq"
title="Permalink to vec4.get ppq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get ppq() =&gt; new vec3(p, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get pqp</strong>() <a class="anchor-link" href="#get:pqp"
title="Permalink to vec4.get pqp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get pqp() =&gt; new vec3(p, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get pqq</strong>() <a class="anchor-link" href="#get:pqq"
title="Permalink to vec4.get pqq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get pqq() =&gt; new vec3(p, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qss</strong>() <a class="anchor-link" href="#get:qss"
title="Permalink to vec4.get qss">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qss() =&gt; new vec3(q, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qsq</strong>() <a class="anchor-link" href="#get:qsq"
title="Permalink to vec4.get qsq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qsq() =&gt; new vec3(q, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qtt</strong>() <a class="anchor-link" href="#get:qtt"
title="Permalink to vec4.get qtt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qtt() =&gt; new vec3(q, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qtq</strong>() <a class="anchor-link" href="#get:qtq"
title="Permalink to vec4.get qtq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qtq() =&gt; new vec3(q, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qpp</strong>() <a class="anchor-link" href="#get:qpp"
title="Permalink to vec4.get qpp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qpp() =&gt; new vec3(q, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qpq</strong>() <a class="anchor-link" href="#get:qpq"
title="Permalink to vec4.get qpq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qpq() =&gt; new vec3(q, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qqs</strong>() <a class="anchor-link" href="#get:qqs"
title="Permalink to vec4.get qqs">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qqs() =&gt; new vec3(q, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qqt</strong>() <a class="anchor-link" href="#get:qqt"
title="Permalink to vec4.get qqt">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qqt() =&gt; new vec3(q, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qqp</strong>() <a class="anchor-link" href="#get:qqp"
title="Permalink to vec4.get qqp">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qqp() =&gt; new vec3(q, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec3.html">vec3</a> <strong>get qqq</strong>() <a class="anchor-link" href="#get:qqq"
title="Permalink to vec4.get qqq">#</a></h4>
<div class="doc">
<pre class="source">
vec3 get qqq() =&gt; new vec3(q, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ssss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ssss</strong>() <a class="anchor-link" href="#get:ssss"
title="Permalink to vec4.get ssss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ssss() =&gt; new vec4(s, s, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ssst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ssst</strong>() <a class="anchor-link" href="#get:ssst"
title="Permalink to vec4.get ssst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ssst() =&gt; new vec4(s, s, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sssp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sssp</strong>() <a class="anchor-link" href="#get:sssp"
title="Permalink to vec4.get sssp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sssp() =&gt; new vec4(s, s, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sssq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sssq</strong>() <a class="anchor-link" href="#get:sssq"
title="Permalink to vec4.get sssq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sssq() =&gt; new vec4(s, s, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ssts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ssts</strong>() <a class="anchor-link" href="#get:ssts"
title="Permalink to vec4.get ssts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ssts() =&gt; new vec4(s, s, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sstt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sstt</strong>() <a class="anchor-link" href="#get:sstt"
title="Permalink to vec4.get sstt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sstt() =&gt; new vec4(s, s, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sstp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sstp</strong>() <a class="anchor-link" href="#get:sstp"
title="Permalink to vec4.get sstp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sstp() =&gt; new vec4(s, s, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sstq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sstq</strong>() <a class="anchor-link" href="#get:sstq"
title="Permalink to vec4.get sstq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sstq() =&gt; new vec4(s, s, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ssps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ssps</strong>() <a class="anchor-link" href="#get:ssps"
title="Permalink to vec4.get ssps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ssps() =&gt; new vec4(s, s, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sspt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sspt</strong>() <a class="anchor-link" href="#get:sspt"
title="Permalink to vec4.get sspt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sspt() =&gt; new vec4(s, s, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sspp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sspp</strong>() <a class="anchor-link" href="#get:sspp"
title="Permalink to vec4.get sspp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sspp() =&gt; new vec4(s, s, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sspq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sspq</strong>() <a class="anchor-link" href="#get:sspq"
title="Permalink to vec4.get sspq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sspq() =&gt; new vec4(s, s, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ssqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ssqs</strong>() <a class="anchor-link" href="#get:ssqs"
title="Permalink to vec4.get ssqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ssqs() =&gt; new vec4(s, s, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ssqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ssqt</strong>() <a class="anchor-link" href="#get:ssqt"
title="Permalink to vec4.get ssqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ssqt() =&gt; new vec4(s, s, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ssqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ssqp</strong>() <a class="anchor-link" href="#get:ssqp"
title="Permalink to vec4.get ssqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ssqp() =&gt; new vec4(s, s, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ssqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ssqq</strong>() <a class="anchor-link" href="#get:ssqq"
title="Permalink to vec4.get ssqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ssqq() =&gt; new vec4(s, s, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stss</strong>() <a class="anchor-link" href="#get:stss"
title="Permalink to vec4.get stss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stss() =&gt; new vec4(s, t, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stst</strong>() <a class="anchor-link" href="#get:stst"
title="Permalink to vec4.get stst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stst() =&gt; new vec4(s, t, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stsp</strong>() <a class="anchor-link" href="#get:stsp"
title="Permalink to vec4.get stsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stsp() =&gt; new vec4(s, t, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stsq</strong>() <a class="anchor-link" href="#get:stsq"
title="Permalink to vec4.get stsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stsq() =&gt; new vec4(s, t, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stts</strong>() <a class="anchor-link" href="#get:stts"
title="Permalink to vec4.get stts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stts() =&gt; new vec4(s, t, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sttt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sttt</strong>() <a class="anchor-link" href="#get:sttt"
title="Permalink to vec4.get sttt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sttt() =&gt; new vec4(s, t, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sttp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sttp</strong>() <a class="anchor-link" href="#get:sttp"
title="Permalink to vec4.get sttp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sttp() =&gt; new vec4(s, t, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sttq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sttq</strong>() <a class="anchor-link" href="#get:sttq"
title="Permalink to vec4.get sttq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sttq() =&gt; new vec4(s, t, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stps</strong>() <a class="anchor-link" href="#get:stps"
title="Permalink to vec4.get stps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stps() =&gt; new vec4(s, t, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stpt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stpt</strong>() <a class="anchor-link" href="#get:stpt"
title="Permalink to vec4.get stpt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stpt() =&gt; new vec4(s, t, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stpp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stpp</strong>() <a class="anchor-link" href="#get:stpp"
title="Permalink to vec4.get stpp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stpp() =&gt; new vec4(s, t, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stqs</strong>() <a class="anchor-link" href="#get:stqs"
title="Permalink to vec4.get stqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stqs() =&gt; new vec4(s, t, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stqt</strong>() <a class="anchor-link" href="#get:stqt"
title="Permalink to vec4.get stqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stqt() =&gt; new vec4(s, t, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:stqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get stqq</strong>() <a class="anchor-link" href="#get:stqq"
title="Permalink to vec4.get stqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get stqq() =&gt; new vec4(s, t, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:spss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get spss</strong>() <a class="anchor-link" href="#get:spss"
title="Permalink to vec4.get spss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get spss() =&gt; new vec4(s, p, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:spst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get spst</strong>() <a class="anchor-link" href="#get:spst"
title="Permalink to vec4.get spst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get spst() =&gt; new vec4(s, p, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:spsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get spsp</strong>() <a class="anchor-link" href="#get:spsp"
title="Permalink to vec4.get spsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get spsp() =&gt; new vec4(s, p, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:spsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get spsq</strong>() <a class="anchor-link" href="#get:spsq"
title="Permalink to vec4.get spsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get spsq() =&gt; new vec4(s, p, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:spts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get spts</strong>() <a class="anchor-link" href="#get:spts"
title="Permalink to vec4.get spts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get spts() =&gt; new vec4(s, p, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sptt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sptt</strong>() <a class="anchor-link" href="#get:sptt"
title="Permalink to vec4.get sptt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sptt() =&gt; new vec4(s, p, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sptp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sptp</strong>() <a class="anchor-link" href="#get:sptp"
title="Permalink to vec4.get sptp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sptp() =&gt; new vec4(s, p, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:spps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get spps</strong>() <a class="anchor-link" href="#get:spps"
title="Permalink to vec4.get spps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get spps() =&gt; new vec4(s, p, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sppt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sppt</strong>() <a class="anchor-link" href="#get:sppt"
title="Permalink to vec4.get sppt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sppt() =&gt; new vec4(s, p, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sppp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sppp</strong>() <a class="anchor-link" href="#get:sppp"
title="Permalink to vec4.get sppp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sppp() =&gt; new vec4(s, p, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sppq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sppq</strong>() <a class="anchor-link" href="#get:sppq"
title="Permalink to vec4.get sppq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sppq() =&gt; new vec4(s, p, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:spqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get spqs</strong>() <a class="anchor-link" href="#get:spqs"
title="Permalink to vec4.get spqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get spqs() =&gt; new vec4(s, p, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:spqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get spqp</strong>() <a class="anchor-link" href="#get:spqp"
title="Permalink to vec4.get spqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get spqp() =&gt; new vec4(s, p, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:spqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get spqq</strong>() <a class="anchor-link" href="#get:spqq"
title="Permalink to vec4.get spqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get spqq() =&gt; new vec4(s, p, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqss</strong>() <a class="anchor-link" href="#get:sqss"
title="Permalink to vec4.get sqss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqss() =&gt; new vec4(s, q, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqst</strong>() <a class="anchor-link" href="#get:sqst"
title="Permalink to vec4.get sqst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqst() =&gt; new vec4(s, q, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqsp</strong>() <a class="anchor-link" href="#get:sqsp"
title="Permalink to vec4.get sqsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqsp() =&gt; new vec4(s, q, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqsq</strong>() <a class="anchor-link" href="#get:sqsq"
title="Permalink to vec4.get sqsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqsq() =&gt; new vec4(s, q, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqts</strong>() <a class="anchor-link" href="#get:sqts"
title="Permalink to vec4.get sqts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqts() =&gt; new vec4(s, q, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqtt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqtt</strong>() <a class="anchor-link" href="#get:sqtt"
title="Permalink to vec4.get sqtt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqtt() =&gt; new vec4(s, q, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqtq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqtq</strong>() <a class="anchor-link" href="#get:sqtq"
title="Permalink to vec4.get sqtq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqtq() =&gt; new vec4(s, q, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqps</strong>() <a class="anchor-link" href="#get:sqps"
title="Permalink to vec4.get sqps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqps() =&gt; new vec4(s, q, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqpp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqpp</strong>() <a class="anchor-link" href="#get:sqpp"
title="Permalink to vec4.get sqpp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqpp() =&gt; new vec4(s, q, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqpq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqpq</strong>() <a class="anchor-link" href="#get:sqpq"
title="Permalink to vec4.get sqpq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqpq() =&gt; new vec4(s, q, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqqs</strong>() <a class="anchor-link" href="#get:sqqs"
title="Permalink to vec4.get sqqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqqs() =&gt; new vec4(s, q, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqqt</strong>() <a class="anchor-link" href="#get:sqqt"
title="Permalink to vec4.get sqqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqqt() =&gt; new vec4(s, q, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqqp</strong>() <a class="anchor-link" href="#get:sqqp"
title="Permalink to vec4.get sqqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqqp() =&gt; new vec4(s, q, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:sqqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get sqqq</strong>() <a class="anchor-link" href="#get:sqqq"
title="Permalink to vec4.get sqqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get sqqq() =&gt; new vec4(s, q, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tsss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tsss</strong>() <a class="anchor-link" href="#get:tsss"
title="Permalink to vec4.get tsss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tsss() =&gt; new vec4(t, s, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tsst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tsst</strong>() <a class="anchor-link" href="#get:tsst"
title="Permalink to vec4.get tsst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tsst() =&gt; new vec4(t, s, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tssp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tssp</strong>() <a class="anchor-link" href="#get:tssp"
title="Permalink to vec4.get tssp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tssp() =&gt; new vec4(t, s, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tssq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tssq</strong>() <a class="anchor-link" href="#get:tssq"
title="Permalink to vec4.get tssq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tssq() =&gt; new vec4(t, s, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tsts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tsts</strong>() <a class="anchor-link" href="#get:tsts"
title="Permalink to vec4.get tsts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tsts() =&gt; new vec4(t, s, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tstt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tstt</strong>() <a class="anchor-link" href="#get:tstt"
title="Permalink to vec4.get tstt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tstt() =&gt; new vec4(t, s, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tstp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tstp</strong>() <a class="anchor-link" href="#get:tstp"
title="Permalink to vec4.get tstp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tstp() =&gt; new vec4(t, s, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tstq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tstq</strong>() <a class="anchor-link" href="#get:tstq"
title="Permalink to vec4.get tstq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tstq() =&gt; new vec4(t, s, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tsps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tsps</strong>() <a class="anchor-link" href="#get:tsps"
title="Permalink to vec4.get tsps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tsps() =&gt; new vec4(t, s, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tspt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tspt</strong>() <a class="anchor-link" href="#get:tspt"
title="Permalink to vec4.get tspt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tspt() =&gt; new vec4(t, s, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tspp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tspp</strong>() <a class="anchor-link" href="#get:tspp"
title="Permalink to vec4.get tspp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tspp() =&gt; new vec4(t, s, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tsqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tsqs</strong>() <a class="anchor-link" href="#get:tsqs"
title="Permalink to vec4.get tsqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tsqs() =&gt; new vec4(t, s, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tsqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tsqt</strong>() <a class="anchor-link" href="#get:tsqt"
title="Permalink to vec4.get tsqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tsqt() =&gt; new vec4(t, s, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tsqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tsqq</strong>() <a class="anchor-link" href="#get:tsqq"
title="Permalink to vec4.get tsqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tsqq() =&gt; new vec4(t, s, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttss</strong>() <a class="anchor-link" href="#get:ttss"
title="Permalink to vec4.get ttss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttss() =&gt; new vec4(t, t, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttst</strong>() <a class="anchor-link" href="#get:ttst"
title="Permalink to vec4.get ttst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttst() =&gt; new vec4(t, t, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttsp</strong>() <a class="anchor-link" href="#get:ttsp"
title="Permalink to vec4.get ttsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttsp() =&gt; new vec4(t, t, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttsq</strong>() <a class="anchor-link" href="#get:ttsq"
title="Permalink to vec4.get ttsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttsq() =&gt; new vec4(t, t, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttts</strong>() <a class="anchor-link" href="#get:ttts"
title="Permalink to vec4.get ttts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttts() =&gt; new vec4(t, t, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tttt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tttt</strong>() <a class="anchor-link" href="#get:tttt"
title="Permalink to vec4.get tttt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tttt() =&gt; new vec4(t, t, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tttp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tttp</strong>() <a class="anchor-link" href="#get:tttp"
title="Permalink to vec4.get tttp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tttp() =&gt; new vec4(t, t, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tttq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tttq</strong>() <a class="anchor-link" href="#get:tttq"
title="Permalink to vec4.get tttq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tttq() =&gt; new vec4(t, t, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttps</strong>() <a class="anchor-link" href="#get:ttps"
title="Permalink to vec4.get ttps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttps() =&gt; new vec4(t, t, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttpt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttpt</strong>() <a class="anchor-link" href="#get:ttpt"
title="Permalink to vec4.get ttpt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttpt() =&gt; new vec4(t, t, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttpp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttpp</strong>() <a class="anchor-link" href="#get:ttpp"
title="Permalink to vec4.get ttpp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttpp() =&gt; new vec4(t, t, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttpq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttpq</strong>() <a class="anchor-link" href="#get:ttpq"
title="Permalink to vec4.get ttpq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttpq() =&gt; new vec4(t, t, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttqs</strong>() <a class="anchor-link" href="#get:ttqs"
title="Permalink to vec4.get ttqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttqs() =&gt; new vec4(t, t, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttqt</strong>() <a class="anchor-link" href="#get:ttqt"
title="Permalink to vec4.get ttqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttqt() =&gt; new vec4(t, t, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttqp</strong>() <a class="anchor-link" href="#get:ttqp"
title="Permalink to vec4.get ttqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttqp() =&gt; new vec4(t, t, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ttqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ttqq</strong>() <a class="anchor-link" href="#get:ttqq"
title="Permalink to vec4.get ttqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ttqq() =&gt; new vec4(t, t, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tpss</strong>() <a class="anchor-link" href="#get:tpss"
title="Permalink to vec4.get tpss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tpss() =&gt; new vec4(t, p, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tpst</strong>() <a class="anchor-link" href="#get:tpst"
title="Permalink to vec4.get tpst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tpst() =&gt; new vec4(t, p, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tpsp</strong>() <a class="anchor-link" href="#get:tpsp"
title="Permalink to vec4.get tpsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tpsp() =&gt; new vec4(t, p, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tpts</strong>() <a class="anchor-link" href="#get:tpts"
title="Permalink to vec4.get tpts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tpts() =&gt; new vec4(t, p, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tptt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tptt</strong>() <a class="anchor-link" href="#get:tptt"
title="Permalink to vec4.get tptt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tptt() =&gt; new vec4(t, p, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tptp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tptp</strong>() <a class="anchor-link" href="#get:tptp"
title="Permalink to vec4.get tptp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tptp() =&gt; new vec4(t, p, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tptq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tptq</strong>() <a class="anchor-link" href="#get:tptq"
title="Permalink to vec4.get tptq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tptq() =&gt; new vec4(t, p, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tpps</strong>() <a class="anchor-link" href="#get:tpps"
title="Permalink to vec4.get tpps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tpps() =&gt; new vec4(t, p, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tppt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tppt</strong>() <a class="anchor-link" href="#get:tppt"
title="Permalink to vec4.get tppt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tppt() =&gt; new vec4(t, p, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tppp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tppp</strong>() <a class="anchor-link" href="#get:tppp"
title="Permalink to vec4.get tppp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tppp() =&gt; new vec4(t, p, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tppq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tppq</strong>() <a class="anchor-link" href="#get:tppq"
title="Permalink to vec4.get tppq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tppq() =&gt; new vec4(t, p, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tpqt</strong>() <a class="anchor-link" href="#get:tpqt"
title="Permalink to vec4.get tpqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tpqt() =&gt; new vec4(t, p, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tpqp</strong>() <a class="anchor-link" href="#get:tpqp"
title="Permalink to vec4.get tpqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tpqp() =&gt; new vec4(t, p, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tpqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tpqq</strong>() <a class="anchor-link" href="#get:tpqq"
title="Permalink to vec4.get tpqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tpqq() =&gt; new vec4(t, p, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqss</strong>() <a class="anchor-link" href="#get:tqss"
title="Permalink to vec4.get tqss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqss() =&gt; new vec4(t, q, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqst</strong>() <a class="anchor-link" href="#get:tqst"
title="Permalink to vec4.get tqst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqst() =&gt; new vec4(t, q, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqsq</strong>() <a class="anchor-link" href="#get:tqsq"
title="Permalink to vec4.get tqsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqsq() =&gt; new vec4(t, q, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqts</strong>() <a class="anchor-link" href="#get:tqts"
title="Permalink to vec4.get tqts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqts() =&gt; new vec4(t, q, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqtt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqtt</strong>() <a class="anchor-link" href="#get:tqtt"
title="Permalink to vec4.get tqtt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqtt() =&gt; new vec4(t, q, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqtp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqtp</strong>() <a class="anchor-link" href="#get:tqtp"
title="Permalink to vec4.get tqtp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqtp() =&gt; new vec4(t, q, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqtq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqtq</strong>() <a class="anchor-link" href="#get:tqtq"
title="Permalink to vec4.get tqtq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqtq() =&gt; new vec4(t, q, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqpt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqpt</strong>() <a class="anchor-link" href="#get:tqpt"
title="Permalink to vec4.get tqpt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqpt() =&gt; new vec4(t, q, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqpp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqpp</strong>() <a class="anchor-link" href="#get:tqpp"
title="Permalink to vec4.get tqpp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqpp() =&gt; new vec4(t, q, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqpq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqpq</strong>() <a class="anchor-link" href="#get:tqpq"
title="Permalink to vec4.get tqpq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqpq() =&gt; new vec4(t, q, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqqs</strong>() <a class="anchor-link" href="#get:tqqs"
title="Permalink to vec4.get tqqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqqs() =&gt; new vec4(t, q, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqqt</strong>() <a class="anchor-link" href="#get:tqqt"
title="Permalink to vec4.get tqqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqqt() =&gt; new vec4(t, q, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqqp</strong>() <a class="anchor-link" href="#get:tqqp"
title="Permalink to vec4.get tqqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqqp() =&gt; new vec4(t, q, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:tqqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get tqqq</strong>() <a class="anchor-link" href="#get:tqqq"
title="Permalink to vec4.get tqqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get tqqq() =&gt; new vec4(t, q, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:psss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get psss</strong>() <a class="anchor-link" href="#get:psss"
title="Permalink to vec4.get psss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get psss() =&gt; new vec4(p, s, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:psst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get psst</strong>() <a class="anchor-link" href="#get:psst"
title="Permalink to vec4.get psst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get psst() =&gt; new vec4(p, s, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pssp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pssp</strong>() <a class="anchor-link" href="#get:pssp"
title="Permalink to vec4.get pssp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pssp() =&gt; new vec4(p, s, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pssq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pssq</strong>() <a class="anchor-link" href="#get:pssq"
title="Permalink to vec4.get pssq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pssq() =&gt; new vec4(p, s, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:psts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get psts</strong>() <a class="anchor-link" href="#get:psts"
title="Permalink to vec4.get psts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get psts() =&gt; new vec4(p, s, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pstt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pstt</strong>() <a class="anchor-link" href="#get:pstt"
title="Permalink to vec4.get pstt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pstt() =&gt; new vec4(p, s, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pstp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pstp</strong>() <a class="anchor-link" href="#get:pstp"
title="Permalink to vec4.get pstp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pstp() =&gt; new vec4(p, s, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:psps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get psps</strong>() <a class="anchor-link" href="#get:psps"
title="Permalink to vec4.get psps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get psps() =&gt; new vec4(p, s, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pspt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pspt</strong>() <a class="anchor-link" href="#get:pspt"
title="Permalink to vec4.get pspt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pspt() =&gt; new vec4(p, s, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pspp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pspp</strong>() <a class="anchor-link" href="#get:pspp"
title="Permalink to vec4.get pspp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pspp() =&gt; new vec4(p, s, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pspq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pspq</strong>() <a class="anchor-link" href="#get:pspq"
title="Permalink to vec4.get pspq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pspq() =&gt; new vec4(p, s, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:psqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get psqs</strong>() <a class="anchor-link" href="#get:psqs"
title="Permalink to vec4.get psqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get psqs() =&gt; new vec4(p, s, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:psqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get psqp</strong>() <a class="anchor-link" href="#get:psqp"
title="Permalink to vec4.get psqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get psqp() =&gt; new vec4(p, s, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:psqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get psqq</strong>() <a class="anchor-link" href="#get:psqq"
title="Permalink to vec4.get psqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get psqq() =&gt; new vec4(p, s, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptss</strong>() <a class="anchor-link" href="#get:ptss"
title="Permalink to vec4.get ptss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptss() =&gt; new vec4(p, t, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptst</strong>() <a class="anchor-link" href="#get:ptst"
title="Permalink to vec4.get ptst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptst() =&gt; new vec4(p, t, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptsp</strong>() <a class="anchor-link" href="#get:ptsp"
title="Permalink to vec4.get ptsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptsp() =&gt; new vec4(p, t, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptts</strong>() <a class="anchor-link" href="#get:ptts"
title="Permalink to vec4.get ptts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptts() =&gt; new vec4(p, t, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pttt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pttt</strong>() <a class="anchor-link" href="#get:pttt"
title="Permalink to vec4.get pttt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pttt() =&gt; new vec4(p, t, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pttp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pttp</strong>() <a class="anchor-link" href="#get:pttp"
title="Permalink to vec4.get pttp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pttp() =&gt; new vec4(p, t, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pttq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pttq</strong>() <a class="anchor-link" href="#get:pttq"
title="Permalink to vec4.get pttq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pttq() =&gt; new vec4(p, t, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptps</strong>() <a class="anchor-link" href="#get:ptps"
title="Permalink to vec4.get ptps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptps() =&gt; new vec4(p, t, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptpt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptpt</strong>() <a class="anchor-link" href="#get:ptpt"
title="Permalink to vec4.get ptpt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptpt() =&gt; new vec4(p, t, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptpp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptpp</strong>() <a class="anchor-link" href="#get:ptpp"
title="Permalink to vec4.get ptpp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptpp() =&gt; new vec4(p, t, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptpq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptpq</strong>() <a class="anchor-link" href="#get:ptpq"
title="Permalink to vec4.get ptpq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptpq() =&gt; new vec4(p, t, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptqt</strong>() <a class="anchor-link" href="#get:ptqt"
title="Permalink to vec4.get ptqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptqt() =&gt; new vec4(p, t, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptqp</strong>() <a class="anchor-link" href="#get:ptqp"
title="Permalink to vec4.get ptqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptqp() =&gt; new vec4(p, t, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ptqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ptqq</strong>() <a class="anchor-link" href="#get:ptqq"
title="Permalink to vec4.get ptqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ptqq() =&gt; new vec4(p, t, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ppss</strong>() <a class="anchor-link" href="#get:ppss"
title="Permalink to vec4.get ppss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ppss() =&gt; new vec4(p, p, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ppst</strong>() <a class="anchor-link" href="#get:ppst"
title="Permalink to vec4.get ppst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ppst() =&gt; new vec4(p, p, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ppsp</strong>() <a class="anchor-link" href="#get:ppsp"
title="Permalink to vec4.get ppsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ppsp() =&gt; new vec4(p, p, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ppsq</strong>() <a class="anchor-link" href="#get:ppsq"
title="Permalink to vec4.get ppsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ppsq() =&gt; new vec4(p, p, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ppts</strong>() <a class="anchor-link" href="#get:ppts"
title="Permalink to vec4.get ppts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ppts() =&gt; new vec4(p, p, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pptt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pptt</strong>() <a class="anchor-link" href="#get:pptt"
title="Permalink to vec4.get pptt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pptt() =&gt; new vec4(p, p, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pptp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pptp</strong>() <a class="anchor-link" href="#get:pptp"
title="Permalink to vec4.get pptp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pptp() =&gt; new vec4(p, p, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pptq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pptq</strong>() <a class="anchor-link" href="#get:pptq"
title="Permalink to vec4.get pptq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pptq() =&gt; new vec4(p, p, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ppps</strong>() <a class="anchor-link" href="#get:ppps"
title="Permalink to vec4.get ppps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ppps() =&gt; new vec4(p, p, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pppt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pppt</strong>() <a class="anchor-link" href="#get:pppt"
title="Permalink to vec4.get pppt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pppt() =&gt; new vec4(p, p, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pppp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pppp</strong>() <a class="anchor-link" href="#get:pppp"
title="Permalink to vec4.get pppp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pppp() =&gt; new vec4(p, p, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pppq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pppq</strong>() <a class="anchor-link" href="#get:pppq"
title="Permalink to vec4.get pppq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pppq() =&gt; new vec4(p, p, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ppqs</strong>() <a class="anchor-link" href="#get:ppqs"
title="Permalink to vec4.get ppqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ppqs() =&gt; new vec4(p, p, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ppqt</strong>() <a class="anchor-link" href="#get:ppqt"
title="Permalink to vec4.get ppqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ppqt() =&gt; new vec4(p, p, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ppqp</strong>() <a class="anchor-link" href="#get:ppqp"
title="Permalink to vec4.get ppqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ppqp() =&gt; new vec4(p, p, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:ppqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get ppqq</strong>() <a class="anchor-link" href="#get:ppqq"
title="Permalink to vec4.get ppqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get ppqq() =&gt; new vec4(p, p, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqss</strong>() <a class="anchor-link" href="#get:pqss"
title="Permalink to vec4.get pqss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqss() =&gt; new vec4(p, q, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqsp</strong>() <a class="anchor-link" href="#get:pqsp"
title="Permalink to vec4.get pqsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqsp() =&gt; new vec4(p, q, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqsq</strong>() <a class="anchor-link" href="#get:pqsq"
title="Permalink to vec4.get pqsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqsq() =&gt; new vec4(p, q, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqtt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqtt</strong>() <a class="anchor-link" href="#get:pqtt"
title="Permalink to vec4.get pqtt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqtt() =&gt; new vec4(p, q, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqtp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqtp</strong>() <a class="anchor-link" href="#get:pqtp"
title="Permalink to vec4.get pqtp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqtp() =&gt; new vec4(p, q, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqtq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqtq</strong>() <a class="anchor-link" href="#get:pqtq"
title="Permalink to vec4.get pqtq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqtq() =&gt; new vec4(p, q, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqps</strong>() <a class="anchor-link" href="#get:pqps"
title="Permalink to vec4.get pqps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqps() =&gt; new vec4(p, q, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqpt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqpt</strong>() <a class="anchor-link" href="#get:pqpt"
title="Permalink to vec4.get pqpt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqpt() =&gt; new vec4(p, q, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqpp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqpp</strong>() <a class="anchor-link" href="#get:pqpp"
title="Permalink to vec4.get pqpp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqpp() =&gt; new vec4(p, q, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqpq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqpq</strong>() <a class="anchor-link" href="#get:pqpq"
title="Permalink to vec4.get pqpq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqpq() =&gt; new vec4(p, q, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqqs</strong>() <a class="anchor-link" href="#get:pqqs"
title="Permalink to vec4.get pqqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqqs() =&gt; new vec4(p, q, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqqt</strong>() <a class="anchor-link" href="#get:pqqt"
title="Permalink to vec4.get pqqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqqt() =&gt; new vec4(p, q, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqqp</strong>() <a class="anchor-link" href="#get:pqqp"
title="Permalink to vec4.get pqqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqqp() =&gt; new vec4(p, q, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:pqqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get pqqq</strong>() <a class="anchor-link" href="#get:pqqq"
title="Permalink to vec4.get pqqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get pqqq() =&gt; new vec4(p, q, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qsss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qsss</strong>() <a class="anchor-link" href="#get:qsss"
title="Permalink to vec4.get qsss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qsss() =&gt; new vec4(q, s, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qsst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qsst</strong>() <a class="anchor-link" href="#get:qsst"
title="Permalink to vec4.get qsst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qsst() =&gt; new vec4(q, s, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qssp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qssp</strong>() <a class="anchor-link" href="#get:qssp"
title="Permalink to vec4.get qssp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qssp() =&gt; new vec4(q, s, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qssq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qssq</strong>() <a class="anchor-link" href="#get:qssq"
title="Permalink to vec4.get qssq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qssq() =&gt; new vec4(q, s, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qsts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qsts</strong>() <a class="anchor-link" href="#get:qsts"
title="Permalink to vec4.get qsts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qsts() =&gt; new vec4(q, s, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qstt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qstt</strong>() <a class="anchor-link" href="#get:qstt"
title="Permalink to vec4.get qstt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qstt() =&gt; new vec4(q, s, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qstq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qstq</strong>() <a class="anchor-link" href="#get:qstq"
title="Permalink to vec4.get qstq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qstq() =&gt; new vec4(q, s, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qsps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qsps</strong>() <a class="anchor-link" href="#get:qsps"
title="Permalink to vec4.get qsps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qsps() =&gt; new vec4(q, s, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qspp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qspp</strong>() <a class="anchor-link" href="#get:qspp"
title="Permalink to vec4.get qspp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qspp() =&gt; new vec4(q, s, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qspq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qspq</strong>() <a class="anchor-link" href="#get:qspq"
title="Permalink to vec4.get qspq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qspq() =&gt; new vec4(q, s, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qsqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qsqs</strong>() <a class="anchor-link" href="#get:qsqs"
title="Permalink to vec4.get qsqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qsqs() =&gt; new vec4(q, s, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qsqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qsqt</strong>() <a class="anchor-link" href="#get:qsqt"
title="Permalink to vec4.get qsqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qsqt() =&gt; new vec4(q, s, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qsqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qsqp</strong>() <a class="anchor-link" href="#get:qsqp"
title="Permalink to vec4.get qsqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qsqp() =&gt; new vec4(q, s, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qsqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qsqq</strong>() <a class="anchor-link" href="#get:qsqq"
title="Permalink to vec4.get qsqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qsqq() =&gt; new vec4(q, s, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtss</strong>() <a class="anchor-link" href="#get:qtss"
title="Permalink to vec4.get qtss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtss() =&gt; new vec4(q, t, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtst</strong>() <a class="anchor-link" href="#get:qtst"
title="Permalink to vec4.get qtst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtst() =&gt; new vec4(q, t, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtsq</strong>() <a class="anchor-link" href="#get:qtsq"
title="Permalink to vec4.get qtsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtsq() =&gt; new vec4(q, t, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtts</strong>() <a class="anchor-link" href="#get:qtts"
title="Permalink to vec4.get qtts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtts() =&gt; new vec4(q, t, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qttt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qttt</strong>() <a class="anchor-link" href="#get:qttt"
title="Permalink to vec4.get qttt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qttt() =&gt; new vec4(q, t, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qttp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qttp</strong>() <a class="anchor-link" href="#get:qttp"
title="Permalink to vec4.get qttp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qttp() =&gt; new vec4(q, t, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qttq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qttq</strong>() <a class="anchor-link" href="#get:qttq"
title="Permalink to vec4.get qttq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qttq() =&gt; new vec4(q, t, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtpt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtpt</strong>() <a class="anchor-link" href="#get:qtpt"
title="Permalink to vec4.get qtpt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtpt() =&gt; new vec4(q, t, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtpp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtpp</strong>() <a class="anchor-link" href="#get:qtpp"
title="Permalink to vec4.get qtpp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtpp() =&gt; new vec4(q, t, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtpq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtpq</strong>() <a class="anchor-link" href="#get:qtpq"
title="Permalink to vec4.get qtpq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtpq() =&gt; new vec4(q, t, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtqs</strong>() <a class="anchor-link" href="#get:qtqs"
title="Permalink to vec4.get qtqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtqs() =&gt; new vec4(q, t, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtqt</strong>() <a class="anchor-link" href="#get:qtqt"
title="Permalink to vec4.get qtqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtqt() =&gt; new vec4(q, t, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtqp</strong>() <a class="anchor-link" href="#get:qtqp"
title="Permalink to vec4.get qtqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtqp() =&gt; new vec4(q, t, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qtqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qtqq</strong>() <a class="anchor-link" href="#get:qtqq"
title="Permalink to vec4.get qtqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qtqq() =&gt; new vec4(q, t, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qpss</strong>() <a class="anchor-link" href="#get:qpss"
title="Permalink to vec4.get qpss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qpss() =&gt; new vec4(q, p, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qpsp</strong>() <a class="anchor-link" href="#get:qpsp"
title="Permalink to vec4.get qpsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qpsp() =&gt; new vec4(q, p, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qpsq</strong>() <a class="anchor-link" href="#get:qpsq"
title="Permalink to vec4.get qpsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qpsq() =&gt; new vec4(q, p, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qptt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qptt</strong>() <a class="anchor-link" href="#get:qptt"
title="Permalink to vec4.get qptt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qptt() =&gt; new vec4(q, p, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qptp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qptp</strong>() <a class="anchor-link" href="#get:qptp"
title="Permalink to vec4.get qptp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qptp() =&gt; new vec4(q, p, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qptq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qptq</strong>() <a class="anchor-link" href="#get:qptq"
title="Permalink to vec4.get qptq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qptq() =&gt; new vec4(q, p, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qpps</strong>() <a class="anchor-link" href="#get:qpps"
title="Permalink to vec4.get qpps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qpps() =&gt; new vec4(q, p, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qppt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qppt</strong>() <a class="anchor-link" href="#get:qppt"
title="Permalink to vec4.get qppt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qppt() =&gt; new vec4(q, p, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qppp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qppp</strong>() <a class="anchor-link" href="#get:qppp"
title="Permalink to vec4.get qppp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qppp() =&gt; new vec4(q, p, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qppq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qppq</strong>() <a class="anchor-link" href="#get:qppq"
title="Permalink to vec4.get qppq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qppq() =&gt; new vec4(q, p, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qpqs</strong>() <a class="anchor-link" href="#get:qpqs"
title="Permalink to vec4.get qpqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qpqs() =&gt; new vec4(q, p, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qpqt</strong>() <a class="anchor-link" href="#get:qpqt"
title="Permalink to vec4.get qpqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qpqt() =&gt; new vec4(q, p, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qpqp</strong>() <a class="anchor-link" href="#get:qpqp"
title="Permalink to vec4.get qpqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qpqp() =&gt; new vec4(q, p, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qpqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qpqq</strong>() <a class="anchor-link" href="#get:qpqq"
title="Permalink to vec4.get qpqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qpqq() =&gt; new vec4(q, p, q, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqss">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqss</strong>() <a class="anchor-link" href="#get:qqss"
title="Permalink to vec4.get qqss">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqss() =&gt; new vec4(q, q, s, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqst">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqst</strong>() <a class="anchor-link" href="#get:qqst"
title="Permalink to vec4.get qqst">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqst() =&gt; new vec4(q, q, s, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqsp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqsp</strong>() <a class="anchor-link" href="#get:qqsp"
title="Permalink to vec4.get qqsp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqsp() =&gt; new vec4(q, q, s, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqsq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqsq</strong>() <a class="anchor-link" href="#get:qqsq"
title="Permalink to vec4.get qqsq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqsq() =&gt; new vec4(q, q, s, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqts">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqts</strong>() <a class="anchor-link" href="#get:qqts"
title="Permalink to vec4.get qqts">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqts() =&gt; new vec4(q, q, t, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqtt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqtt</strong>() <a class="anchor-link" href="#get:qqtt"
title="Permalink to vec4.get qqtt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqtt() =&gt; new vec4(q, q, t, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqtp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqtp</strong>() <a class="anchor-link" href="#get:qqtp"
title="Permalink to vec4.get qqtp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqtp() =&gt; new vec4(q, q, t, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqtq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqtq</strong>() <a class="anchor-link" href="#get:qqtq"
title="Permalink to vec4.get qqtq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqtq() =&gt; new vec4(q, q, t, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqps">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqps</strong>() <a class="anchor-link" href="#get:qqps"
title="Permalink to vec4.get qqps">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqps() =&gt; new vec4(q, q, p, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqpt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqpt</strong>() <a class="anchor-link" href="#get:qqpt"
title="Permalink to vec4.get qqpt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqpt() =&gt; new vec4(q, q, p, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqpp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqpp</strong>() <a class="anchor-link" href="#get:qqpp"
title="Permalink to vec4.get qqpp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqpp() =&gt; new vec4(q, q, p, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqpq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqpq</strong>() <a class="anchor-link" href="#get:qqpq"
title="Permalink to vec4.get qqpq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqpq() =&gt; new vec4(q, q, p, q);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqqs">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqqs</strong>() <a class="anchor-link" href="#get:qqqs"
title="Permalink to vec4.get qqqs">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqqs() =&gt; new vec4(q, q, q, s);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqqt">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqqt</strong>() <a class="anchor-link" href="#get:qqqt"
title="Permalink to vec4.get qqqt">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqqt() =&gt; new vec4(q, q, q, t);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqqp">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqqp</strong>() <a class="anchor-link" href="#get:qqqp"
title="Permalink to vec4.get qqqp">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqqp() =&gt; new vec4(q, q, q, p);
</pre>
</div>
</div>
<div class="method"><h4 id="get:qqqq">
<span class="show-code">Code</span>
<a href="../VectorMath/vec4.html">vec4</a> <strong>get qqqq</strong>() <a class="anchor-link" href="#get:qqqq"
title="Permalink to vec4.get qqqq">#</a></h4>
<div class="doc">
<pre class="source">
vec4 get qqqq() =&gt; new vec4(q, q, q, q);
</pre>
</div>
</div>
<h3>Fields</h3>
<div class="field"><h4 id="x">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>x</strong> <a class="anchor-link"
href="#x"
title="Permalink to vec4.x">#</a>
</h4>
<div class="doc">
<pre class="source">
num x;
</pre>
</div>
</div>
<div class="field"><h4 id="y">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>y</strong> <a class="anchor-link"
href="#y"
title="Permalink to vec4.y">#</a>
</h4>
<div class="doc">
<pre class="source">
num y;
</pre>
</div>
</div>
<div class="field"><h4 id="z">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>z</strong> <a class="anchor-link"
href="#z"
title="Permalink to vec4.z">#</a>
</h4>
<div class="doc">
<pre class="source">
num z;
</pre>
</div>
</div>
<div class="field"><h4 id="w">
<span class="show-code">Code</span>
<a href="../dart_core/num.html">num</a> <strong>w</strong> <a class="anchor-link"
href="#w"
title="Permalink to vec4.w">#</a>
</h4>
<div class="doc">
<pre class="source">
num w;
</pre>
</div>
</div>
</div>
<div class="clear"></div>
</div>
<div class="footer"></div>
</body></html>