You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Trac3r-rust/doc/nalgebra/geometry/struct.Point.html

619 lines
699 KiB

5 years ago
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `Point` struct in crate `nalgebra`."><meta name="keywords" content="rust, rustlang, rust-lang, Point"><title>nalgebra::geometry::Point - Rust</title><link rel="stylesheet" type="text/css" href="../../normalize.css"><link rel="stylesheet" type="text/css" href="../../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../../dark.css"><link rel="stylesheet" type="text/css" href="../../light.css" id="themeStyle"><script src="../../storage.js"></script><noscript><link rel="stylesheet" href="../../noscript.css"></noscript><link rel="shortcut icon" href="http://nalgebra.org/img/favicon.ico"><style type="text/css">#crate-search{background-image:url("../../down-arrow.svg");}</style></head><body class="rustdoc struct"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">&#9776;</div><a href='../../nalgebra/index.html'><div class='logo-container'><img src='../../rust-logo.png' alt='logo'></div></a><p class='location'>Struct Point</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#fields">Fields</a><div class="sidebar-links"><a href="#structfield.coords">coords</a></div><a class="sidebar-title" href="#methods">Methods</a><div class="sidebar-links"><a href="#method.from_coordinates">from_coordinates</a><a href="#method.from_homogeneous">from_homogeneous</a><a href="#method.from_slice">from_slice</a><a href="#method.get_unchecked">get_unchecked</a><a href="#method.get_unchecked_mut">get_unchecked_mut</a><a href="#method.iter">iter</a><a href="#method.iter_mut">iter_mut</a><a href="#method.len">len</a><a href="#method.new">new</a><a href="#method.new-1">new</a><a href="#method.new-2">new</a><a href="#method.new-3">new</a><a href="#method.new-4">new</a><a href="#method.new-5">new</a><a href="#method.new_uninitialized">new_uninitialized</a><a href="#method.origin">origin</a><a href="#method.stride">stride</a><a href="#method.swap_unchecked">swap_unchecked</a><a href="#method.to_homogeneous">to_homogeneous</a><a href="#method.xx">xx</a><a href="#method.xxx">xxx</a><a href="#method.xxy">xxy</a><a href="#method.xxz">xxz</a><a href="#method.xy">xy</a><a href="#method.xyx">xyx</a><a href="#method.xyy">xyy</a><a href="#method.xyz">xyz</a><a href="#method.xz">xz</a><a href="#method.xzx">xzx</a><a href="#method.xzy">xzy</a><a href="#method.xzz">xzz</a><a href="#method.yx">yx</a><a href="#method.yxx">yxx</a><a href="#method.yxy">yxy</a><a href="#method.yxz">yxz</a><a href="#method.yy">yy</a><a href="#method.yyx">yyx</a><a href="#method.yyy">yyy</a><a href="#method.yyz">yyz</a><a href="#method.yz">yz</a><a href="#method.yzx">yzx</a><a href="#method.yzy">yzy</a><a href="#method.yzz">yzz</a><a href="#method.zx">zx</a><a href="#method.zxx">zxx</a><a href="#method.zxy">zxy</a><a href="#method.zxz">zxz</a><a href="#method.zy">zy</a><a href="#method.zyx">zyx</a><a href="#method.zyy">zyy</a><a href="#method.zyz">zyz</a><a href="#method.zz">zz</a><a href="#method.zzx">zzx</a><a href="#method.zzy">zzy</a><a href="#method.zzz">zzz</a></div><a class="sidebar-title" href="#deref-methods">Methods from Deref&lt;Target=X&lt;N&gt;&gt;</a><a class="sidebar-title" href="#implementations">Trait Implementations</a><div class="sidebar-links"><a href="#impl-AbsDiffEq%3CPoint%3CN%2C%20D%3E%3E">AbsDiffEq&lt;Point&lt;N, D&gt;&gt;</a><a href="#impl-Add%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E">Add&lt;&amp;&#39;b Matrix&lt;N, D2, U1, SB&gt;&gt;</a><a href="#impl-Add%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E">Add&lt;Matrix&lt;N, D2, U1, SB&gt;&gt;</a><a href="#impl-AddAssign%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E">AddAssign&lt;&amp;&#39;b Matrix&lt;N, D2, U1, SB&gt;&gt;</a><a href="#impl-AddAssign%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB
</span>pub struct Point&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span> {
pub coords: <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;,
}</pre></div><div class='docblock'><p>A point in a n-dimensional euclidean space.</p>
</div><h2 id='fields' class='fields small-section-header'>
Fields<a href='#fields' class='anchor'></a></h2><span id="structfield.coords" class="structfield small-section-header"><a href="#structfield.coords" class="anchor field"></a><code id="coords.v">coords: <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code></span><div class='docblock'><p>The coordinates of this point, i.e., the shift from the origin.</p>
</div><h2 id='methods' class='small-section-header'>Methods<a href='#methods' class='anchor'></a></h2><h3 id='impl' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#94-211' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.to_homogeneous' class="method"><code id='to_homogeneous.v'>pub fn <a href='#method.to_homogeneous' class='fnname'>to_homogeneous</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;,&nbsp;</span></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#113-124' title='goto source code'>[src]</a></h4><div class='docblock'><p>Converts this point into a vector in homogeneous coordinates, i.e., appends a <code>1</code> at the
end of it.</p>
<p>This is the same as <code>.into()</code>.</p>
<h1 id="example" class="section-header"><a href="#example">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point2</span>::<span class="ident">new</span>(<span class="number">10.0</span>, <span class="number">20.0</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">p</span>.<span class="ident">to_homogeneous</span>(), <span class="ident">Vector3</span>::<span class="ident">new</span>(<span class="number">10.0</span>, <span class="number">20.0</span>, <span class="number">1.0</span>));
<span class="comment">// This works in any dimension.</span>
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point3</span>::<span class="ident">new</span>(<span class="number">10.0</span>, <span class="number">20.0</span>, <span class="number">30.0</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">p</span>.<span class="ident">to_homogeneous</span>(), <span class="ident">Vector4</span>::<span class="ident">new</span>(<span class="number">10.0</span>, <span class="number">20.0</span>, <span class="number">30.0</span>, <span class="number">1.0</span>));</pre></div>
</div><h4 id='method.from_coordinates' class="method"><code id='from_coordinates.v'>pub fn <a href='#method.from_coordinates' class='fnname'>from_coordinates</a>(coords: <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#129-131' title='goto source code'>[src]</a></h4><div class='stability'><div class='stab deprecated'>Deprecated: <p>Use Point::from(vector) instead.</p>
</div></div><div class='docblock'><p>Creates a new point with the given coordinates.</p>
</div><h4 id='method.len' class="method"><code id='len.v'>pub fn <a href='#method.len' class='fnname'>len</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#146-148' title='goto source code'>[src]</a></h4><div class='docblock'><p>The dimension of this point.</p>
<h1 id="example-1" class="section-header"><a href="#example-1">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point2</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">p</span>.<span class="ident">len</span>(), <span class="number">2</span>);
<span class="comment">// This works in any dimension.</span>
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point3</span>::<span class="ident">new</span>(<span class="number">10.0</span>, <span class="number">20.0</span>, <span class="number">30.0</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">p</span>.<span class="ident">len</span>(), <span class="number">3</span>);</pre></div>
</div><h4 id='method.stride' class="method"><code id='stride.v'>pub fn <a href='#method.stride' class='fnname'>stride</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#154-156' title='goto source code'>[src]</a></h4><div class='stability'><div class='stab deprecated'>Deprecated: <p>This methods is no longer significant and will always return 1.</p>
</div></div><div class='docblock'><p>The stride of this point. This is the number of buffer element separating each component of
this point.</p>
</div><h4 id='method.iter' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../../nalgebra/base/iter/struct.MatrixIter.html" title="struct nalgebra::base::iter::MatrixIter">MatrixIter</a>&lt;'a, N, R, C, S&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../../nalgebra/base/iter/struct.MatrixIter.html" title="struct nalgebra::base::iter::MatrixIter">MatrixIter</a>&lt;'a, N, R, C, S&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;'a, N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, R:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, C:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, S:&nbsp;'a + <a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, R, C&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/iterator/trait.Iterator.html" title="trait core::iter::traits::iterator::Iterator">Iterator</a> for <a class="struct" href="../../nalgebra/base/iter/struct.MatrixIter.html" title="struct nalgebra::base::iter::MatrixIter">MatrixIter</a>&lt;'a, N, R, C, S&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/traits/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>N;</span></code></div></div><code id='iter.v'>pub fn <a href='#method.iter' class='fnname'>iter</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self<br>) -&gt; <a class="struct" href="../../nalgebra/base/iter/struct.MatrixIter.html" title="struct nalgebra::base::iter::MatrixIter">MatrixIter</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, &lt;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a> as <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;&gt;::<a class="type" href="../../nalgebra/base/allocator/trait.Allocator.html#associatedtype.Buffer" title="type nalgebra::base::allocator::Allocator::Buffer">Buffer</a>&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#171-173' title='goto source code'>[src]</a></h4><div class='docblock'><p>Iterates through this point coordinates.</p>
<h1 id="example-2" class="section-header"><a href="#example-2">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point3</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>);
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">it</span> <span class="op">=</span> <span class="ident">p</span>.<span class="ident">iter</span>().<span class="ident">cloned</span>();
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">it</span>.<span class="ident">next</span>(), <span class="prelude-val">Some</span>(<span class="number">1.0</span>));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">it</span>.<span class="ident">next</span>(), <span class="prelude-val">Some</span>(<span class="number">2.0</span>));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">it</span>.<span class="ident">next</span>(), <span class="prelude-val">Some</span>(<span class="number">3.0</span>));
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">it</span>.<span class="ident">next</span>(), <span class="prelude-val">None</span>);</pre></div>
</div><h4 id='method.get_unchecked' class="method"><code id='get_unchecked.v'>pub unsafe fn <a href='#method.get_unchecked' class='fnname'>get_unchecked</a>(&amp;self, i: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>N</code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#177-179' title='goto source code'>[src]</a></h4><div class='docblock'><p>Gets a reference to i-th element of this point without bound-checking.</p>
</div><h4 id='method.iter_mut' class="method"><div class="important-traits"><div class='tooltip'><span class='tooltiptext'>Important traits for <a class="struct" href="../../nalgebra/base/iter/struct.MatrixIterMut.html" title="struct nalgebra::base::iter::MatrixIterMut">MatrixIterMut</a>&lt;'a, N, R, C, S&gt;</span></div><div class="content hidden"><h3 class="important">Important traits for <a class="struct" href="../../nalgebra/base/iter/struct.MatrixIterMut.html" title="struct nalgebra::base::iter::MatrixIterMut">MatrixIterMut</a>&lt;'a, N, R, C, S&gt;</h3><code class="content"><span class="where fmt-newline">impl&lt;'a, N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, R:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, C:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, S:&nbsp;'a + <a class="trait" href="../../nalgebra/base/storage/trait.StorageMut.html" title="trait nalgebra::base::storage::StorageMut">StorageMut</a>&lt;N, R, C&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/iter/traits/iterator/trait.Iterator.html" title="trait core::iter::traits::iterator::Iterator">Iterator</a> for <a class="struct" href="../../nalgebra/base/iter/struct.MatrixIterMut.html" title="struct nalgebra::base::iter::MatrixIterMut">MatrixIterMut</a>&lt;'a, N, R, C, S&gt;</span><span class="where fmt-newline"> type <a href='https://doc.rust-lang.org/nightly/core/iter/traits/iterator/trait.Iterator.html#associatedtype.Item' class="type">Item</a> = <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a mut </a>N;</span></code></div></div><code id='iter_mut.v'>pub fn <a href='#method.iter_mut' class='fnname'>iter_mut</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;mut self<br>) -&gt; <a class="struct" href="../../nalgebra/base/iter/struct.MatrixIterMut.html" title="struct nalgebra::base::iter::MatrixIterMut">MatrixIterMut</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, &lt;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a> as <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;&gt;::<a class="type" href="../../nalgebra/base/allocator/trait.Allocator.html#associatedtype.Buffer" title="type nalgebra::base::allocator::Allocator::Buffer">Buffer</a>&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#194-198' title='goto source code'>[src]</a></h4><div class='docblock'><p>Mutably iterates through this point coordinates.</p>
<h1 id="example-3" class="section-header"><a href="#example-3">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="kw-2">mut</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point3</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>);
<span class="kw">for</span> <span class="ident">e</span> <span class="kw">in</span> <span class="ident">p</span>.<span class="ident">iter_mut</span>() {
<span class="kw-2">*</span><span class="ident">e</span> <span class="kw-2">*</span><span class="op">=</span> <span class="number">10.0</span>;
}
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">p</span>, <span class="ident">Point3</span>::<span class="ident">new</span>(<span class="number">10.0</span>, <span class="number">20.0</span>, <span class="number">30.0</span>));</pre></div>
</div><h4 id='method.get_unchecked_mut' class="method"><code id='get_unchecked_mut.v'>pub unsafe fn <a href='#method.get_unchecked_mut' class='fnname'>get_unchecked_mut</a>(&amp;mut self, i: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>N</code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#202-204' title='goto source code'>[src]</a></h4><div class='docblock'><p>Gets a mutable reference to i-th element of this point without bound-checking.</p>
</div><h4 id='method.swap_unchecked' class="method"><code id='swap_unchecked.v'>pub unsafe fn <a href='#method.swap_unchecked' class='fnname'>swap_unchecked</a>(&amp;mut self, i1: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, i2: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>)</code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#208-210' title='goto source code'>[src]</a></h4><div class='docblock'><p>Swaps two entries without bound-checking.</p>
</div></div><h3 id='impl-1' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#15-108' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.new_uninitialized' class="method"><code id='new_uninitialized.v'>pub unsafe fn <a href='#method.new_uninitialized' class='fnname'>new_uninitialized</a>() -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#20-22' title='goto source code'>[src]</a></h4><div class='docblock'><p>Creates a new point with uninitialized coordinates.</p>
</div><h4 id='method.origin' class="method"><code id='origin.v'>pub fn <a href='#method.origin' class='fnname'>origin</a>() -&gt; Self <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a>,&nbsp;</span></code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#40-43' title='goto source code'>[src]</a></h4><div class='docblock'><p>Creates a new point with all coordinates equal to zero.</p>
<h1 id="example-4" class="section-header"><a href="#example-4">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="comment">// This works in any dimension.</span>
<span class="comment">// The explicit crate::&lt;f32&gt; type annotation may not always be needed,</span>
<span class="comment">// depending on the context of type inference.</span>
<span class="kw">let</span> <span class="ident">pt</span> <span class="op">=</span> <span class="ident">Point2</span>::<span class="op">&lt;</span><span class="ident">f32</span><span class="op">&gt;</span>::<span class="ident">origin</span>();
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">pt</span>.<span class="ident">x</span> <span class="op">=</span><span class="op">=</span> <span class="number">0.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">pt</span>.<span class="ident">y</span> <span class="op">=</span><span class="op">=</span> <span class="number">0.0</span>);
<span class="kw">let</span> <span class="ident">pt</span> <span class="op">=</span> <span class="ident">Point3</span>::<span class="op">&lt;</span><span class="ident">f32</span><span class="op">&gt;</span>::<span class="ident">origin</span>();
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">pt</span>.<span class="ident">x</span> <span class="op">=</span><span class="op">=</span> <span class="number">0.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">pt</span>.<span class="ident">y</span> <span class="op">=</span><span class="op">=</span> <span class="number">0.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">pt</span>.<span class="ident">z</span> <span class="op">=</span><span class="op">=</span> <span class="number">0.0</span>);</pre></div>
</div><h4 id='method.from_slice' class="method"><code id='from_slice.v'>pub fn <a href='#method.from_slice' class='fnname'>from_slice</a>(components: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[N]</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#60-62' title='goto source code'>[src]</a></h4><div class='docblock'><p>Creates a new point from a slice.</p>
<h1 id="example-5" class="section-header"><a href="#example-5">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">data</span> <span class="op">=</span> [ <span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span> ];
<span class="kw">let</span> <span class="ident">pt</span> <span class="op">=</span> <span class="ident">Point2</span>::<span class="ident">from_slice</span>(<span class="kw-2">&amp;</span><span class="ident">data</span>[..<span class="number">2</span>]);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">pt</span>, <span class="ident">Point2</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>));
<span class="kw">let</span> <span class="ident">pt</span> <span class="op">=</span> <span class="ident">Point3</span>::<span class="ident">from_slice</span>(<span class="kw-2">&amp;</span><span class="ident">data</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">pt</span>, <span class="ident">Point3</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>));</pre></div>
</div><h4 id='method.from_homogeneous' class="method"><code id='from_homogeneous.v'>pub fn <a href='#method.from_homogeneous' class='fnname'>from_homogeneous</a>(v: <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedDiv.html" title="trait alga::general::operator::ClosedDiv">ClosedDiv</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;,&nbsp;</span></code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#95-107' title='goto source code'>[src]</a></h4><div class='docblock'><p>Creates a new point from its homogeneous vector representation.</p>
<p>In practice, this builds a D-dimensional points with the same first D component as <code>v</code>
divided by the last component of <code>v</code>. Returns <code>None</code> if this divisor is zero.</p>
<h1 id="example-6" class="section-header"><a href="#example-6">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">coords</span> <span class="op">=</span> <span class="ident">Vector4</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>, <span class="number">1.0</span>);
<span class="kw">let</span> <span class="ident">pt</span> <span class="op">=</span> <span class="ident">Point3</span>::<span class="ident">from_homogeneous</span>(<span class="ident">coords</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">pt</span>, <span class="prelude-val">Some</span>(<span class="ident">Point3</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>)));
<span class="comment">// All component of the result will be divided by the</span>
<span class="comment">// last component of the vector, here 2.0.</span>
<span class="kw">let</span> <span class="ident">coords</span> <span class="op">=</span> <span class="ident">Vector4</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>, <span class="number">2.0</span>);
<span class="kw">let</span> <span class="ident">pt</span> <span class="op">=</span> <span class="ident">Point3</span>::<span class="ident">from_homogeneous</span>(<span class="ident">coords</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">pt</span>, <span class="prelude-val">Some</span>(<span class="ident">Point3</span>::<span class="ident">new</span>(<span class="number">0.5</span>, <span class="number">1.0</span>, <span class="number">1.5</span>)));
<span class="comment">// Fails because the last component is zero.</span>
<span class="kw">let</span> <span class="ident">coords</span> <span class="op">=</span> <span class="ident">Vector4</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>, <span class="number">0.0</span>);
<span class="kw">let</span> <span class="ident">pt</span> <span class="op">=</span> <span class="ident">Point3</span>::<span class="ident">from_homogeneous</span>(<span class="ident">coords</span>);
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">pt</span>.<span class="ident">is_none</span>());
<span class="comment">// Works also in other dimensions.</span>
<span class="kw">let</span> <span class="ident">coords</span> <span class="op">=</span> <span class="ident">Vector3</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">1.0</span>);
<span class="kw">let</span> <span class="ident">pt</span> <span class="op">=</span> <span class="ident">Point2</span>::<span class="ident">from_homogeneous</span>(<span class="ident">coords</span>);
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">pt</span>, <span class="prelude-val">Some</span>(<span class="ident">Point2</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>)));</pre></div>
</div></div><h3 id='impl-2' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-2' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#159-174' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.new' class="method"><code id='new.v'>pub fn <a href='#method.new' class='fnname'>new</a>(x: N) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#166-173' title='goto source code'>[src]</a></h4><div class='docblock'><p>Initializes this point from its components.</p>
<h1 id="example-7" class="section-header"><a href="#example-7">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point1</span>::<span class="ident">new</span>(<span class="number">1.0</span>);
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">p</span>.<span class="ident">x</span> <span class="op">=</span><span class="op">=</span> <span class="number">1.0</span>);</pre></div>
</div></div><h3 id='impl-3' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;,&nbsp;</span></code><a href='#impl-3' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#159-174' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.new-1' class="method"><code id='new.v-1'>pub fn <a href='#method.new-1' class='fnname'>new</a>(x: N, y: N) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#166-173' title='goto source code'>[src]</a></h4><div class='docblock'><p>Initializes this point from its components.</p>
<h1 id="example-8" class="section-header"><a href="#example-8">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point2</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>);
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">p</span>.<span class="ident">x</span> <span class="op">=</span><span class="op">=</span> <span class="number">1.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">y</span> <span class="op">=</span><span class="op">=</span> <span class="number">2.0</span>);</pre></div>
</div></div><h3 id='impl-4' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;,&nbsp;</span></code><a href='#impl-4' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#159-174' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.new-2' class="method"><code id='new.v-2'>pub fn <a href='#method.new-2' class='fnname'>new</a>(x: N, y: N, z: N) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#166-173' title='goto source code'>[src]</a></h4><div class='docblock'><p>Initializes this point from its components.</p>
<h1 id="example-9" class="section-header"><a href="#example-9">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point3</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>);
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">p</span>.<span class="ident">x</span> <span class="op">=</span><span class="op">=</span> <span class="number">1.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">y</span> <span class="op">=</span><span class="op">=</span> <span class="number">2.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">z</span> <span class="op">=</span><span class="op">=</span> <span class="number">3.0</span>);</pre></div>
</div></div><h3 id='impl-5' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>&gt;,&nbsp;</span></code><a href='#impl-5' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#159-174' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.new-3' class="method"><code id='new.v-3'>pub fn <a href='#method.new-3' class='fnname'>new</a>(x: N, y: N, z: N, w: N) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#166-173' title='goto source code'>[src]</a></h4><div class='docblock'><p>Initializes this point from its components.</p>
<h1 id="example-10" class="section-header"><a href="#example-10">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point4</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>, <span class="number">4.0</span>);
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">p</span>.<span class="ident">x</span> <span class="op">=</span><span class="op">=</span> <span class="number">1.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">y</span> <span class="op">=</span><span class="op">=</span> <span class="number">2.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">z</span> <span class="op">=</span><span class="op">=</span> <span class="number">3.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">w</span> <span class="op">=</span><span class="op">=</span> <span class="number">4.0</span>);</pre></div>
</div></div><h3 id='impl-6' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U5.html" title="struct nalgebra::base::dimension::U5">U5</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U5.html" title="struct nalgebra::base::dimension::U5">U5</a>&gt;,&nbsp;</span></code><a href='#impl-6' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#159-174' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.new-4' class="method"><code id='new.v-4'>pub fn <a href='#method.new-4' class='fnname'>new</a>(x: N, y: N, z: N, w: N, a: N) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#166-173' title='goto source code'>[src]</a></h4><div class='docblock'><p>Initializes this point from its components.</p>
<h1 id="example-11" class="section-header"><a href="#example-11">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point5</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>, <span class="number">4.0</span>, <span class="number">5.0</span>);
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">p</span>.<span class="ident">x</span> <span class="op">=</span><span class="op">=</span> <span class="number">1.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">y</span> <span class="op">=</span><span class="op">=</span> <span class="number">2.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">z</span> <span class="op">=</span><span class="op">=</span> <span class="number">3.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">w</span> <span class="op">=</span><span class="op">=</span> <span class="number">4.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">a</span> <span class="op">=</span><span class="op">=</span> <span class="number">5.0</span>);</pre></div>
</div></div><h3 id='impl-7' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U6.html" title="struct nalgebra::base::dimension::U6">U6</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U6.html" title="struct nalgebra::base::dimension::U6">U6</a>&gt;,&nbsp;</span></code><a href='#impl-7' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#159-174' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.new-5' class="method"><code id='new.v-5'>pub fn <a href='#method.new-5' class='fnname'>new</a>(x: N, y: N, z: N, w: N, a: N, b: N) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#166-173' title='goto source code'>[src]</a></h4><div class='docblock'><p>Initializes this point from its components.</p>
<h1 id="example-12" class="section-header"><a href="#example-12">Example</a></h1>
<div class="example-wrap"><pre class="rust rust-example-rendered">
<span class="kw">let</span> <span class="ident">p</span> <span class="op">=</span> <span class="ident">Point6</span>::<span class="ident">new</span>(<span class="number">1.0</span>, <span class="number">2.0</span>, <span class="number">3.0</span>, <span class="number">4.0</span>, <span class="number">5.0</span>, <span class="number">6.0</span>);
<span class="macro">assert</span><span class="macro">!</span>(<span class="ident">p</span>.<span class="ident">x</span> <span class="op">=</span><span class="op">=</span> <span class="number">1.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">y</span> <span class="op">=</span><span class="op">=</span> <span class="number">2.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">z</span> <span class="op">=</span><span class="op">=</span> <span class="number">3.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">w</span> <span class="op">=</span><span class="op">=</span> <span class="number">4.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">a</span> <span class="op">=</span><span class="op">=</span> <span class="number">5.0</span> <span class="kw-2">&amp;</span><span class="op">&amp;</span> <span class="ident">p</span>.<span class="ident">b</span> <span class="op">=</span><span class="op">=</span> <span class="number">6.0</span>);</pre></div>
</div></div><h3 id='impl-8' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D::<a class="type" href="../../nalgebra/base/dimension/trait.DimName.html#associatedtype.Value" title="type nalgebra::base::dimension::DimName::Value">Value</a>: <a class="trait" href="../../typenum/type_operators/trait.Cmp.html" title="trait typenum::type_operators::Cmp">Cmp</a>&lt;<a class="type" href="../../typenum/consts/type.U0.html" title="type typenum::consts::U0">U0</a>, Output = <a class="struct" href="../../typenum/struct.Greater.html" title="struct typenum::Greater">Greater</a>&gt;,&nbsp;</span></code><a href='#impl-8' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#9-21' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.xx' class="method"><code id='xx.v'>pub fn <a href='#method.xx' class='fnname'>xx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.xxx' class="method"><code id='xxx.v'>pub fn <a href='#method.xxx' class='fnname'>xxx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div></div><h3 id='impl-9' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D::<a class="type" href="../../nalgebra/base/dimension/trait.DimName.html#associatedtype.Value" title="type nalgebra::base::dimension::DimName::Value">Value</a>: <a class="trait" href="../../typenum/type_operators/trait.Cmp.html" title="trait typenum::type_operators::Cmp">Cmp</a>&lt;<a class="type" href="../../typenum/consts/type.U1.html" title="type typenum::consts::U1">U1</a>, Output = <a class="struct" href="../../typenum/struct.Greater.html" title="struct typenum::Greater">Greater</a>&gt;,&nbsp;</span></code><a href='#impl-9' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#9-21' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.xy' class="method"><code id='xy.v'>pub fn <a href='#method.xy' class='fnname'>xy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yx' class="method"><code id='yx.v'>pub fn <a href='#method.yx' class='fnname'>yx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yy' class="method"><code id='yy.v'>pub fn <a href='#method.yy' class='fnname'>yy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.xxy' class="method"><code id='xxy.v'>pub fn <a href='#method.xxy' class='fnname'>xxy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.xyx' class="method"><code id='xyx.v'>pub fn <a href='#method.xyx' class='fnname'>xyx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.xyy' class="method"><code id='xyy.v'>pub fn <a href='#method.xyy' class='fnname'>xyy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yxx' class="method"><code id='yxx.v'>pub fn <a href='#method.yxx' class='fnname'>yxx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yxy' class="method"><code id='yxy.v'>pub fn <a href='#method.yxy' class='fnname'>yxy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yyx' class="method"><code id='yyx.v'>pub fn <a href='#method.yyx' class='fnname'>yyx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yyy' class="method"><code id='yyy.v'>pub fn <a href='#method.yyy' class='fnname'>yyy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div></div><h3 id='impl-10' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;D::<a class="type" href="../../nalgebra/base/dimension/trait.DimName.html#associatedtype.Value" title="type nalgebra::base::dimension::DimName::Value">Value</a>: <a class="trait" href="../../typenum/type_operators/trait.Cmp.html" title="trait typenum::type_operators::Cmp">Cmp</a>&lt;<a class="type" href="../../typenum/consts/type.U2.html" title="type typenum::consts::U2">U2</a>, Output = <a class="struct" href="../../typenum/struct.Greater.html" title="struct typenum::Greater">Greater</a>&gt;,&nbsp;</span></code><a href='#impl-10' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#9-21' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.xz' class="method"><code id='xz.v'>pub fn <a href='#method.xz' class='fnname'>xz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yz' class="method"><code id='yz.v'>pub fn <a href='#method.yz' class='fnname'>yz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zx' class="method"><code id='zx.v'>pub fn <a href='#method.zx' class='fnname'>zx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zy' class="method"><code id='zy.v'>pub fn <a href='#method.zy' class='fnname'>zy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zz' class="method"><code id='zz.v'>pub fn <a href='#method.zz' class='fnname'>zz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.xxz' class="method"><code id='xxz.v'>pub fn <a href='#method.xxz' class='fnname'>xxz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.xyz' class="method"><code id='xyz.v'>pub fn <a href='#method.xyz' class='fnname'>xyz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.xzx' class="method"><code id='xzx.v'>pub fn <a href='#method.xzx' class='fnname'>xzx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.xzy' class="method"><code id='xzy.v'>pub fn <a href='#method.xzy' class='fnname'>xzy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.xzz' class="method"><code id='xzz.v'>pub fn <a href='#method.xzz' class='fnname'>xzz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yxz' class="method"><code id='yxz.v'>pub fn <a href='#method.yxz' class='fnname'>yxz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yyz' class="method"><code id='yyz.v'>pub fn <a href='#method.yyz' class='fnname'>yyz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yzx' class="method"><code id='yzx.v'>pub fn <a href='#method.yzx' class='fnname'>yzx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yzy' class="method"><code id='yzy.v'>pub fn <a href='#method.yzy' class='fnname'>yzy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.yzz' class="method"><code id='yzz.v'>pub fn <a href='#method.yzz' class='fnname'>yzz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zxx' class="method"><code id='zxx.v'>pub fn <a href='#method.zxx' class='fnname'>zxx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zxy' class="method"><code id='zxy.v'>pub fn <a href='#method.zxy' class='fnname'>zxy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zxz' class="method"><code id='zxz.v'>pub fn <a href='#method.zxz' class='fnname'>zxz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zyx' class="method"><code id='zyx.v'>pub fn <a href='#method.zyx' class='fnname'>zyx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zyy' class="method"><code id='zyy.v'>pub fn <a href='#method.zyy' class='fnname'>zyy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zyz' class="method"><code id='zyz.v'>pub fn <a href='#method.zyz' class='fnname'>zyz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zzx' class="method"><code id='zzx.v'>pub fn <a href='#method.zzx' class='fnname'>zzx</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zzy' class="method"><code id='zzy.v'>pub fn <a href='#method.zzy' class='fnname'>zzy</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div><h4 id='method.zzz' class="method"><code id='zzz.v'>pub fn <a href='#method.zzz' class='fnname'>zzz</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/swizzle.rs.html#17-19' title='goto source code'>[src]</a></h4><div class='docblock'><p>Builds a new point from components of <code>self</code>.</p>
</div></div><h2 id='implementations' class='small-section-header'>Trait Implementations<a href='#implementations' class='anchor'></a></h2><div id='implementations-list'><h3 id='impl-Eq' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.Eq.html" title="trait core::cmp::Eq">Eq</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Eq' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#270' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-Clone' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> + <a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Clone' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#22' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.clone' class="method hidden"><code id='clone.v'>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone' class='fnname'>clone</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#22' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns a copy of the value. <a href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#tymethod.clone">Read more</a></p>
</div><h4 id='method.clone_from' class="method hidden"><code id='clone_from.v'>fn <a href='https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from' class='fnname'>clone_from</a>(&amp;mut self, source: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self)</code><span class='since' title='Stable since Rust version 1.0.0'>1.0.0</span><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/clone.rs.html#131-133' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs copy-assignment from <code>source</code>. <a href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html#method.clone_from">Read more</a></p>
</div></div><h3 id='impl-PartialOrd%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html" title="trait core::cmp::PartialOrd">PartialOrd</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-PartialOrd%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#281-308' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.partial_cmp' class="method hidden"><code id='partial_cmp.v'>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp' class='fnname'>partial_cmp</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="enum" href="https://doc.rust-lang.org/nightly/core/cmp/enum.Ordering.html" title="enum core::cmp::Ordering">Ordering</a>&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#285-287' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>This method returns an ordering between <code>self</code> and <code>other</code> values if one exists. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#tymethod.partial_cmp">Read more</a></p>
</div><h4 id='method.lt' class="method hidden"><code id='lt.v'>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.lt' class='fnname'>lt</a>(&amp;self, right: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#290-292' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>This method tests less than (for <code>self</code> and <code>other</code>) and is used by the <code>&lt;</code> operator. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.lt">Read more</a></p>
</div><h4 id='method.le' class="method hidden"><code id='le.v'>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.le' class='fnname'>le</a>(&amp;self, right: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#295-297' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>This method tests less than or equal to (for <code>self</code> and <code>other</code>) and is used by the <code>&lt;=</code> operator. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.le">Read more</a></p>
</div><h4 id='method.gt' class="method hidden"><code id='gt.v'>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.gt' class='fnname'>gt</a>(&amp;self, right: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#300-302' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>This method tests greater than (for <code>self</code> and <code>other</code>) and is used by the <code>&gt;</code> operator. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.gt">Read more</a></p>
</div><h4 id='method.ge' class="method hidden"><code id='ge.v'>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.ge' class='fnname'>ge</a>(&amp;self, right: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#305-307' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>This method tests greater than or equal to (for <code>self</code> and <code>other</code>) and is used by the <code>&gt;=</code> operator. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialOrd.html#method.ge">Read more</a></p>
</div></div><h3 id='impl-PartialEq%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html" title="trait core::cmp::PartialEq">PartialEq</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-PartialEq%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#272-279' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.eq' class="method hidden"><code id='eq.v'>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq' class='fnname'>eq</a>(&amp;self, right: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#276-278' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>This method tests for <code>self</code> and <code>other</code> values to be equal, and is used by <code>==</code>. <a href="https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#tymethod.eq">Read more</a></p>
</div><h4 id='method.ne' class="method hidden"><code id='ne.v'><span class="docblock attributes">#[must_use]
</span>fn <a href='https://doc.rust-lang.org/nightly/core/cmp/trait.PartialEq.html#method.ne' class='fnname'>ne</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Rhs) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><span class='since' title='Stable since Rust version 1.0.0'>1.0.0</span><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/cmp.rs.html#208' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>This method tests for <code>!=</code>.</p>
</div></div><h3 id='impl-From%3C%5BN%3B%201%5D%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 1]</a>&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;</code><a href='#impl-From%3C%5BN%3B%201%5D%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#195-201' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from' class="method hidden"><code id='from.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(coords: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 1]</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#196-200' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3C%5BN%3B%202%5D%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 2]</a>&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;</code><a href='#impl-From%3C%5BN%3B%202%5D%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#195-201' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-1' class="method hidden"><code id='from.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(coords: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 2]</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#196-200' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3C%5BN%3B%203%5D%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 3]</a>&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;</code><a href='#impl-From%3C%5BN%3B%203%5D%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#195-201' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-2' class="method hidden"><code id='from.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(coords: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 3]</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#196-200' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3C%5BN%3B%204%5D%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 4]</a>&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>&gt;</code><a href='#impl-From%3C%5BN%3B%204%5D%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#195-201' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-3' class="method hidden"><code id='from.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(coords: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 4]</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#196-200' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3C%5BN%3B%205%5D%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 5]</a>&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U5.html" title="struct nalgebra::base::dimension::U5">U5</a>&gt;</code><a href='#impl-From%3C%5BN%3B%205%5D%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#195-201' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-4' class="method hidden"><code id='from.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(coords: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 5]</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#196-200' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3C%5BN%3B%206%5D%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 6]</a>&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U6.html" title="struct nalgebra::base::dimension::U6">U6</a>&gt;</code><a href='#impl-From%3C%5BN%3B%206%5D%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#195-201' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-5' class="method hidden"><code id='from.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(coords: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">[</a>N<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.array.html">; 6]</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#196-200' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;,&nbsp;</span></code><a href='#impl-From%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_conversion.rs.html#133-142' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-6' class="method hidden"><code id='from.v-6'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(t: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_conversion.rs.html#139-141' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3CMatrix%3CN%2C%20D%2C%20U1%2C%20%3CDefaultAllocator%20as%20Allocator%3CN%2C%20D%2C%20U1%3E%3E%3A%3ABuffer%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;<a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, &lt;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a> as <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;::<a class="type" href="../../nalgebra/base/allocator/trait.Allocator.html#associatedtype.Buffer" title="type nalgebra::base::allocator::Allocator::Buffer">Buffer</a>&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-From%3CMatrix%3CN%2C%20D%2C%20U1%2C%20%3CDefaultAllocator%20as%20Allocator%3CN%2C%20D%2C%20U1%3E%3E%3A%3ABuffer%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_conversion.rs.html#144-154' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-7' class="method hidden"><code id='from.v-7'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(coords: <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_conversion.rs.html#149-153' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-Copy' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a> as <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;&gt;::<a class="type" href="../../nalgebra/base/allocator/trait.Allocator.html#associatedtype.Buffer" title="type nalgebra::base::allocator::Allocator::Buffer">Buffer</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-Copy' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#40-45' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-DerefMut' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html" title="trait core::ops::deref::DerefMut">DerefMut</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-DerefMut' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#29-35' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.deref_mut' class="method hidden"><code id='deref_mut.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html#tymethod.deref_mut' class='fnname'>deref_mut</a>(&amp;mut self) -&gt; &amp;mut Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#32-34' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Mutably dereferences the value.</p>
</div></div><h3 id='impl-DerefMut-1' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html" title="trait core::ops::deref::DerefMut">DerefMut</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;,&nbsp;</span></code><a href='#impl-DerefMut-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#29-35' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.deref_mut-1' class="method hidden"><code id='deref_mut.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html#tymethod.deref_mut' class='fnname'>deref_mut</a>(&amp;mut self) -&gt; &amp;mut Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#32-34' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Mutably dereferences the value.</p>
</div></div><h3 id='impl-DerefMut-2' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html" title="trait core::ops::deref::DerefMut">DerefMut</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;,&nbsp;</span></code><a href='#impl-DerefMut-2' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#29-35' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.deref_mut-2' class="method hidden"><code id='deref_mut.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html#tymethod.deref_mut' class='fnname'>deref_mut</a>(&amp;mut self) -&gt; &amp;mut Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#32-34' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Mutably dereferences the value.</p>
</div></div><h3 id='impl-DerefMut-3' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html" title="trait core::ops::deref::DerefMut">DerefMut</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>&gt;,&nbsp;</span></code><a href='#impl-DerefMut-3' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#29-35' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.deref_mut-3' class="method hidden"><code id='deref_mut.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html#tymethod.deref_mut' class='fnname'>deref_mut</a>(&amp;mut self) -&gt; &amp;mut Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#32-34' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Mutably dereferences the value.</p>
</div></div><h3 id='impl-DerefMut-4' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html" title="trait core::ops::deref::DerefMut">DerefMut</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U5.html" title="struct nalgebra::base::dimension::U5">U5</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U5.html" title="struct nalgebra::base::dimension::U5">U5</a>&gt;,&nbsp;</span></code><a href='#impl-DerefMut-4' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#29-35' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.deref_mut-4' class="method hidden"><code id='deref_mut.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html#tymethod.deref_mut' class='fnname'>deref_mut</a>(&amp;mut self) -&gt; &amp;mut Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#32-34' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Mutably dereferences the value.</p>
</div></div><h3 id='impl-DerefMut-5' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html" title="trait core::ops::deref::DerefMut">DerefMut</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U6.html" title="struct nalgebra::base::dimension::U6">U6</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U6.html" title="struct nalgebra::base::dimension::U6">U6</a>&gt;,&nbsp;</span></code><a href='#impl-DerefMut-5' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#29-35' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.deref_mut-5' class="method hidden"><code id='deref_mut.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.DerefMut.html#tymethod.deref_mut' class='fnname'>deref_mut</a>(&amp;mut self) -&gt; &amp;mut Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#32-34' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Mutably dereferences the value.</p>
</div></div><h3 id='impl-Hash' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html" title="trait core::hash::Hash">Hash</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html" title="trait core::hash::Hash">Hash</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html" title="trait core::hash::Hash">Hash</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&lt;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a> as <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;&gt;::<a class="type" href="../../nalgebra/base/allocator/trait.Allocator.html#associatedtype.Buffer" title="type nalgebra::base::allocator::Allocator::Buffer">Buffer</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html" title="trait core::hash::Hash">Hash</a>,&nbsp;</span></code><a href='#impl-Hash' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#30-38' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.hash' class="method hidden"><code id='hash.v'>fn <a href='https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#tymethod.hash' class='fnname'>hash</a>&lt;H:&nbsp;<a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>&gt;(&amp;self, state: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>H)</code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#35-37' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Feeds this value into the given [<code>Hasher</code>]. <a href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#tymethod.hash">Read more</a></p>
</div><h4 id='method.hash_slice' class="method hidden"><code id='hash_slice.v'>fn <a href='https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#method.hash_slice' class='fnname'>hash_slice</a>&lt;H&gt;(data: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.slice.html">&amp;[Self]</a>, state: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>H) <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;H: <a class="trait" href="https://doc.rust-lang.org/nightly/core/hash/trait.Hasher.html" title="trait core::hash::Hasher">Hasher</a>,&nbsp;</span></code><span class='since' title='Stable since Rust version 1.3.0'>1.3.0</span><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/hash/mod.rs.html#192-198' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Feeds a slice of this type into the given [<code>Hasher</code>]. <a href="https://doc.rust-lang.org/nightly/core/hash/trait.Hash.html#method.hash_slice">Read more</a></p>
</div></div><h3 id='impl-Add%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2, Representative = D1&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Add%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output' class="type"><code id='Output.t'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code
</div><h4 id='method.add' class="method hidden"><code id='add.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, right: &amp;'b <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Add%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2, Representative = D1&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Add%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-1' class="type"><code id='Output.t-1'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
</div><h4 id='method.add-1' class="method hidden"><code id='add.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, right: <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Add%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'b, N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2, Representative = D1&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Add%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-2' class="type"><code id='Output.t-2'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</
</div><h4 id='method.add-2' class="method hidden"><code id='add.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, right: &amp;'b <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Add%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E-1' class='impl'><code class='in-band'>impl&lt;N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;<a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2, Representative = D1&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Add%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-3' class="type"><code id='Output.t-3'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>+</code> operator.</p>
</div><h4 id='method.add-3' class="method hidden"><code id='add.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#tymethod.add' class='fnname'>add</a>(self, right: <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html#associatedtype.Output" title="type core::ops::arith::Add::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+</code> operation.</p>
</div></div><h3 id='impl-Sub%3C%26%27b%20Point%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D, D&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Sub%3C%26%27b%20Point%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-4' class="type"><code id='Output.t-4'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/base/type.VectorSum.html" title="type nalgebra::base::VectorSum">VectorSum</a>&lt;N, D, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub' class="method hidden"><code id='sub.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D, D&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Sub%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-5' class="type"><code id='Output.t-5'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/base/type.VectorSum.html" title="type nalgebra::base::VectorSum">VectorSum</a>&lt;N, D, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-1' class="method hidden"><code id='sub.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3C%26%27b%20Point%3CN%2C%20D%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'b, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D, D&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Sub%3C%26%27b%20Point%3CN%2C%20D%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-6' class="type"><code id='Output.t-6'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/base/type.VectorSum.html" title="type nalgebra::base::VectorSum">VectorSum</a>&lt;N, D, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-2' class="method hidden"><code id='sub.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3CPoint%3CN%2C%20D%3E%3E-1' class='impl'><code class='in-band'>impl&lt;N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D, D&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Sub%3CPoint%3CN%2C%20D%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-7' class="type"><code id='Output.t-7'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/base/type.VectorSum.html" title="type nalgebra::base::VectorSum">VectorSum</a>&lt;N, D, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-3' class="method hidden"><code id='sub.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2, Representative = D1&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Sub%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-8' class="type"><code id='Output.t-8'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <
</div><h4 id='method.sub-4' class="method hidden"><code id='sub.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, right: &amp;'b <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2, Representative = D1&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Sub%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-9' class="type"><code id='Output.t-9'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-5' class="method hidden"><code id='sub.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, right: <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'b, N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2, Representative = D1&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Sub%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-10' class="type"><code id='Output.t-10'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-
</div><h4 id='method.sub-6' class="method hidden"><code id='sub.v-6'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, right: &amp;'b <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Sub%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E-1' class='impl'><code class='in-band'>impl&lt;N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;<a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2, Representative = D1&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Sub%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-11' class="type"><code id='Output.t-11'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.sub-7' class="method hidden"><code id='sub.v-7'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#tymethod.sub' class='fnname'>sub</a>(self, right: <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html#associatedtype.Output" title="type core::ops::arith::Sub::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D2%3E%3E' class='impl'><code class='in-band'>impl&lt;N, R1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, C1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, SA:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, R1, C1&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D2&gt;&gt; for <a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, R1, C1, SA&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R1, C1&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.AreMultipliable.html" title="trait nalgebra::base::constraint::AreMultipliable">AreMultipliable</a>&lt;R1, C1, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-12' class="type"><code id='Output.t-12'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, R1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul' class="method hidden"><code id='mul.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D2&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D2%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'a, N, R1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, C1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, SA:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, R1, C1&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D2&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, R1, C1, SA&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R1, C1&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.AreMultipliable.html" title="trait nalgebra::base::constraint::AreMultipliable">AreMultipliable</a>&lt;R1, C1, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D2%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-13' class="type"><code id='Output.t-13'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, R1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-1' class="method hidden"><code id='mul.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D2&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D2%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, N, R1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, C1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, SA:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, R1, C1&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D2&gt;&gt; for <a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, R1, C1, SA&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R1, C1&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.AreMultipliable.html" title="trait nalgebra::base::constraint::AreMultipliable">AreMultipliable</a>&lt;R1, C1, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-14' class="type"><code id='Output.t-14'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, R1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-2' class="method hidden"><code id='mul.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D2&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D2%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'a, 'b, N, R1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, C1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, SA:&nbsp;<a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, R1, C1&gt;&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D2&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, R1, C1, SA&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R1, C1&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, R1, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.AreMultipliable.html" title="trait nalgebra::base::constraint::AreMultipliable">AreMultipliable</a>&lt;R1, C1, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D2%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-15' class="type"><code id='Output.t-15'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, R1&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-3' class="method hidden"><code id='mul.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D2&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CN%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;N&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CN%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#195-203' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-16' class="type"><code id='Output.t-16'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-4' class="method hidden"><code id='mul.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: N) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#200-202' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CN%3E-1' class='impl'><code class='in-band'>impl&lt;'a, N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;N&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CN%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#205-213' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-17' class="type"><code id='Output.t-17'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-5' class="method hidden"><code id='mul.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: N) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#210-212' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Cu8%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Cu8%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-18' class="type"><code id='Output.t-18'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-6' class="method hidden"><code id='mul.v-6'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Cu8%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Cu8%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-19' class="type"><code id='Output.t-19'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-7' class="method hidden"><code id='mul.v-7'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u8.html">u8</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Cu16%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Cu16%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-20' class="type"><code id='Output.t-20'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-8' class="method hidden"><code id='mul.v-8'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Cu16%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Cu16%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-21' class="type"><code id='Output.t-21'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-9' class="method hidden"><code id='mul.v-9'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u16.html">u16</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Cu32%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Cu32%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-22' class="type"><code id='Output.t-22'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-10' class="method hidden"><code id='mul.v-10'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Cu32%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Cu32%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-23' class="type"><code id='Output.t-23'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-11' class="method hidden"><code id='mul.v-11'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Cu64%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Cu64%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-24' class="type"><code id='Output.t-24'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-12' class="method hidden"><code id='mul.v-12'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Cu64%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Cu64%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-25' class="type"><code id='Output.t-25'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-13' class="method hidden"><code id='mul.v-13'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u64.html">u64</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Cusize%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Cusize%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-26' class="type"><code id='Output.t-26'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-14' class="method hidden"><code id='mul.v-14'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Cusize%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Cusize%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-27' class="type"><code id='Output.t-27'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-15' class="method hidden"><code id='mul.v-15'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Ci8%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Ci8%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-28' class="type"><code id='Output.t-28'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-16' class="method hidden"><code id='mul.v-16'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Ci8%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Ci8%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-29' class="type"><code id='Output.t-29'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-17' class="method hidden"><code id='mul.v-17'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i8.html">i8</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Ci16%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Ci16%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-30' class="type"><code id='Output.t-30'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-18' class="method hidden"><code id='mul.v-18'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Ci16%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Ci16%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-31' class="type"><code id='Output.t-31'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-19' class="method hidden"><code id='mul.v-19'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i16.html">i16</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Ci32%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Ci32%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-32' class="type"><code id='Output.t-32'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-20' class="method hidden"><code id='mul.v-20'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Ci32%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Ci32%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-33' class="type"><code id='Output.t-33'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-21' class="method hidden"><code id='mul.v-21'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Ci64%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Ci64%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-34' class="type"><code id='Output.t-34'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-22' class="method hidden"><code id='mul.v-22'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Ci64%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Ci64%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-35' class="type"><code id='Output.t-35'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-23' class="method hidden"><code id='mul.v-23'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Cisize%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Cisize%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-36' class="type"><code id='Output.t-36'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-24' class="method hidden"><code id='mul.v-24'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Cisize%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Cisize%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-37' class="type"><code id='Output.t-37'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-25' class="method hidden"><code id='mul.v-25'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.isize.html">isize</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Cf32%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Cf32%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-38' class="type"><code id='Output.t-38'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-26' class="method hidden"><code id='mul.v-26'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Cf32%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Cf32%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-39' class="type"><code id='Output.t-39'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-27' class="method hidden"><code id='mul.v-27'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f32.html">f32</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3Cf64%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3Cf64%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#230-238' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-40' class="type"><code id='Output.t-40'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-28' class="method hidden"><code id='mul.v-28'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3Cf64%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, D&gt;&gt; for <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3Cf64%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#240-248' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-41' class="type"><code id='Output.t-41'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-29' class="method hidden"><code id='mul.v-29'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.f64.html">f64</a>, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.AreMultipliable.html" title="trait nalgebra::base::constraint::AreMultipliable">AreMultipliable</a>&lt;D, D, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-42' class="type"><code id='Output.t-42'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-30' class="method hidden"><code id='mul.v-30'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'a, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.AreMultipliable.html" title="trait nalgebra::base::constraint::AreMultipliable">AreMultipliable</a>&lt;D, D, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-43' class="type"><code id='Output.t-43'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-31' class="method hidden"><code id='mul.v-31'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.AreMultipliable.html" title="trait nalgebra::base::constraint::AreMultipliable">AreMultipliable</a>&lt;D, D, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-44' class="type"><code id='Output.t-44'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-32' class="method hidden"><code id='mul.v-32'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'a, 'b, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.AreMultipliable.html" title="trait nalgebra::base::constraint::AreMultipliable">AreMultipliable</a>&lt;D, D, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-45' class="type"><code id='Output.t-45'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-33' class="method hidden"><code id='mul.v-33'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20U3%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, 'b, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for &amp;'a <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20U3%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_ops.rs.html#88-97' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-46' class="type"><code id='Output.t-46'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-34' class="method hidden"><code id='mul.v-34'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: &amp;'b <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_ops.rs.html#94-96' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20U3%3E%3E' class='impl'><code class='in-band'>impl&lt;'a, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for &amp;'a <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20U3%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_ops.rs.html#88-97' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-47' class="type"><code id='Output.t-47'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-35' class="method hidden"><code id='mul.v-35'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_ops.rs.html#94-96' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20U3%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'b, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20U3%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_ops.rs.html#88-97' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-48' class="type"><code id='Output.t-48'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-36' class="method hidden"><code id='mul.v-36'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: &amp;'b <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_ops.rs.html#94-96' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20U3%3E%3E-1' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20U3%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_ops.rs.html#88-97' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-49' class="type"><code id='Output.t-49'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-37' class="method hidden"><code id='mul.v-37'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_ops.rs.html#94-96' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20U2%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20U2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_ops.rs.html#125-133' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-50' class="type"><code id='Output.t-50'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-38' class="method hidden"><code id='mul.v-38'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_ops.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20U2%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'a, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for &amp;'a <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20U2%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_ops.rs.html#125-133' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-51' class="type"><code id='Output.t-51'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-39' class="method hidden"><code id='mul.v-39'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_ops.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20U2%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20U2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_ops.rs.html#125-133' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-52' class="type"><code id='Output.t-52'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-40' class="method hidden"><code id='mul.v-40'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: &amp;'b <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_ops.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20U2%3E%3E-1' class='impl'><code class='in-band'>impl&lt;'a, 'b, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for &amp;'a <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20U2%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_ops.rs.html#125-133' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-53' class="type"><code id='Output.t-53'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-41' class="method hidden"><code id='mul.v-41'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: &amp;'b <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_ops.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-2' class='impl'><code class='in-band'>impl&lt;'a, 'b, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D, D, Representative = D&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-2' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-54' class="type"><code id='Output.t-54'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-42' class="method hidden"><code id='mul.v-42'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D%3E%3E-2' class='impl'><code class='in-band'>impl&lt;'a, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D, D, Representative = D&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D%3E%3E-2' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-55' class="type"><code id='Output.t-55'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-43' class="method hidden"><code id='mul.v-43'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-3' class='impl'><code class='in-band'>impl&lt;'b, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D, D, Representative = D&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-3' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-56' class="type"><code id='Output.t-56'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-44' class="method hidden"><code id='mul.v-44'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D%3E%3E-3' class='impl'><code class='in-band'>impl&lt;N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.SameShapeAllocator.html" title="trait nalgebra::base::allocator::SameShapeAllocator">SameShapeAllocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D, D, Representative = D&gt; + <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfColumns.html" title="trait nalgebra::base::constraint::SameNumberOfColumns">SameNumberOfColumns</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D%3E%3E-3' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#150-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-57' class="type"><code id='Output.t-57'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-45' class="method hidden"><code id='mul.v-45'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D%3E%3E-4' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Isometry.html" title="struct nalgebra::geometry::Isometry">Isometry</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">AlgaRotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D%3E%3E-4' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/isometry_ops.rs.html#67-76' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-58' class="type"><code id='Output.t-58'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-46' class="method hidden"><code id='mul.v-46'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/isometry_ops.rs.html#73-75' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D%3E%3E-5' class='impl'><code class='in-band'>impl&lt;'a, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Isometry.html" title="struct nalgebra::geometry::Isometry">Isometry</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">AlgaRotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D%3E%3E-5' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/isometry_ops.rs.html#67-76' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-59' class="type"><code id='Output.t-59'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-47' class="method hidden"><code id='mul.v-47'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/isometry_ops.rs.html#73-75' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-4' class='impl'><code class='in-band'>impl&lt;'b, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Isometry.html" title="struct nalgebra::geometry::Isometry">Isometry</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">AlgaRotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-4' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/isometry_ops.rs.html#67-76' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-60' class="type"><code id='Output.t-60'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-48' class="method hidden"><code id='mul.v-48'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/isometry_ops.rs.html#73-75' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-5' class='impl'><code class='in-band'>impl&lt;'a, 'b, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Isometry.html" title="struct nalgebra::geometry::Isometry">Isometry</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">AlgaRotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-5' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/isometry_ops.rs.html#67-76' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-61' class="type"><code id='Output.t-61'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-49' class="method hidden"><code id='mul.v-49'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/isometry_ops.rs.html#73-75' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D%3E%3E-6' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Similarity.html" title="struct nalgebra::geometry::Similarity">Similarity</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">AlgaRotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D%3E%3E-6' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/similarity_ops.rs.html#69-78' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-62' class="type"><code id='Output.t-62'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-50' class="method hidden"><code id='mul.v-50'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/similarity_ops.rs.html#75-77' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D%3E%3E-7' class='impl'><code class='in-band'>impl&lt;'a, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Similarity.html" title="struct nalgebra::geometry::Similarity">Similarity</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">AlgaRotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D%3E%3E-7' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/similarity_ops.rs.html#69-78' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-63' class="type"><code id='Output.t-63'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-51' class="method hidden"><code id='mul.v-51'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/similarity_ops.rs.html#75-77' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-6' class='impl'><code class='in-band'>impl&lt;'b, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Similarity.html" title="struct nalgebra::geometry::Similarity">Similarity</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">AlgaRotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-6' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/similarity_ops.rs.html#69-78' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-64' class="type"><code id='Output.t-64'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-52' class="method hidden"><code id='mul.v-52'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/similarity_ops.rs.html#75-77' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-7' class='impl'><code class='in-band'>impl&lt;'a, 'b, N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Similarity.html" title="struct nalgebra::geometry::Similarity">Similarity</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">AlgaRotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-7' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/similarity_ops.rs.html#69-78' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-65' class="type"><code id='Output.t-65'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>*</code> operator.</p>
</div><h4 id='method.mul-53' class="method hidden"><code id='mul.v-53'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, right: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/similarity_ops.rs.html#75-77' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D%3E%3E-8' class='impl'><code class='in-band'>impl&lt;N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, C:&nbsp;<a class="trait" href="../../nalgebra/geometry/trait.TCategory.html" title="trait nalgebra::geometry::TCategory">TCategory</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Transform.html" title="struct nalgebra::geometry::Transform">Transform</a>&lt;N, D, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a> + <a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D%3E%3E-8' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-
</div><h4 id='method.mul-54' class="method hidden"><code id='mul.v-54'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3CPoint%3CN%2C%20D%3E%3E-9' class='impl'><code class='in-band'>impl&lt;'a, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, C:&nbsp;<a class="trait" href="../../nalgebra/geometry/trait.TCategory.html" title="trait nalgebra::geometry::TCategory">TCategory</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Transform.html" title="struct nalgebra::geometry::Transform">Transform</a>&lt;N, D, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a> + <a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3CPoint%3CN%2C%20D%3E%3E-9' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associated
</div><h4 id='method.mul-55' class="method hidden"><code id='mul.v-55'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-8' class='impl'><code class='in-band'>impl&lt;'b, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, C:&nbsp;<a class="trait" href="../../nalgebra/geometry/trait.TCategory.html" title="trait nalgebra::geometry::TCategory">TCategory</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Transform.html" title="struct nalgebra::geometry::Transform">Transform</a>&lt;N, D, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a> + <a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-8' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class='impl-items
</div><h4 id='method.mul-56' class="method hidden"><code id='mul.v-56'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-9' class='impl'><code class='in-band'>impl&lt;'a, 'b, N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, C:&nbsp;<a class="trait" href="../../nalgebra/geometry/trait.TCategory.html" title="trait nalgebra::geometry::TCategory">TCategory</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Transform.html" title="struct nalgebra::geometry::Transform">Transform</a>&lt;N, D, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a> + <a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt;,&nbsp;</span></code><a href='#impl-Mul%3C%26%27b%20Point%3CN%2C%20D%3E%3E-9' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#20-33' title='goto source code'>[src]</a></h3><div class
</div><h4 id='method.mul-57' class="method hidden"><code id='mul.v-57'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#tymethod.mul' class='fnname'>mul</a>(self, rhs: &amp;'b <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html#associatedtype.Output" title="type core::ops::arith::Mul::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/op_macros.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*</code> operation.</p>
</div></div><h3 id='impl-Div%3CN%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedDiv.html" title="trait alga::general::operator::ClosedDiv">ClosedDiv</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;N&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Div%3CN%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#195-203' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-70' class="type"><code id='Output.t-70'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
</div><h4 id='method.div' class="method hidden"><code id='div.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, right: N) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#200-202' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/</code> operation.</p>
</div></div><h3 id='impl-Div%3CN%3E-1' class='impl'><code class='in-band'>impl&lt;'a, N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedDiv.html" title="trait alga::general::operator::ClosedDiv">ClosedDiv</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;N&gt; for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Div%3CN%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#205-213' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-71' class="type"><code id='Output.t-71'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>/</code> operator.</p>
</div><h4 id='method.div-1' class="method hidden"><code id='div.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#tymethod.div' class='fnname'>div</a>(self, right: N) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html#associatedtype.Output" title="type core::ops::arith::Div::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#210-212' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/</code> operation.</p>
</div></div><h3 id='impl-Neg' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Neg' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#46-55' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-72' class="type"><code id='Output.t-72'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#associatedtype.Output' class="type">Output</a> = Self</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.neg' class="method hidden"><code id='neg.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#tymethod.neg' class='fnname'>neg</a>(self) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#associatedtype.Output" title="type core::ops::arith::Neg::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#52-54' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the unary <code>-</code> operation.</p>
</div></div><h3 id='impl-Neg-1' class='impl'><code class='in-band'>impl&lt;'a, N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a> for &amp;'a <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Neg-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#57-66' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-73' class="type"><code id='Output.t-73'>type <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#associatedtype.Output' class="type">Output</a> = <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The resulting type after applying the <code>-</code> operator.</p>
</div><h4 id='method.neg-1' class="method hidden"><code id='neg.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#tymethod.neg' class='fnname'>neg</a>(self) -&gt; Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html#associatedtype.Output" title="type core::ops::arith::Neg::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#63-65' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the unary <code>-</code> operation.</p>
</div></div><h3 id='impl-AddAssign%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;SB: <a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2&gt;,&nbsp;</span></code><a href='#impl-AddAssign%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#140-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.add_assign' class="method hidden"><code id='add_assign.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, right: &amp;'b <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;)</code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#147-149' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+=</code> operation.</p>
</div></div><h3 id='impl-AddAssign%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='impl'><code class='in-band'>impl&lt;N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;<a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;SB: <a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2&gt;,&nbsp;</span></code><a href='#impl-AddAssign%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#152-162' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.add_assign-1' class="method hidden"><code id='add_assign.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html#tymethod.add_assign' class='fnname'>add_assign</a>(&amp;mut self, right: <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;)</code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#159-161' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>+=</code> operation.</p>
</div></div><h3 id='impl-SubAssign%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='impl'><code class='in-band'>impl&lt;'b, N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;&amp;'b <a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;SB: <a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2&gt;,&nbsp;</span></code><a href='#impl-SubAssign%3C%26%27b%20Matrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#140-150' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.sub_assign' class="method hidden"><code id='sub_assign.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, right: &amp;'b <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;)</code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#147-149' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-=</code> operation.</p>
</div></div><h3 id='impl-SubAssign%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='impl'><code class='in-band'>impl&lt;N, D1:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, D2:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.Dim.html" title="trait nalgebra::base::dimension::Dim">Dim</a>, SB&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;<a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N, D2, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, SB&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D1&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;SB: <a class="trait" href="../../nalgebra/base/storage/trait.Storage.html" title="trait nalgebra::base::storage::Storage">Storage</a>&lt;N, D2&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D1&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/constraint/struct.ShapeConstraint.html" title="struct nalgebra::base::constraint::ShapeConstraint">ShapeConstraint</a>: <a class="trait" href="../../nalgebra/base/constraint/trait.SameNumberOfRows.html" title="trait nalgebra::base::constraint::SameNumberOfRows">SameNumberOfRows</a>&lt;D1, D2&gt;,&nbsp;</span></code><a href='#impl-SubAssign%3CMatrix%3CN%2C%20D2%2C%20U1%2C%20SB%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#152-162' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.sub_assign-1' class="method hidden"><code id='sub_assign.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html#tymethod.sub_assign' class='fnname'>sub_assign</a>(&amp;mut self, right: <a class="type" href="../../nalgebra/base/type.Vector.html" title="type nalgebra::base::Vector">Vector</a>&lt;N, D2, SB&gt;)</code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#159-161' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>-=</code> operation.</p>
</div></div><h3 id='impl-MulAssign%3CN%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;N&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-MulAssign%3CN%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#215-221' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.mul_assign' class="method hidden"><code id='mul_assign.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html#tymethod.mul_assign' class='fnname'>mul_assign</a>(&amp;mut self, right: N)</code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#218-220' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>*=</code> operation.</p>
</div></div><h3 id='impl-DivAssign%3CN%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedDiv.html" title="trait alga::general::operator::ClosedDiv">ClosedDiv</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;N&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-DivAssign%3CN%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#215-221' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.div_assign' class="method hidden"><code id='div_assign.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html#tymethod.div_assign' class='fnname'>div_assign</a>(&amp;mut self, right: N)</code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#218-220' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the <code>/=</code> operation.</p>
</div></div><h3 id='impl-Deref' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,&nbsp;</span></code><a href='#impl-Deref' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#19-27' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Target' class="type"><code id='Target.t'>type <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target' class="type">Target</a> = <a class="struct" href="../../nalgebra/base/coordinates/struct.X.html" title="struct nalgebra::base::coordinates::X">X</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after dereferencing.</p>
</div><h4 id='method.deref' class="method hidden"><code id='deref.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#tymethod.deref' class='fnname'>deref</a>(&amp;self) -&gt; &amp;Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#24-26' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Dereferences the value.</p>
</div></div><h3 id='impl-Deref-1' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;,&nbsp;</span></code><a href='#impl-Deref-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#19-27' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Target-1' class="type"><code id='Target.t-1'>type <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target' class="type">Target</a> = <a class="struct" href="../../nalgebra/base/coordinates/struct.XY.html" title="struct nalgebra::base::coordinates::XY">XY</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after dereferencing.</p>
</div><h4 id='method.deref-1' class="method hidden"><code id='deref.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#tymethod.deref' class='fnname'>deref</a>(&amp;self) -&gt; &amp;Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#24-26' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Dereferences the value.</p>
</div></div><h3 id='impl-Deref-2' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;,&nbsp;</span></code><a href='#impl-Deref-2' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#19-27' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Target-2' class="type"><code id='Target.t-2'>type <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target' class="type">Target</a> = <a class="struct" href="../../nalgebra/base/coordinates/struct.XYZ.html" title="struct nalgebra::base::coordinates::XYZ">XYZ</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after dereferencing.</p>
</div><h4 id='method.deref-2' class="method hidden"><code id='deref.v-2'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#tymethod.deref' class='fnname'>deref</a>(&amp;self) -&gt; &amp;Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#24-26' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Dereferences the value.</p>
</div></div><h3 id='impl-Deref-3' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U4.html" title="struct nalgebra::base::dimension::U4">U4</a>&gt;,&nbsp;</span></code><a href='#impl-Deref-3' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#19-27' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Target-3' class="type"><code id='Target.t-3'>type <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target' class="type">Target</a> = <a class="struct" href="../../nalgebra/base/coordinates/struct.XYZW.html" title="struct nalgebra::base::coordinates::XYZW">XYZW</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after dereferencing.</p>
</div><h4 id='method.deref-3' class="method hidden"><code id='deref.v-3'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#tymethod.deref' class='fnname'>deref</a>(&amp;self) -&gt; &amp;Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#24-26' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Dereferences the value.</p>
</div></div><h3 id='impl-Deref-4' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U5.html" title="struct nalgebra::base::dimension::U5">U5</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U5.html" title="struct nalgebra::base::dimension::U5">U5</a>&gt;,&nbsp;</span></code><a href='#impl-Deref-4' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#19-27' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Target-4' class="type"><code id='Target.t-4'>type <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target' class="type">Target</a> = <a class="struct" href="../../nalgebra/base/coordinates/struct.XYZWA.html" title="struct nalgebra::base::coordinates::XYZWA">XYZWA</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after dereferencing.</p>
</div><h4 id='method.deref-4' class="method hidden"><code id='deref.v-4'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#tymethod.deref' class='fnname'>deref</a>(&amp;self) -&gt; &amp;Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#24-26' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Dereferences the value.</p>
</div></div><h3 id='impl-Deref-5' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html" title="trait core::ops::deref::Deref">Deref</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U6.html" title="struct nalgebra::base::dimension::U6">U6</a>&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U6.html" title="struct nalgebra::base::dimension::U6">U6</a>&gt;,&nbsp;</span></code><a href='#impl-Deref-5' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#19-27' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Target-5' class="type"><code id='Target.t-5'>type <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target' class="type">Target</a> = <a class="struct" href="../../nalgebra/base/coordinates/struct.XYZWAB.html" title="struct nalgebra::base::coordinates::XYZWAB">XYZWAB</a>&lt;N&gt;</code></h4><div class='docblock'><p>The resulting type after dereferencing.</p>
</div><h4 id='method.deref-5' class="method hidden"><code id='deref.v-5'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#tymethod.deref' class='fnname'>deref</a>(&amp;self) -&gt; &amp;Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/deref/trait.Deref.html#associatedtype.Target" title="type core::ops::deref::Deref::Target">Target</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_coordinates.rs.html#24-26' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Dereferences the value.</p>
</div></div><h3 id='impl-Index%3Cusize%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/index/trait.Index.html" title="trait core::ops::index::Index">Index</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Index%3Cusize%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#21-30' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-74' class="type"><code id='Output.t-74'>type <a href='https://doc.rust-lang.org/nightly/core/ops/index/trait.Index.html#associatedtype.Output' class="type">Output</a> = N</code></h4><div class='docblock'><p>The returned type after indexing.</p>
</div><h4 id='method.index' class="method hidden"><code id='index.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/index/trait.Index.html#tymethod.index' class='fnname'>index</a>(&amp;self, i: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; &amp;Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/index/trait.Index.html#associatedtype.Output" title="type core::ops::index::Index::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#27-29' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the indexing (<code>container[index]</code>) operation.</p>
</div></div><h3 id='impl-IndexMut%3Cusize%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/index/trait.IndexMut.html" title="trait core::ops::index::IndexMut">IndexMut</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-IndexMut%3Cusize%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#32-39' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.index_mut' class="method hidden"><code id='index_mut.v'>fn <a href='https://doc.rust-lang.org/nightly/core/ops/index/trait.IndexMut.html#tymethod.index_mut' class='fnname'>index_mut</a>(&amp;mut self, i: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.usize.html">usize</a>) -&gt; &amp;mut Self::<a class="type" href="https://doc.rust-lang.org/nightly/core/ops/index/trait.Index.html#associatedtype.Output" title="type core::ops::index::Index::Output">Output</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_ops.rs.html#36-38' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the mutable indexing (<code>container[index]</code>) operation.</p>
</div></div><h3 id='impl-Debug' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> + <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> + <a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html" title="trait core::fmt::Debug">Debug</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Debug' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#22' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.fmt' class="method hidden"><code id='fmt.v'>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="type" href="https://doc.rust-lang.org/nightly/core/fmt/type.Result.html" title="type core::fmt::Result">Result</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#22' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/nightly/core/fmt/trait.Debug.html#tymethod.fmt">Read more</a></p>
</div></div><h3 id='impl-Display' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Display' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#315-331' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.fmt-1' class="method hidden"><code id='fmt.v-1'>fn <a href='https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class="struct" href="https://doc.rust-lang.org/nightly/core/fmt/struct.Formatter.html" title="struct core::fmt::Formatter">Formatter</a>) -&gt; <a class="type" href="https://doc.rust-lang.org/nightly/core/fmt/type.Result.html" title="type core::fmt::Result">Result</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#318-330' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Formats the value using the given formatter. <a href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html#tymethod.fmt">Read more</a></p>
</div></div><h3 id='impl-AbsDiffEq%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html" title="trait approx::abs_diff_eq::AbsDiffEq">AbsDiffEq</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html" title="trait approx::abs_diff_eq::AbsDiffEq">AbsDiffEq</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;N::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-AbsDiffEq%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#213-229' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Epsilon' class="type"><code id='Epsilon.t'>type <a href='../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon' class="type">Epsilon</a> = N::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a></code></h4><div class='docblock'><p>Used for specifying relative comparisons.</p>
</div><h4 id='method.default_epsilon' class="method hidden"><code id='default_epsilon.v'>fn <a href='../../approx/abs_diff_eq/trait.AbsDiffEq.html#tymethod.default_epsilon' class='fnname'>default_epsilon</a>() -&gt; Self::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#221-223' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The default tolerance to use when testing values that are close together. <a href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#tymethod.default_epsilon">Read more</a></p>
</div><h4 id='method.abs_diff_eq' class="method hidden"><code id='abs_diff_eq.v'>fn <a href='../../approx/abs_diff_eq/trait.AbsDiffEq.html#tymethod.abs_diff_eq' class='fnname'>abs_diff_eq</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self, epsilon: Self::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#226-228' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>A test for equality that uses the absolute difference to compute the approximate equality of two numbers. <a href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#tymethod.abs_diff_eq">Read more</a></p>
</div><h4 id='method.abs_diff_ne' class="method hidden"><code id='abs_diff_ne.v'>fn <a href='../../approx/abs_diff_eq/trait.AbsDiffEq.html#method.abs_diff_ne' class='fnname'>abs_diff_ne</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Rhs, epsilon: Self::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/approx/abs_diff_eq.rs.html#26-28' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inverse of <code>ApproxEq::abs_diff_eq</code>.</p>
</div></div><h3 id='impl-RelativeEq%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../approx/relative_eq/trait.RelativeEq.html" title="trait approx::relative_eq::RelativeEq">RelativeEq</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;N::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-RelativeEq%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#231-252' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.default_max_relative' class="method hidden"><code id='default_max_relative.v'>fn <a href='../../approx/relative_eq/trait.RelativeEq.html#tymethod.default_max_relative' class='fnname'>default_max_relative</a>() -&gt; Self::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#237-239' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The default relative tolerance for testing values that are far-apart. <a href="../../approx/relative_eq/trait.RelativeEq.html#tymethod.default_max_relative">Read more</a></p>
</div><h4 id='method.relative_eq' class="method hidden"><code id='relative_eq.v'>fn <a href='../../approx/relative_eq/trait.RelativeEq.html#tymethod.relative_eq' class='fnname'>relative_eq</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self, <br>&nbsp;&nbsp;&nbsp;&nbsp;epsilon: Self::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;max_relative: Self::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a><br>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#242-251' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>A test for equality that uses a relative comparison if the values are far apart.</p>
</div><h4 id='method.relative_ne' class="method hidden"><code id='relative_ne.v'>fn <a href='../../approx/relative_eq/trait.RelativeEq.html#method.relative_ne' class='fnname'>relative_ne</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Rhs, <br>&nbsp;&nbsp;&nbsp;&nbsp;epsilon: Self::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;max_relative: Self::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a><br>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/approx/relative_eq.rs.html#29-36' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inverse of <code>ApproxEq::relative_eq</code>.</p>
</div></div><h3 id='impl-UlpsEq%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../approx/ulps_eq/trait.UlpsEq.html" title="trait approx::ulps_eq::UlpsEq">UlpsEq</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../approx/ulps_eq/trait.UlpsEq.html" title="trait approx::ulps_eq::UlpsEq">UlpsEq</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;N::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a>: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Copy.html" title="trait core::marker::Copy">Copy</a>,&nbsp;</span></code><a href='#impl-UlpsEq%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#254-268' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.default_max_ulps' class="method hidden"><code id='default_max_ulps.v'>fn <a href='../../approx/ulps_eq/trait.UlpsEq.html#tymethod.default_max_ulps' class='fnname'>default_max_ulps</a>() -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#260-262' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The default ULPs to tolerate when testing values that are far-apart. <a href="../../approx/ulps_eq/trait.UlpsEq.html#tymethod.default_max_ulps">Read more</a></p>
</div><h4 id='method.ulps_eq' class="method hidden"><code id='ulps_eq.v'>fn <a href='../../approx/ulps_eq/trait.UlpsEq.html#tymethod.ulps_eq' class='fnname'>ulps_eq</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self, epsilon: Self::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a>, max_ulps: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/nalgebra/geometry/point.rs.html#265-267' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>A test for equality that uses units in the last place (ULP) if the values are far apart.</p>
</div><h4 id='method.ulps_ne' class="method hidden"><code id='ulps_ne.v'>fn <a href='../../approx/ulps_eq/trait.UlpsEq.html#method.ulps_ne' class='fnname'>ulps_ne</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Rhs, epsilon: Self::<a class="type" href="../../approx/abs_diff_eq/trait.AbsDiffEq.html#associatedtype.Epsilon" title="type approx::abs_diff_eq::AbsDiffEq::Epsilon">Epsilon</a>, max_ulps: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/approx/ulps_eq.rs.html#24-26' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inverse of <code>ApproxEq::ulps_eq</code>.</p>
</div></div><h3 id='impl-Bounded' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/bounds/trait.Bounded.html" title="trait num_traits::bounds::Bounded">Bounded</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../num_traits/bounds/trait.Bounded.html" title="trait num_traits::bounds::Bounded">Bounded</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Bounded' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#115-127' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.max_value' class="method hidden"><code id='max_value.v'>fn <a href='../../num_traits/bounds/trait.Bounded.html#tymethod.max_value' class='fnname'>max_value</a>() -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#119-121' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>returns the largest finite number this type can represent</p>
</div><h4 id='method.min_value' class="method hidden"><code id='min_value.v'>fn <a href='../../num_traits/bounds/trait.Bounded.html#tymethod.min_value' class='fnname'>min_value</a>() -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#124-126' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>returns the smallest finite number this type can represent</p>
</div></div><h3 id='impl-Distribution%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../rand/distributions/trait.Distribution.html" title="trait rand::distributions::Distribution">Distribution</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../rand/distributions/struct.Standard.html" title="struct rand::distributions::Standard">Standard</a> <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../rand/distributions/struct.Standard.html" title="struct rand::distributions::Standard">Standard</a>: <a class="trait" href="../../rand/distributions/trait.Distribution.html" title="trait rand::distributions::Distribution">Distribution</a>&lt;N&gt;,&nbsp;</span></code><a href='#impl-Distribution%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#129-138' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.sample' class="method hidden"><code id='sample.v'>fn <a href='../../rand/distributions/trait.Distribution.html#tymethod.sample' class='fnname'>sample</a>&lt;'a, G:&nbsp;<a class="trait" href="../../rand/trait.Rng.html" title="trait rand::Rng">Rng</a> + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>&gt;(&amp;self, rng: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>G) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/point_construction.rs.html#135-137' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Generate a random value of <code>T</code>, using <code>rng</code> as the source of randomness.</p>
</div><h4 id='method.sample_iter' class="method hidden"><code id='sample_iter.v'>fn <a href='../../rand/distributions/trait.Distribution.html#method.sample_iter' class='fnname'>sample_iter</a>&lt;R&gt;(&amp;'a self, rng: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a mut </a>R) -&gt; <a class="struct" href="../../rand/distributions/struct.DistIter.html" title="struct rand::distributions::DistIter">DistIter</a>&lt;'a, Self, R, T&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../rand/trait.Rng.html" title="trait rand::Rng">Rng</a>,&nbsp;</span></code><a class='srclink' href='../../src/rand/distributions/mod.rs.html#261-269' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Create an iterator that generates random values of <code>T</code>, using <code>rng</code> as the source of randomness. <a href="../../rand/distributions/trait.Distribution.html#method.sample_iter">Read more</a></p>
</div></div><h3 id='impl-JoinSemilattice' class='impl'><code class='in-band'>impl&lt;N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/general/lattice/trait.JoinSemilattice.html" title="trait alga::general::lattice::JoinSemilattice">JoinSemilattice</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/lattice/trait.JoinSemilattice.html" title="trait alga::general::lattice::JoinSemilattice">JoinSemilattice</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-JoinSemilattice' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_alga.rs.html#61-70' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.join' class="method hidden"><code id='join.v'>fn <a href='../../alga/general/lattice/trait.JoinSemilattice.html#tymethod.join' class='fnname'>join</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_alga.rs.html#67-69' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the join (aka. supremum) of two values.</p>
</div></div><h3 id='impl-SubsetOf%3CPoint%3CN2%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N1, N2, D&gt; <a class="trait" href="../../alga/general/subset/trait.SubsetOf.html" title="trait alga::general::subset::SubsetOf">SubsetOf</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N2, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N1, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;N1: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;N2: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/subset/trait.SupersetOf.html" title="trait alga::general::subset::SupersetOf">SupersetOf</a>&lt;N1&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N2, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N1, D&gt;,&nbsp;</span></code><a href='#impl-SubsetOf%3CPoint%3CN2%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_conversion.rs.html#27-50' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.to_superset' class="method hidden"><code id='to_superset.v'>fn <a href='../../alga/general/subset/trait.SubsetOf.html#tymethod.to_superset' class='fnname'>to_superset</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N2, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/point_conversion.rs.html#35-37' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inclusion map: converts <code>self</code> to the equivalent element of its superset.</p>
</div><h4 id='method.is_in_subset' class="method hidden"><code id='is_in_subset.v'>fn <a href='../../alga/general/subset/trait.SubsetOf.html#tymethod.is_in_subset' class='fnname'>is_in_subset</a>(m: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N2, D&gt;) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_conversion.rs.html#40-44' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Checks if <code>element</code> is actually part of the subset <code>Self</code> (and can be converted to it).</p>
</div><h4 id='method.from_superset_unchecked' class="method hidden"><code id='from_superset_unchecked.v'>unsafe fn <a href='../../alga/general/subset/trait.SubsetOf.html#tymethod.from_superset_unchecked' class='fnname'>from_superset_unchecked</a>(m: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N2, D&gt;) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_conversion.rs.html#47-49' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Use with care! Same as <code>self.to_superset</code> but without any property checks. Always succeeds.</p>
</div><h4 id='method.from_superset' class="method hidden"><code id='from_superset.v'>fn <a href='../../alga/general/subset/trait.SubsetOf.html#method.from_superset' class='fnname'>from_superset</a>(element: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/alga/general/subset.rs.html#32-38' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inverse inclusion map: attempts to construct <code>self</code> from the equivalent element of its superset. <a href="../../alga/general/subset/trait.SubsetOf.html#method.from_superset">Read more</a></p>
</div></div><h3 id='impl-SubsetOf%3CMatrix%3CN2%2C%20%3CD%20as%20DimNameAdd%3CU1%3E%3E%3A%3AOutput%2C%20U1%2C%20%3CDefaultAllocator%20as%20Allocator%3CN2%2C%20%3CD%20as%20DimNameAdd%3CU1%3E%3E%3A%3AOutput%2C%20U1%3E%3E%3A%3ABuffer%3E%3E' class='impl'><code class='in-band'>impl&lt;N1, N2, D&gt; <a class="trait" href="../../alga/general/subset/trait.SubsetOf.html" title="trait alga::general::subset::SubsetOf">SubsetOf</a>&lt;<a class="struct" href="../../nalgebra/base/struct.Matrix.html" title="struct nalgebra::base::Matrix">Matrix</a>&lt;N2, &lt;D as <a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;::<a class="type" href="../../nalgebra/base/dimension/trait.DimNameAdd.html#associatedtype.Output" title="type nalgebra::base::dimension::DimNameAdd::Output">Output</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>, &lt;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a> as <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N2, &lt;D as <a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;::<a class="type" href="../../nalgebra/base/dimension/trait.DimNameAdd.html#associatedtype.Output" title="type nalgebra::base::dimension::DimNameAdd::Output">Output</a>, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;::<a class="type" href="../../nalgebra/base/allocator/trait.Allocator.html#associatedtype.Buffer" title="type nalgebra::base::allocator::Allocator::Buffer">Buffer</a>&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N1, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;D: <a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;N1: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;N2: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../num_traits/identities/trait.Zero.html" title="trait num_traits::identities::Zero">Zero</a> + <a class="trait" href="../../num_traits/identities/trait.One.html" title="trait num_traits::identities::One">One</a> + <a class="trait" href="../../alga/general/operator/trait.ClosedDiv.html" title="trait alga::general::operator::ClosedDiv">ClosedDiv</a> + <a class="trait" href="../../alga/general/subset/trait.SupersetOf.html" title="trait alga::general::subset::SupersetOf">SupersetOf</a>&lt;N1&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N1, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N1, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="ty
</div><h4 id='method.is_in_subset-1' class="method hidden"><code id='is_in_subset.v-1'>fn <a href='../../alga/general/subset/trait.SubsetOf.html#tymethod.is_in_subset' class='fnname'>is_in_subset</a>(v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N2, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_conversion.rs.html#69-71' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Checks if <code>element</code> is actually part of the subset <code>Self</code> (and can be converted to it).</p>
</div><h4 id='method.from_superset_unchecked-1' class="method hidden"><code id='from_superset_unchecked.v-1'>unsafe fn <a href='../../alga/general/subset/trait.SubsetOf.html#tymethod.from_superset_unchecked' class='fnname'>from_superset_unchecked</a>(v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N2, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_conversion.rs.html#74-79' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Use with care! Same as <code>self.to_superset</code> but without any property checks. Always succeeds.</p>
</div><h4 id='method.from_superset-1' class="method hidden"><code id='from_superset.v-1'>fn <a href='../../alga/general/subset/trait.SubsetOf.html#method.from_superset' class='fnname'>from_superset</a>(element: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/alga/general/subset.rs.html#32-38' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inverse inclusion map: attempts to construct <code>self</code> from the equivalent element of its superset. <a href="../../alga/general/subset/trait.SubsetOf.html#method.from_superset">Read more</a></p>
</div></div><h3 id='impl-MeetSemilattice' class='impl'><code class='in-band'>impl&lt;N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/general/lattice/trait.MeetSemilattice.html" title="trait alga::general::lattice::MeetSemilattice">MeetSemilattice</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/lattice/trait.MeetSemilattice.html" title="trait alga::general::lattice::MeetSemilattice">MeetSemilattice</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-MeetSemilattice' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_alga.rs.html#50-59' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.meet' class="method hidden"><code id='meet.v'>fn <a href='../../alga/general/lattice/trait.MeetSemilattice.html#tymethod.meet' class='fnname'>meet</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_alga.rs.html#56-58' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the meet (aka. infimum) of two values.</p>
</div></div><h3 id='impl-Lattice' class='impl'><code class='in-band'>impl&lt;N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/general/lattice/trait.Lattice.html" title="trait alga::general::lattice::Lattice">Lattice</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/base/trait.Scalar.html" title="trait nalgebra::base::Scalar">Scalar</a> + <a class="trait" href="../../alga/general/lattice/trait.Lattice.html" title="trait alga::general::lattice::Lattice">Lattice</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Lattice' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/point_alga.rs.html#72-83' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.meet_join' class="method hidden"><code id='meet_join.v'>fn <a href='../../alga/general/lattice/trait.Lattice.html#method.meet_join' class='fnname'>meet_join</a>(&amp;self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_alga.rs.html#78-82' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Returns the infimum and the supremum simultaneously.</p>
</div><h4 id='method.partial_min' class="method hidden"><code id='partial_min.v'>fn <a href='../../alga/general/lattice/trait.Lattice.html#method.partial_min' class='fnname'>partial_min</a>(&amp;'a self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>Self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>Self&gt;</code><a class='srclink' href='../../src/alga/general/lattice.rs.html#27-36' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Return the minimum of <code>self</code> and <code>other</code> if they are comparable.</p>
</div><h4 id='method.partial_max' class="method hidden"><code id='partial_max.v'>fn <a href='../../alga/general/lattice/trait.Lattice.html#method.partial_max' class='fnname'>partial_max</a>(&amp;'a self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>Self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>Self&gt;</code><a class='srclink' href='../../src/alga/general/lattice.rs.html#40-49' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Return the maximum of <code>self</code> and <code>other</code> if they are comparable.</p>
</div><h4 id='method.partial_sort2' class="method hidden"><code id='partial_sort2.v'>fn <a href='../../alga/general/lattice/trait.Lattice.html#method.partial_sort2' class='fnname'>partial_sort2</a>(&amp;'a self, other: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>Self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>Self, <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a>&gt;</code><a class='srclink' href='../../src/alga/general/lattice.rs.html#53-62' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Sorts two values in increasing order using a partial ordering.</p>
</div><h4 id='method.partial_clamp' class="method hidden"><code id='partial_clamp.v'>fn <a href='../../alga/general/lattice/trait.Lattice.html#method.partial_clamp' class='fnname'>partial_clamp</a>(&amp;'a self, min: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>Self, max: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>Self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;'a </a>Self&gt;</code><a class='srclink' href='../../src/alga/general/lattice.rs.html#67-79' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Clamp <code>value</code> between <code>min</code> and <code>max</code>. Returns <code>None</code> if <code>value</code> is not comparable to <code>min</code> or <code>max</code>. <a href="../../alga/general/lattice/trait.Lattice.html#method.partial_clamp">Read more</a></p>
</div></div><h3 id='impl-ProjectiveTransformation%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.ProjectiveTransformation.html" title="trait alga::linear::transformation::ProjectiveTransformation">ProjectiveTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-ProjectiveTransformation%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#87-99' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.inverse_transform_point' class="method hidden"><code id='inverse_transform_point.v'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_point' class='fnname'>inverse_transform_point</a>(&amp;self, pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#91-93' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a point from the euclidean space.</p>
</div><h4 id='method.inverse_transform_vector' class="method hidden"><code id='inverse_transform_vector.v'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector' class='fnname'>inverse_transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#96-98' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector">Read more</a></p>
</div></div><h3 id='impl-ProjectiveTransformation%3CPoint%3CN%2C%20U3%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.ProjectiveTransformation.html" title="trait alga::linear::transformation::ProjectiveTransformation">ProjectiveTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt;</code><a href='#impl-ProjectiveTransformation%3CPoint%3CN%2C%20U3%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#212-222' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.inverse_transform_point-1' class="method hidden"><code id='inverse_transform_point.v-1'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_point' class='fnname'>inverse_transform_point</a>(&amp;self, pt: &amp;<a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#214-216' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a point from the euclidean space.</p>
</div><h4 id='method.inverse_transform_vector-1' class="method hidden"><code id='inverse_transform_vector.v-1'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector' class='fnname'>inverse_transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.Vector3.html" title="type nalgebra::base::Vector3">Vector3</a>&lt;N&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.Vector3.html" title="type nalgebra::base::Vector3">Vector3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#219-221' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector">Read more</a></p>
</div></div><h3 id='impl-ProjectiveTransformation%3CPoint%3CN%2C%20U2%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.ProjectiveTransformation.html" title="trait alga::linear::transformation::ProjectiveTransformation">ProjectiveTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;,&nbsp;</span></code><a href='#impl-ProjectiveTransformation%3CPoint%3CN%2C%20U2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#75-87' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.inverse_transform_point-2' class="method hidden"><code id='inverse_transform_point.v-2'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_point' class='fnname'>inverse_transform_point</a>(&amp;self, pt: &amp;<a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#79-81' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a point from the euclidean space.</p>
</div><h4 id='method.inverse_transform_vector-2' class="method hidden"><code id='inverse_transform_vector.v-2'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector' class='fnname'>inverse_transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.Vector2.html" title="type nalgebra::base::Vector2">Vector2</a>&lt;N&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.Vector2.html" title="type nalgebra::base::Vector2">Vector2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#84-86' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector">Read more</a></p>
</div></div><h3 id='impl-ProjectiveTransformation%3CPoint%3CN%2C%20D%3E%3E-1' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.ProjectiveTransformation.html" title="trait alga::linear::transformation::ProjectiveTransformation">ProjectiveTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-ProjectiveTransformation%3CPoint%3CN%2C%20D%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#88-100' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.inverse_transform_point-3' class="method hidden"><code id='inverse_transform_point.v-3'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_point' class='fnname'>inverse_transform_point</a>(&amp;self, pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#92-94' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a point from the euclidean space.</p>
</div><h4 id='method.inverse_transform_vector-3' class="method hidden"><code id='inverse_transform_vector.v-3'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector' class='fnname'>inverse_transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#97-99' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector">Read more</a></p>
</div></div><h3 id='impl-ProjectiveTransformation%3CPoint%3CN%2C%20D%3E%3E-2' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="../../alga/linear/transformation/trait.ProjectiveTransformation.html" title="trait alga::linear::transformation::ProjectiveTransformation">ProjectiveTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Isometry.html" title="struct nalgebra::geometry::Isometry">Isometry</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-ProjectiveTransformation%3CPoint%3CN%2C%20D%3E%3E-2' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#97-111' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.inverse_transform_point-4' class="method hidden"><code id='inverse_transform_point.v-4'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_point' class='fnname'>inverse_transform_point</a>(&amp;self, pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#103-105' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a point from the euclidean space.</p>
</div><h4 id='method.inverse_transform_vector-4' class="method hidden"><code id='inverse_transform_vector.v-4'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector' class='fnname'>inverse_transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#108-110' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector">Read more</a></p>
</div></div><h3 id='impl-ProjectiveTransformation%3CPoint%3CN%2C%20D%3E%3E-3' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="../../alga/linear/transformation/trait.ProjectiveTransformation.html" title="trait alga::linear::transformation::ProjectiveTransformation">ProjectiveTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Similarity.html" title="struct nalgebra::geometry::Similarity">Similarity</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-ProjectiveTransformation%3CPoint%3CN%2C%20D%3E%3E-3' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#94-108' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.inverse_transform_point-5' class="method hidden"><code id='inverse_transform_point.v-5'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_point' class='fnname'>inverse_transform_point</a>(&amp;self, pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#100-102' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a point from the euclidean space.</p>
</div><h4 id='method.inverse_transform_vector-5' class="method hidden"><code id='inverse_transform_vector.v-5'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector' class='fnname'>inverse_transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#105-107' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector">Read more</a></p>
</div></div><h3 id='impl-ProjectiveTransformation%3CPoint%3CN%2C%20D%3E%3E-4' class='impl'><code class='in-band'>impl&lt;N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, C&gt; <a class="trait" href="../../alga/linear/transformation/trait.ProjectiveTransformation.html" title="trait alga::linear::transformation::ProjectiveTransformation">ProjectiveTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Transform.html" title="struct nalgebra::geometry::Transform">Transform</a>&lt;N, D, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../../nalgebra/geometry/trait.SubTCategoryOf.html" title="trait nalgebra::geometry::SubTCategoryOf">SubTCategoryOf</a>&lt;<a class="enum" href="../../nalgebra/geometry/enum.TProjective.html" title="enum nalgebra::geometry::TProjective">TProjective</a>&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-ProjectiveTransformation%3CPoint%3CN%2C%20D%3E%3E-4' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/transform_alga.rs.html#108-126' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.inverse_transform_point-6' class="method hidden"><code id='inverse_transform_point.v-6'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_point' class='fnname'>inverse_transform_point</a>(&amp;self, pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/transform_alga.rs.html#118-120' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a point from the euclidean space.</p>
</div><h4 id='method.inverse_transform_vector-6' class="method hidden"><code id='inverse_transform_vector.v-6'>fn <a href='../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector' class='fnname'>inverse_transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/transform_alga.rs.html#123-125' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's two_sided_inverse action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.ProjectiveTransformation.html#tymethod.inverse_transform_vector">Read more</a></p>
</div></div><h3 id='impl-Rotation%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Rotation%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#176-199' title='goto source code'>[src]</a></h3><div class='docblock'><p>Subgroups of the n-dimensional rotation group <code>SO(n)</code>.</p>
</div><div class='impl-items'><h4 id='method.powf' class="method hidden"><code id='powf.v'>fn <a href='../../alga/linear/transformation/trait.Rotation.html#tymethod.powf' class='fnname'>powf</a>(&amp;self, _: N) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#180-184' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Raises this rotation to a power. If this is a simple rotation, the result must be equivalent to multiplying the rotation angle by <code>n</code>. <a href="../../alga/linear/transformation/trait.Rotation.html#tymethod.powf">Read more</a></p>
</div><h4 id='method.rotation_between' class="method hidden"><code id='rotation_between.v'>fn <a href='../../alga/linear/transformation/trait.Rotation.html#tymethod.rotation_between' class='fnname'>rotation_between</a>(_: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;, _: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#187-191' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Computes a simple rotation that makes the angle between <code>a</code> and <code>b</code> equal to zero, i.e., <code>b.angle(a * delta_rotation(a, b)) = 0</code>. If <code>a</code> and <code>b</code> are collinear, the computed rotation may not be unique. Returns <code>None</code> if no such simple rotation exists in the subgroup represented by <code>Self</code>. <a href="../../alga/linear/transformation/trait.Rotation.html#tymethod.rotation_between">Read more</a></p>
</div><h4 id='method.scaled_rotation_between' class="method hidden"><code id='scaled_rotation_between.v'>fn <a href='../../alga/linear/transformation/trait.Rotation.html#tymethod.scaled_rotation_between' class='fnname'>scaled_rotation_between</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;_: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;, <br>&nbsp;&nbsp;&nbsp;&nbsp;_: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;, <br>&nbsp;&nbsp;&nbsp;&nbsp;_: N<br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#194-198' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Computes the rotation between <code>a</code> and <code>b</code> and raises it to the power <code>n</code>. <a href="../../alga/linear/transformation/trait.Rotation.html#tymethod.scaled_rotation_between">Read more</a></p>
</div></div><h3 id='impl-Rotation%3CPoint%3CN%2C%20U3%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt;</code><a href='#impl-Rotation%3CPoint%3CN%2C%20U3%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#292-307' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.powf-1' class="method hidden"><code id='powf.v-1'>fn <a href='../../alga/linear/transformation/trait.Rotation.html#tymethod.powf' class='fnname'>powf</a>(&amp;self, n: N) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#294-296' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Raises this rotation to a power. If this is a simple rotation, the result must be equivalent to multiplying the rotation angle by <code>n</code>. <a href="../../alga/linear/transformation/trait.Rotation.html#tymethod.powf">Read more</a></p>
</div><h4 id='method.rotation_between-1' class="method hidden"><code id='rotation_between.v-1'>fn <a href='../../alga/linear/transformation/trait.Rotation.html#tymethod.rotation_between' class='fnname'>rotation_between</a>(a: &amp;<a class="type" href="../../nalgebra/base/type.Vector3.html" title="type nalgebra::base::Vector3">Vector3</a>&lt;N&gt;, b: &amp;<a class="type" href="../../nalgebra/base/type.Vector3.html" title="type nalgebra::base::Vector3">Vector3</a>&lt;N&gt;) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#299-301' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Computes a simple rotation that makes the angle between <code>a</code> and <code>b</code> equal to zero, i.e., <code>b.angle(a * delta_rotation(a, b)) = 0</code>. If <code>a</code> and <code>b</code> are collinear, the computed rotation may not be unique. Returns <code>None</code> if no such simple rotation exists in the subgroup represented by <code>Self</code>. <a href="../../alga/linear/transformation/trait.Rotation.html#tymethod.rotation_between">Read more</a></p>
</div><h4 id='method.scaled_rotation_between-1' class="method hidden"><code id='scaled_rotation_between.v-1'>fn <a href='../../alga/linear/transformation/trait.Rotation.html#tymethod.scaled_rotation_between' class='fnname'>scaled_rotation_between</a>(a: &amp;<a class="type" href="../../nalgebra/base/type.Vector3.html" title="type nalgebra::base::Vector3">Vector3</a>&lt;N&gt;, b: &amp;<a class="type" href="../../nalgebra/base/type.Vector3.html" title="type nalgebra::base::Vector3">Vector3</a>&lt;N&gt;, s: N) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#304-306' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Computes the rotation between <code>a</code> and <code>b</code> and raises it to the power <code>n</code>. <a href="../../alga/linear/transformation/trait.Rotation.html#tymethod.scaled_rotation_between">Read more</a></p>
</div></div><h3 id='impl-Rotation%3CPoint%3CN%2C%20U2%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;,&nbsp;</span></code><a href='#impl-Rotation%3CPoint%3CN%2C%20U2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#162-179' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.powf-2' class="method hidden"><code id='powf.v-2'>fn <a href='../../alga/linear/transformation/trait.Rotation.html#tymethod.powf' class='fnname'>powf</a>(&amp;self, n: N) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#166-168' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Raises this rotation to a power. If this is a simple rotation, the result must be equivalent to multiplying the rotation angle by <code>n</code>. <a href="../../alga/linear/transformation/trait.Rotation.html#tymethod.powf">Read more</a></p>
</div><h4 id='method.rotation_between-2' class="method hidden"><code id='rotation_between.v-2'>fn <a href='../../alga/linear/transformation/trait.Rotation.html#tymethod.rotation_between' class='fnname'>rotation_between</a>(a: &amp;<a class="type" href="../../nalgebra/base/type.Vector2.html" title="type nalgebra::base::Vector2">Vector2</a>&lt;N&gt;, b: &amp;<a class="type" href="../../nalgebra/base/type.Vector2.html" title="type nalgebra::base::Vector2">Vector2</a>&lt;N&gt;) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#171-173' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Computes a simple rotation that makes the angle between <code>a</code> and <code>b</code> equal to zero, i.e., <code>b.angle(a * delta_rotation(a, b)) = 0</code>. If <code>a</code> and <code>b</code> are collinear, the computed rotation may not be unique. Returns <code>None</code> if no such simple rotation exists in the subgroup represented by <code>Self</code>. <a href="../../alga/linear/transformation/trait.Rotation.html#tymethod.rotation_between">Read more</a></p>
</div><h4 id='method.scaled_rotation_between-2' class="method hidden"><code id='scaled_rotation_between.v-2'>fn <a href='../../alga/linear/transformation/trait.Rotation.html#tymethod.scaled_rotation_between' class='fnname'>scaled_rotation_between</a>(a: &amp;<a class="type" href="../../nalgebra/base/type.Vector2.html" title="type nalgebra::base::Vector2">Vector2</a>&lt;N&gt;, b: &amp;<a class="type" href="../../nalgebra/base/type.Vector2.html" title="type nalgebra::base::Vector2">Vector2</a>&lt;N&gt;, s: N) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#176-178' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Computes the rotation between <code>a</code> and <code>b</code> and raises it to the power <code>n</code>. <a href="../../alga/linear/transformation/trait.Rotation.html#tymethod.scaled_rotation_between">Read more</a></p>
</div></div><h3 id='impl-Transformation%3CPoint%3CN%2C%20%3CD%20as%20DimNameSub%3CU1%3E%3E%3A%3AOutput%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimNameSub.html" title="trait nalgebra::base::dimension::DimNameSub">DimNameSub</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; <a class="trait" href="../../alga/linear/transformation/trait.Transformation.html" title="trait alga::linear::transformation::Transformation">Transformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, &lt;D as <a class="trait" href="../../nalgebra/base/dimension/trait.DimNameSub.html" title="trait nalgebra::base::dimension::DimNameSub">DimNameSub</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;::<a class="type" href="../../nalgebra/base/dimension/trait.DimNameSub.html#associatedtype.Output" title="type nalgebra::base::dimension::DimNameSub::Output">Output</a>&gt;&gt; for <a class="type" href="../../nalgebra/base/type.MatrixN.html" title="type nalgebra::base::MatrixN">MatrixN</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameDiff.html" title="type nalgebra::base::dimension::DimNameDiff">DimNameDiff</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameDiff.html" title="type nalgebra::base::dimension::DimNameDiff">DimNameDiff</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="type" href="../../nalgebra/base/dimension/type.DimNameDiff.html" title="type nalgebra::base::dimension::DimNameDiff">DimNameDiff</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;,&nbsp;</span></code><a href='#impl-Transformation%3CPoint%3CN%2C%20%3CD%20as%20DimNameSub%3CU1%3E%3E%3A%3AOutput%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/base/cg.rs.html#368-386' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.transform_vector' class="method hidden"><code id='transform_vector.v'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector' class='fnname'>transform_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameDiff.html" title="type nalgebra::base::dimension::DimNameDiff">DimNameDiff</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;<br>) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, <a class="type" href="../../nalgebra/base/dimens
</div><h4 id='method.transform_point' class="method hidden"><code id='transform_point.v'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_point' class='fnname'>transform_point</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameDiff.html" title="type nalgebra::base::dimension::DimNameDiff">DimNameDiff</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;<br>) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameDiff.html" title="type nalgebra::base::dimension::DimNameDiff">DimNameDiff</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt;</code><a class='srclink' href='../../src/nalgebra/base/cg.rs.html#383-385' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a point from the euclidean space.</p>
</div></div><h3 id='impl-Transformation%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Transformation.html" title="trait alga::linear::transformation::Transformation">Transformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Transformation%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#73-85' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.transform_point-1' class="method hidden"><code id='transform_point.v-1'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_point' class='fnname'>transform_point</a>(&amp;self, pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#77-79' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a point from the euclidean space.</p>
</div><h4 id='method.transform_vector-1' class="method hidden"><code id='transform_vector.v-1'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector' class='fnname'>transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#82-84' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector">Read more</a></p>
</div></div><h3 id='impl-Transformation%3CPoint%3CN%2C%20U3%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Transformation.html" title="trait alga::linear::transformation::Transformation">Transformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt;</code><a href='#impl-Transformation%3CPoint%3CN%2C%20U3%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#200-210' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.transform_point-2' class="method hidden"><code id='transform_point.v-2'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_point' class='fnname'>transform_point</a>(&amp;self, pt: &amp;<a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point3.html" title="type nalgebra::geometry::Point3">Point3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#202-204' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a point from the euclidean space.</p>
</div><h4 id='method.transform_vector-2' class="method hidden"><code id='transform_vector.v-2'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector' class='fnname'>transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.Vector3.html" title="type nalgebra::base::Vector3">Vector3</a>&lt;N&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.Vector3.html" title="type nalgebra::base::Vector3">Vector3</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#207-209' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector">Read more</a></p>
</div></div><h3 id='impl-Transformation%3CPoint%3CN%2C%20U2%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Transformation.html" title="trait alga::linear::transformation::Transformation">Transformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;,&nbsp;</span></code><a href='#impl-Transformation%3CPoint%3CN%2C%20U2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#61-73' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.transform_point-3' class="method hidden"><code id='transform_point.v-3'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_point' class='fnname'>transform_point</a>(&amp;self, pt: &amp;<a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;) -&gt; <a class="type" href="../../nalgebra/geometry/type.Point2.html" title="type nalgebra::geometry::Point2">Point2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#65-67' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a point from the euclidean space.</p>
</div><h4 id='method.transform_vector-3' class="method hidden"><code id='transform_vector.v-3'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector' class='fnname'>transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.Vector2.html" title="type nalgebra::base::Vector2">Vector2</a>&lt;N&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.Vector2.html" title="type nalgebra::base::Vector2">Vector2</a>&lt;N&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#70-72' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector">Read more</a></p>
</div></div><h3 id='impl-Transformation%3CPoint%3CN%2C%20D%3E%3E-1' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Transformation.html" title="trait alga::linear::transformation::Transformation">Transformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Transformation%3CPoint%3CN%2C%20D%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#74-86' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.transform_point-4' class="method hidden"><code id='transform_point.v-4'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_point' class='fnname'>transform_point</a>(&amp;self, pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#78-80' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a point from the euclidean space.</p>
</div><h4 id='method.transform_vector-4' class="method hidden"><code id='transform_vector.v-4'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector' class='fnname'>transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#83-85' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector">Read more</a></p>
</div></div><h3 id='impl-Transformation%3CPoint%3CN%2C%20D%3E%3E-2' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="../../alga/linear/transformation/trait.Transformation.html" title="trait alga::linear::transformation::Transformation">Transformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Isometry.html" title="struct nalgebra::geometry::Isometry">Isometry</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Transformation%3CPoint%3CN%2C%20D%3E%3E-2' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#81-95' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.transform_point-5' class="method hidden"><code id='transform_point.v-5'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_point' class='fnname'>transform_point</a>(&amp;self, pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#87-89' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a point from the euclidean space.</p>
</div><h4 id='method.transform_vector-5' class="method hidden"><code id='transform_vector.v-5'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector' class='fnname'>transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#92-94' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector">Read more</a></p>
</div></div><h3 id='impl-Transformation%3CPoint%3CN%2C%20D%3E%3E-3' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="../../alga/linear/transformation/trait.Transformation.html" title="trait alga::linear::transformation::Transformation">Transformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Similarity.html" title="struct nalgebra::geometry::Similarity">Similarity</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Transformation%3CPoint%3CN%2C%20D%3E%3E-3' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#78-92' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.transform_point-6' class="method hidden"><code id='transform_point.v-6'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_point' class='fnname'>transform_point</a>(&amp;self, pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#84-86' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a point from the euclidean space.</p>
</div><h4 id='method.transform_vector-6' class="method hidden"><code id='transform_vector.v-6'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector' class='fnname'>transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#89-91' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector">Read more</a></p>
</div></div><h3 id='impl-Transformation%3CPoint%3CN%2C%20D%3E%3E-4' class='impl'><code class='in-band'>impl&lt;N, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimNameAdd.html" title="trait nalgebra::base::dimension::DimNameAdd">DimNameAdd</a>&lt;<a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, C&gt; <a class="trait" href="../../alga/linear/transformation/trait.Transformation.html" title="trait alga::linear::transformation::Transformation">Transformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Transform.html" title="struct nalgebra::geometry::Transform">Transform</a>&lt;N, D, C&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;N: <a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;C: <a class="trait" href="../../nalgebra/geometry/trait.TCategory.html" title="trait nalgebra::geometry::TCategory">TCategory</a>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="type" href="../../nalgebra/base/dimension/type.DimNameSum.html" title="type nalgebra::base::dimension::DimNameSum">DimNameSum</a>&lt;D, <a class="struct" href="../../nalgebra/base/dimension/struct.U1.html" title="struct nalgebra::base::dimension::U1">U1</a>&gt;&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Transformation%3CPoint%3CN%2C%20D%3E%3E-4' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/transform_alga.rs.html#88-106' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.transform_point-7' class="method hidden"><code id='transform_point.v-7'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_point' class='fnname'>transform_point</a>(&amp;self, pt: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/transform_alga.rs.html#98-100' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a point from the euclidean space.</p>
</div><h4 id='method.transform_vector-7' class="method hidden"><code id='transform_vector.v-7'>fn <a href='../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector' class='fnname'>transform_vector</a>(&amp;self, v: &amp;<a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/transform_alga.rs.html#103-105' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this group's action on a vector from the euclidean space. <a href="../../alga/linear/transformation/trait.Transformation.html#tymethod.transform_vector">Read more</a></p>
</div></div><h3 id='impl-DirectIsometry%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.DirectIsometry.html" title="trait alga::linear::transformation::DirectIsometry">DirectIsometry</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-DirectIsometry%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#167-169' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-DirectIsometry%3CPoint%3CN%2C%20U3%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.DirectIsometry.html" title="trait alga::linear::transformation::DirectIsometry">DirectIsometry</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt;</code><a href='#impl-DirectIsometry%3CPoint%3CN%2C%20U3%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#286' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-DirectIsometry%3CPoint%3CN%2C%20U2%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.DirectIsometry.html" title="trait alga::linear::transformation::DirectIsometry">DirectIsometry</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;,&nbsp;</span></code><a href='#impl-DirectIsometry%3CPoint%3CN%2C%20U2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex
</div><h4 id='associatedtype.RealField' class="type"><code id='RealField.t'>type <a href='../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.RealField' class="type">RealField</a> = N</code></h4><div class='docblock'><p>The underlying reals.</p>
</div><h4 id='method.origin-1' class="method hidden"><code id='origin.v-1'>fn <a href='../../alga/linear/vector/trait.EuclideanSpace.html#tymethod.origin' class='fnname'>origin</a>() -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_alga.rs.html#25-27' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The preferred origin of this euclidean space. <a href="../../alga/linear/vector/trait.EuclideanSpace.html#tymethod.origin">Read more</a></p>
</div><h4 id='method.coordinates' class="method hidden"><code id='coordinates.v'>fn <a href='../../alga/linear/vector/trait.EuclideanSpace.html#method.coordinates' class='fnname'>coordinates</a>(&amp;self) -&gt; Self::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/nalgebra/geometry/point_alga.rs.html#30-32' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The coordinates of this point, i.e., the translation from the origin.</p>
</div><h4 id='method.from_coordinates-1' class="method hidden"><code id='from_coordinates.v-1'>fn <a href='../../alga/linear/vector/trait.EuclideanSpace.html#method.from_coordinates' class='fnname'>from_coordinates</a>(coords: Self::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_alga.rs.html#35-37' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Builds a point from its coordinates relative to the origin.</p>
</div><h4 id='method.scale_by' class="method hidden"><code id='scale_by.v'>fn <a href='../../alga/linear/vector/trait.EuclideanSpace.html#method.scale_by' class='fnname'>scale_by</a>(&amp;self, n: N) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/point_alga.rs.html#40-42' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Multiplies the distance of this point to <code>Self::origin()</code> by <code>s</code>. <a href="../../alga/linear/vector/trait.EuclideanSpace.html#method.scale_by">Read more</a></p>
</div><h4 id='method.distance_squared' class="method hidden"><code id='distance_squared.v'>fn <a href='../../alga/linear/vector/trait.EuclideanSpace.html#method.distance_squared' class='fnname'>distance_squared</a>(&amp;self, b: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; Self::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.RealField" title="type alga::linear::vector::EuclideanSpace::RealField">RealField</a></code><a class='srclink' href='../../src/alga/linear/vector.rs.html#215-217' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The distance between two points.</p>
</div><h4 id='method.distance' class="method hidden"><code id='distance.v'>fn <a href='../../alga/linear/vector/trait.EuclideanSpace.html#method.distance' class='fnname'>distance</a>(&amp;self, b: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; Self::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.RealField" title="type alga::linear::vector::EuclideanSpace::RealField">RealField</a></code><a class='srclink' href='../../src/alga/linear/vector.rs.html#221-223' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The distance between two points.</p>
</div></div><h3 id='impl-Similarity%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Similarity.html" title="trait alga::linear::transformation::Similarity">Similarity</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Similarity%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#144-163' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Scaling' class="type"><code id='Scaling.t'>type <a href='../../alga/linear/transformation/trait.Similarity.html#associatedtype.Scaling' class="type">Scaling</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>The type of the pure (uniform) scaling part of this similarity transformation.</p>
</div><h4 id='method.translation' class="method hidden"><code id='translation.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.translation' class='fnname'>translation</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#150-152' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure translational component of this similarity transformation.</p>
</div><h4 id='method.rotation' class="method hidden"><code id='rotation.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.rotation' class='fnname'>rotation</a>(&amp;self) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#155-157' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure rotational component of this similarity transformation.</p>
</div><h4 id='method.scaling' class="method hidden"><code id='scaling.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.scaling' class='fnname'>scaling</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#160-162' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure scaling component of this similarity transformation.</p>
</div><h4 id='method.translate_point' class="method hidden"><code id='translate_point.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.translate_point' class='fnname'>translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#124-126' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure translational part to a point.</p>
</div><h4 id='method.rotate_point' class="method hidden"><code id='rotate_point.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_point' class='fnname'>rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a point.</p>
</div><h4 id='method.scale_point' class="method hidden"><code id='scale_point.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_point' class='fnname'>scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#136-138' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a point.</p>
</div><h4 id='method.rotate_vector' class="method hidden"><code id='rotate_vector.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_vector' class='fnname'>rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#142-144' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a vector.</p>
</div><h4 id='method.scale_vector' class="method hidden"><code id='scale_vector.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_vector' class='fnname'>scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#148-150' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a vector.</p>
</div><h4 id='method.inverse_translate_point' class="method hidden"><code id='inverse_translate_point.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_translate_point' class='fnname'>inverse_translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#157-159' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure translational part to a point.</p>
</div><h4 id='method.inverse_rotate_point' class="method hidden"><code id='inverse_rotate_point.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_point' class='fnname'>inverse_rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#163-165' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a point.</p>
</div><h4 id='method.inverse_scale_point' class="method hidden"><code id='inverse_scale_point.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_point' class='fnname'>inverse_scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#169-171' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a point.</p>
</div><h4 id='method.inverse_rotate_vector' class="method hidden"><code id='inverse_rotate_vector.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_vector' class='fnname'>inverse_rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#175-177' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a vector.</p>
</div><h4 id='method.inverse_scale_vector' class="method hidden"><code id='inverse_scale_vector.v'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_vector' class='fnname'>inverse_scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#181-183' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a vector.</p>
</div></div><h3 id='impl-Similarity%3CPoint%3CN%2C%20U3%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Similarity.html" title="trait alga::linear::transformation::Similarity">Similarity</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt;</code><a href='#impl-Similarity%3CPoint%3CN%2C%20U3%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#265-282' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Scaling-1' class="type"><code id='Scaling.t-1'>type <a href='../../alga/linear/transformation/trait.Similarity.html#associatedtype.Scaling' class="type">Scaling</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>The type of the pure (uniform) scaling part of this similarity transformation.</p>
</div><h4 id='method.translation-1' class="method hidden"><code id='translation.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.translation' class='fnname'>translation</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#269-271' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure translational component of this similarity transformation.</p>
</div><h4 id='method.rotation-1' class="method hidden"><code id='rotation.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.rotation' class='fnname'>rotation</a>(&amp;self) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#274-276' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure rotational component of this similarity transformation.</p>
</div><h4 id='method.scaling-1' class="method hidden"><code id='scaling.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.scaling' class='fnname'>scaling</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#279-281' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure scaling component of this similarity transformation.</p>
</div><h4 id='method.translate_point-1' class="method hidden"><code id='translate_point.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.translate_point' class='fnname'>translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#124-126' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure translational part to a point.</p>
</div><h4 id='method.rotate_point-1' class="method hidden"><code id='rotate_point.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_point' class='fnname'>rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a point.</p>
</div><h4 id='method.scale_point-1' class="method hidden"><code id='scale_point.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_point' class='fnname'>scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#136-138' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a point.</p>
</div><h4 id='method.rotate_vector-1' class="method hidden"><code id='rotate_vector.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_vector' class='fnname'>rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#142-144' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a vector.</p>
</div><h4 id='method.scale_vector-1' class="method hidden"><code id='scale_vector.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_vector' class='fnname'>scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#148-150' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a vector.</p>
</div><h4 id='method.inverse_translate_point-1' class="method hidden"><code id='inverse_translate_point.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_translate_point' class='fnname'>inverse_translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#157-159' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure translational part to a point.</p>
</div><h4 id='method.inverse_rotate_point-1' class="method hidden"><code id='inverse_rotate_point.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_point' class='fnname'>inverse_rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#163-165' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a point.</p>
</div><h4 id='method.inverse_scale_point-1' class="method hidden"><code id='inverse_scale_point.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_point' class='fnname'>inverse_scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#169-171' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a point.</p>
</div><h4 id='method.inverse_rotate_vector-1' class="method hidden"><code id='inverse_rotate_vector.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_vector' class='fnname'>inverse_rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#175-177' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a vector.</p>
</div><h4 id='method.inverse_scale_vector-1' class="method hidden"><code id='inverse_scale_vector.v-1'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_vector' class='fnname'>inverse_scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#181-183' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a vector.</p>
</div></div><h3 id='impl-Similarity%3CPoint%3CN%2C%20U2%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Similarity.html" title="trait alga::linear::transformation::Similarity">Similarity</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;,&nbsp;</span></code><a href='#impl-Similarity%3CPoint%3CN%2C%20U2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#132-151' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Scaling-2' class="type"><code id='Scaling.t-2'>type <a href='../../alga/linear/transformation/trait.Similarity.html#associatedtype.Scaling' class="type">Scaling</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>The type of the pure (uniform) scaling part of this similarity transformation.</p>
</div><h4 id='method.translation-2' class="method hidden"><code id='translation.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.translation' class='fnname'>translation</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#138-140' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure translational component of this similarity transformation.</p>
</div><h4 id='method.rotation-2' class="method hidden"><code id='rotation.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.rotation' class='fnname'>rotation</a>(&amp;self) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#143-145' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure rotational component of this similarity transformation.</p>
</div><h4 id='method.scaling-2' class="method hidden"><code id='scaling.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.scaling' class='fnname'>scaling</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#148-150' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure scaling component of this similarity transformation.</p>
</div><h4 id='method.translate_point-2' class="method hidden"><code id='translate_point.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.translate_point' class='fnname'>translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#124-126' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure translational part to a point.</p>
</div><h4 id='method.rotate_point-2' class="method hidden"><code id='rotate_point.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_point' class='fnname'>rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a point.</p>
</div><h4 id='method.scale_point-2' class="method hidden"><code id='scale_point.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_point' class='fnname'>scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#136-138' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a point.</p>
</div><h4 id='method.rotate_vector-2' class="method hidden"><code id='rotate_vector.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_vector' class='fnname'>rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#142-144' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a vector.</p>
</div><h4 id='method.scale_vector-2' class="method hidden"><code id='scale_vector.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_vector' class='fnname'>scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#148-150' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a vector.</p>
</div><h4 id='method.inverse_translate_point-2' class="method hidden"><code id='inverse_translate_point.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_translate_point' class='fnname'>inverse_translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#157-159' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure translational part to a point.</p>
</div><h4 id='method.inverse_rotate_point-2' class="method hidden"><code id='inverse_rotate_point.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_point' class='fnname'>inverse_rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#163-165' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a point.</p>
</div><h4 id='method.inverse_scale_point-2' class="method hidden"><code id='inverse_scale_point.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_point' class='fnname'>inverse_scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#169-171' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a point.</p>
</div><h4 id='method.inverse_rotate_vector-2' class="method hidden"><code id='inverse_rotate_vector.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_vector' class='fnname'>inverse_rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#175-177' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a vector.</p>
</div><h4 id='method.inverse_scale_vector-2' class="method hidden"><code id='inverse_scale_vector.v-2'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_vector' class='fnname'>inverse_scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#181-183' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a vector.</p>
</div></div><h3 id='impl-Similarity%3CPoint%3CN%2C%20D%3E%3E-1' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Similarity.html" title="trait alga::linear::transformation::Similarity">Similarity</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Similarity%3CPoint%3CN%2C%20D%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#145-164' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Scaling-3' class="type"><code id='Scaling.t-3'>type <a href='../../alga/linear/transformation/trait.Similarity.html#associatedtype.Scaling' class="type">Scaling</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>The type of the pure (uniform) scaling part of this similarity transformation.</p>
</div><h4 id='method.translation-3' class="method hidden"><code id='translation.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.translation' class='fnname'>translation</a>(&amp;self) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#151-153' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure translational component of this similarity transformation.</p>
</div><h4 id='method.rotation-3' class="method hidden"><code id='rotation.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.rotation' class='fnname'>rotation</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#156-158' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure rotational component of this similarity transformation.</p>
</div><h4 id='method.scaling-3' class="method hidden"><code id='scaling.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.scaling' class='fnname'>scaling</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#161-163' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure scaling component of this similarity transformation.</p>
</div><h4 id='method.translate_point-3' class="method hidden"><code id='translate_point.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.translate_point' class='fnname'>translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#124-126' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure translational part to a point.</p>
</div><h4 id='method.rotate_point-3' class="method hidden"><code id='rotate_point.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_point' class='fnname'>rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a point.</p>
</div><h4 id='method.scale_point-3' class="method hidden"><code id='scale_point.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_point' class='fnname'>scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#136-138' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a point.</p>
</div><h4 id='method.rotate_vector-3' class="method hidden"><code id='rotate_vector.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_vector' class='fnname'>rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#142-144' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a vector.</p>
</div><h4 id='method.scale_vector-3' class="method hidden"><code id='scale_vector.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_vector' class='fnname'>scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#148-150' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a vector.</p>
</div><h4 id='method.inverse_translate_point-3' class="method hidden"><code id='inverse_translate_point.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_translate_point' class='fnname'>inverse_translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#157-159' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure translational part to a point.</p>
</div><h4 id='method.inverse_rotate_point-3' class="method hidden"><code id='inverse_rotate_point.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_point' class='fnname'>inverse_rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#163-165' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a point.</p>
</div><h4 id='method.inverse_scale_point-3' class="method hidden"><code id='inverse_scale_point.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_point' class='fnname'>inverse_scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#169-171' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a point.</p>
</div><h4 id='method.inverse_rotate_vector-3' class="method hidden"><code id='inverse_rotate_vector.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_vector' class='fnname'>inverse_rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#175-177' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a vector.</p>
</div><h4 id='method.inverse_scale_vector-3' class="method hidden"><code id='inverse_scale_vector.v-3'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_vector' class='fnname'>inverse_scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#181-183' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a vector.</p>
</div></div><h3 id='impl-Similarity%3CPoint%3CN%2C%20D%3E%3E-2' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="../../alga/linear/transformation/trait.Similarity.html" title="trait alga::linear::transformation::Similarity">Similarity</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Isometry.html" title="struct nalgebra::geometry::Isometry">Isometry</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Similarity%3CPoint%3CN%2C%20D%3E%3E-2' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#171-192' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Scaling-4' class="type"><code id='Scaling.t-4'>type <a href='../../alga/linear/transformation/trait.Similarity.html#associatedtype.Scaling' class="type">Scaling</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>The type of the pure (uniform) scaling part of this similarity transformation.</p>
</div><h4 id='method.translation-4' class="method hidden"><code id='translation.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.translation' class='fnname'>translation</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#179-181' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure translational component of this similarity transformation.</p>
</div><h4 id='method.rotation-4' class="method hidden"><code id='rotation.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.rotation' class='fnname'>rotation</a>(&amp;self) -&gt; R</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#184-186' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure rotational component of this similarity transformation.</p>
</div><h4 id='method.scaling-4' class="method hidden"><code id='scaling.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.scaling' class='fnname'>scaling</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#189-191' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure scaling component of this similarity transformation.</p>
</div><h4 id='method.translate_point-4' class="method hidden"><code id='translate_point.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.translate_point' class='fnname'>translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#124-126' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure translational part to a point.</p>
</div><h4 id='method.rotate_point-4' class="method hidden"><code id='rotate_point.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_point' class='fnname'>rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a point.</p>
</div><h4 id='method.scale_point-4' class="method hidden"><code id='scale_point.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_point' class='fnname'>scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#136-138' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a point.</p>
</div><h4 id='method.rotate_vector-4' class="method hidden"><code id='rotate_vector.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_vector' class='fnname'>rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#142-144' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a vector.</p>
</div><h4 id='method.scale_vector-4' class="method hidden"><code id='scale_vector.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_vector' class='fnname'>scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#148-150' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a vector.</p>
</div><h4 id='method.inverse_translate_point-4' class="method hidden"><code id='inverse_translate_point.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_translate_point' class='fnname'>inverse_translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#157-159' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure translational part to a point.</p>
</div><h4 id='method.inverse_rotate_point-4' class="method hidden"><code id='inverse_rotate_point.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_point' class='fnname'>inverse_rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#163-165' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a point.</p>
</div><h4 id='method.inverse_scale_point-4' class="method hidden"><code id='inverse_scale_point.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_point' class='fnname'>inverse_scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#169-171' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a point.</p>
</div><h4 id='method.inverse_rotate_vector-4' class="method hidden"><code id='inverse_rotate_vector.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_vector' class='fnname'>inverse_rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#175-177' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a vector.</p>
</div><h4 id='method.inverse_scale_vector-4' class="method hidden"><code id='inverse_scale_vector.v-4'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_vector' class='fnname'>inverse_scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#181-183' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a vector.</p>
</div></div><h3 id='impl-Similarity%3CPoint%3CN%2C%20D%3E%3E-3' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="../../alga/linear/transformation/trait.Similarity.html" title="trait alga::linear::transformation::Similarity">Similarity</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Similarity.html" title="struct nalgebra::geometry::Similarity">Similarity</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Similarity%3CPoint%3CN%2C%20D%3E%3E-3' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#167-188' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Scaling-5' class="type"><code id='Scaling.t-5'>type <a href='../../alga/linear/transformation/trait.Similarity.html#associatedtype.Scaling' class="type">Scaling</a> = N</code></h4><div class='docblock'><p>The type of the pure (uniform) scaling part of this similarity transformation.</p>
</div><h4 id='method.translation-5' class="method hidden"><code id='translation.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.translation' class='fnname'>translation</a>(&amp;self) -&gt; <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#175-177' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure translational component of this similarity transformation.</p>
</div><h4 id='method.rotation-5' class="method hidden"><code id='rotation.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.rotation' class='fnname'>rotation</a>(&amp;self) -&gt; R</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#180-182' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure rotational component of this similarity transformation.</p>
</div><h4 id='method.scaling-5' class="method hidden"><code id='scaling.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#tymethod.scaling' class='fnname'>scaling</a>(&amp;self) -&gt; N</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#185-187' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The pure scaling component of this similarity transformation.</p>
</div><h4 id='method.translate_point-5' class="method hidden"><code id='translate_point.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.translate_point' class='fnname'>translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#124-126' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure translational part to a point.</p>
</div><h4 id='method.rotate_point-5' class="method hidden"><code id='rotate_point.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_point' class='fnname'>rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a point.</p>
</div><h4 id='method.scale_point-5' class="method hidden"><code id='scale_point.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_point' class='fnname'>scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#136-138' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a point.</p>
</div><h4 id='method.rotate_vector-5' class="method hidden"><code id='rotate_vector.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.rotate_vector' class='fnname'>rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#142-144' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure rotational part to a vector.</p>
</div><h4 id='method.scale_vector-5' class="method hidden"><code id='scale_vector.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.scale_vector' class='fnname'>scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#148-150' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation's pure scaling part to a vector.</p>
</div><h4 id='method.inverse_translate_point-5' class="method hidden"><code id='inverse_translate_point.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_translate_point' class='fnname'>inverse_translate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#157-159' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure translational part to a point.</p>
</div><h4 id='method.inverse_rotate_point-5' class="method hidden"><code id='inverse_rotate_point.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_point' class='fnname'>inverse_rotate_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#163-165' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a point.</p>
</div><h4 id='method.inverse_scale_point-5' class="method hidden"><code id='inverse_scale_point.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_point' class='fnname'>inverse_scale_point</a>(&amp;self, pt: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; E</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#169-171' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a point.</p>
</div><h4 id='method.inverse_rotate_vector-5' class="method hidden"><code id='inverse_rotate_vector.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_rotate_vector' class='fnname'>inverse_rotate_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#175-177' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure rotational part to a vector.</p>
</div><h4 id='method.inverse_scale_vector-5' class="method hidden"><code id='inverse_scale_vector.v-5'>fn <a href='../../alga/linear/transformation/trait.Similarity.html#method.inverse_scale_vector' class='fnname'>inverse_scale_vector</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;pt: &amp;&lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a><br>) -&gt; &lt;E as <a class="trait" href="../../alga/linear/vector/trait.EuclideanSpace.html" title="trait alga::linear::vector::EuclideanSpace">EuclideanSpace</a>&gt;::<a class="type" href="../../alga/linear/vector/trait.EuclideanSpace.html#associatedtype.Coordinates" title="type alga::linear::vector::EuclideanSpace::Coordinates">Coordinates</a></code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#181-183' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Applies this transformation inverse's pure scaling part to a vector.</p>
</div></div><h3 id='impl-Translation%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Translation.html" title="trait alga::linear::transformation::Translation">Translation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Translation%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#176-198' title='goto source code'>[src]</a></h3><div class='docblock'><p>Subgroups of the n-dimensional translation group <code>T(n)</code>.</p>
</div><div class='impl-items'><h4 id='method.to_vector' class="method hidden"><code id='to_vector.v'>fn <a href='../../alga/linear/transformation/trait.Translation.html#tymethod.to_vector' class='fnname'>to_vector</a>(&amp;self) -&gt; <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#180-182' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts this translation to a vector.</p>
</div><h4 id='method.from_vector' class="method hidden"><code id='from_vector.v'>fn <a href='../../alga/linear/transformation/trait.Translation.html#tymethod.from_vector' class='fnname'>from_vector</a>(v: <a class="type" href="../../nalgebra/base/type.VectorN.html" title="type nalgebra::base::VectorN">VectorN</a>&lt;N, D&gt;) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#185-187' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Attempts to convert a vector to this translation. Returns <code>None</code> if the translation represented by <code>v</code> is not part of the translation subgroup represented by <code>Self</code>. <a href="../../alga/linear/transformation/trait.Translation.html#tymethod.from_vector">Read more</a></p>
</div><h4 id='method.powf-3' class="method hidden"><code id='powf.v-3'>fn <a href='../../alga/linear/transformation/trait.Translation.html#method.powf' class='fnname'>powf</a>(&amp;self, n: N) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#190-192' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Raises the translation to a power. The result must be equivalent to <code>self.to_superset() * n</code>. Returns <code>None</code> if the result is not representable by <code>Self</code>. <a href="../../alga/linear/transformation/trait.Translation.html#method.powf">Read more</a></p>
</div><h4 id='method.translation_between' class="method hidden"><code id='translation_between.v'>fn <a href='../../alga/linear/transformation/trait.Translation.html#method.translation_between' class='fnname'>translation_between</a>(a: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;, b: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#195-197' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The translation needed to make <code>a</code> coincide with <code>b</code>, i.e., <code>b = a * translation_to(a, b)</code>.</p>
</div></div><h3 id='impl-AffineTransformation%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.AffineTransformation.html" title="trait alga::linear::transformation::AffineTransformation">AffineTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-AffineTransformation%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#101-142' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Rotation' class="type"><code id='Rotation.t'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation' class="type">Rotation</a> = Self</code></h4><div class='docblock'><p>Type of the first rotation to be applied.</p>
</div><h4 id='associatedtype.NonUniformScaling' class="type"><code id='NonUniformScaling.t'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling' class="type">NonUniformScaling</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>Type of the non-uniform scaling to be applied.</p>
</div><h4 id='associatedtype.Translation' class="type"><code id='Translation.t'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation' class="type">Translation</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>The type of the pure translation part of this affine transformation.</p>
</div><h4 id='method.decompose' class="method hidden"><code id='decompose.v'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose' class='fnname'>decompose</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a>, Self, <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a>, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#109-111' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Decomposes this affine transformation into a rotation followed by a non-uniform scaling, followed by a rotation, followed by a translation. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose">Read more</a></p>
</div><h4 id='method.append_translation' class="method hidden"><code id='append_translation.v'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_translation' class='fnname'>append_translation</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#114-116' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a translation to this similarity.</p>
</div><h4 id='method.prepend_translation' class="method hidden"><code id='prepend_translation.v'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_translation' class='fnname'>prepend_translation</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#119-121' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a translation to this similarity.</p>
</div><h4 id='method.append_rotation' class="method hidden"><code id='append_rotation.v'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_rotation' class='fnname'>append_rotation</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#124-126' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a rotation to this similarity.</p>
</div><h4 id='method.prepend_rotation' class="method hidden"><code id='prepend_rotation.v'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_rotation' class='fnname'>prepend_rotation</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#129-131' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a rotation to this similarity.</p>
</div><h4 id='method.append_scaling' class="method hidden"><code id='append_scaling.v'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_scaling' class='fnname'>append_scaling</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#134-136' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a scaling factor to this similarity.</p>
</div><h4 id='method.prepend_scaling' class="method hidden"><code id='prepend_scaling.v'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_scaling' class='fnname'>prepend_scaling</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#139-141' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a scaling factor to this similarity.</p>
</div><h4 id='method.append_rotation_wrt_point' class="method hidden"><code id='append_rotation_wrt_point.v'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point' class='fnname'>append_rotation_wrt_point</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>, p: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#84-95' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends to this similarity a rotation centered at the point <code>p</code>, i.e., this point is left invariant. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point">Read more</a></p>
</div></div><h3 id='impl-AffineTransformation%3CPoint%3CN%2C%20U3%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.AffineTransformation.html" title="trait alga::linear::transformation::AffineTransformation">AffineTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt;</code><a href='#impl-AffineTransformation%3CPoint%3CN%2C%20U3%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#224-263' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Rotation-1' class="type"><code id='Rotation.t-1'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation' class="type">Rotation</a> = Self</code></h4><div class='docblock'><p>Type of the first rotation to be applied.</p>
</div><h4 id='associatedtype.NonUniformScaling-1' class="type"><code id='NonUniformScaling.t-1'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling' class="type">NonUniformScaling</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>Type of the non-uniform scaling to be applied.</p>
</div><h4 id='associatedtype.Translation-1' class="type"><code id='Translation.t-1'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation' class="type">Translation</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>The type of the pure translation part of this affine transformation.</p>
</div><h4 id='method.decompose-1' class="method hidden"><code id='decompose.v-1'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose' class='fnname'>decompose</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a>, Self, <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a>, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#230-232' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Decomposes this affine transformation into a rotation followed by a non-uniform scaling, followed by a rotation, followed by a translation. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose">Read more</a></p>
</div><h4 id='method.append_translation-1' class="method hidden"><code id='append_translation.v-1'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_translation' class='fnname'>append_translation</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#235-237' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a translation to this similarity.</p>
</div><h4 id='method.prepend_translation-1' class="method hidden"><code id='prepend_translation.v-1'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_translation' class='fnname'>prepend_translation</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#240-242' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a translation to this similarity.</p>
</div><h4 id='method.append_rotation-1' class="method hidden"><code id='append_rotation.v-1'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_rotation' class='fnname'>append_rotation</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#245-247' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a rotation to this similarity.</p>
</div><h4 id='method.prepend_rotation-1' class="method hidden"><code id='prepend_rotation.v-1'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_rotation' class='fnname'>prepend_rotation</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#250-252' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a rotation to this similarity.</p>
</div><h4 id='method.append_scaling-1' class="method hidden"><code id='append_scaling.v-1'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_scaling' class='fnname'>append_scaling</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#255-257' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a scaling factor to this similarity.</p>
</div><h4 id='method.prepend_scaling-1' class="method hidden"><code id='prepend_scaling.v-1'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_scaling' class='fnname'>prepend_scaling</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#260-262' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a scaling factor to this similarity.</p>
</div><h4 id='method.append_rotation_wrt_point-1' class="method hidden"><code id='append_rotation_wrt_point.v-1'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point' class='fnname'>append_rotation_wrt_point</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>, p: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#84-95' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends to this similarity a rotation centered at the point <code>p</code>, i.e., this point is left invariant. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point">Read more</a></p>
</div></div><h3 id='impl-AffineTransformation%3CPoint%3CN%2C%20U2%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.AffineTransformation.html" title="trait alga::linear::transformation::AffineTransformation">AffineTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;,&nbsp;</span></code><a href='#impl-AffineTransformation%3CPoint%3CN%2C%20U2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#89-130' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Rotation-2' class="type"><code id='Rotation.t-2'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation' class="type">Rotation</a> = Self</code></h4><div class='docblock'><p>Type of the first rotation to be applied.</p>
</div><h4 id='associatedtype.NonUniformScaling-2' class="type"><code id='NonUniformScaling.t-2'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling' class="type">NonUniformScaling</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>Type of the non-uniform scaling to be applied.</p>
</div><h4 id='associatedtype.Translation-2' class="type"><code id='Translation.t-2'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation' class="type">Translation</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>The type of the pure translation part of this affine transformation.</p>
</div><h4 id='method.decompose-2' class="method hidden"><code id='decompose.v-2'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose' class='fnname'>decompose</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a>, Self, <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a>, Self<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#97-99' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Decomposes this affine transformation into a rotation followed by a non-uniform scaling, followed by a rotation, followed by a translation. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose">Read more</a></p>
</div><h4 id='method.append_translation-2' class="method hidden"><code id='append_translation.v-2'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_translation' class='fnname'>append_translation</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#102-104' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a translation to this similarity.</p>
</div><h4 id='method.prepend_translation-2' class="method hidden"><code id='prepend_translation.v-2'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_translation' class='fnname'>prepend_translation</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#107-109' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a translation to this similarity.</p>
</div><h4 id='method.append_rotation-2' class="method hidden"><code id='append_rotation.v-2'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_rotation' class='fnname'>append_rotation</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#112-114' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a rotation to this similarity.</p>
</div><h4 id='method.prepend_rotation-2' class="method hidden"><code id='prepend_rotation.v-2'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_rotation' class='fnname'>prepend_rotation</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#117-119' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a rotation to this similarity.</p>
</div><h4 id='method.append_scaling-2' class="method hidden"><code id='append_scaling.v-2'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_scaling' class='fnname'>append_scaling</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#122-124' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a scaling factor to this similarity.</p>
</div><h4 id='method.prepend_scaling-2' class="method hidden"><code id='prepend_scaling.v-2'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_scaling' class='fnname'>prepend_scaling</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#127-129' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a scaling factor to this similarity.</p>
</div><h4 id='method.append_rotation_wrt_point-2' class="method hidden"><code id='append_rotation_wrt_point.v-2'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point' class='fnname'>append_rotation_wrt_point</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>, p: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#84-95' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends to this similarity a rotation centered at the point <code>p</code>, i.e., this point is left invariant. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point">Read more</a></p>
</div></div><h3 id='impl-AffineTransformation%3CPoint%3CN%2C%20D%3E%3E-1' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.AffineTransformation.html" title="trait alga::linear::transformation::AffineTransformation">AffineTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-AffineTransformation%3CPoint%3CN%2C%20D%3E%3E-1' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#102-143' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Rotation-3' class="type"><code id='Rotation.t-3'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation' class="type">Rotation</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>Type of the first rotation to be applied.</p>
</div><h4 id='associatedtype.NonUniformScaling-3' class="type"><code id='NonUniformScaling.t-3'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling' class="type">NonUniformScaling</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>Type of the non-uniform scaling to be applied.</p>
</div><h4 id='associatedtype.Translation-3' class="type"><code id='Translation.t-3'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation' class="type">Translation</a> = Self</code></h4><div class='docblock'><p>The type of the pure translation part of this affine transformation.</p>
</div><h4 id='method.decompose-3' class="method hidden"><code id='decompose.v-3'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose' class='fnname'>decompose</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self, <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a>, <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a>, <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a><a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#110-112' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Decomposes this affine transformation into a rotation followed by a non-uniform scaling, followed by a rotation, followed by a translation. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose">Read more</a></p>
</div><h4 id='method.append_translation-3' class="method hidden"><code id='append_translation.v-3'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_translation' class='fnname'>append_translation</a>(&amp;self, t: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#115-117' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a translation to this similarity.</p>
</div><h4 id='method.prepend_translation-3' class="method hidden"><code id='prepend_translation.v-3'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_translation' class='fnname'>prepend_translation</a>(&amp;self, t: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#120-122' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a translation to this similarity.</p>
</div><h4 id='method.append_rotation-3' class="method hidden"><code id='append_rotation.v-3'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_rotation' class='fnname'>append_rotation</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#125-127' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a rotation to this similarity.</p>
</div><h4 id='method.prepend_rotation-3' class="method hidden"><code id='prepend_rotation.v-3'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_rotation' class='fnname'>prepend_rotation</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a rotation to this similarity.</p>
</div><h4 id='method.append_scaling-3' class="method hidden"><code id='append_scaling.v-3'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_scaling' class='fnname'>append_scaling</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#135-137' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a scaling factor to this similarity.</p>
</div><h4 id='method.prepend_scaling-3' class="method hidden"><code id='prepend_scaling.v-3'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_scaling' class='fnname'>prepend_scaling</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/translation_alga.rs.html#140-142' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a scaling factor to this similarity.</p>
</div><h4 id='method.append_rotation_wrt_point-3' class="method hidden"><code id='append_rotation_wrt_point.v-3'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point' class='fnname'>append_rotation_wrt_point</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>, p: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>E) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/alga/linear/transformation.rs.html#84-95' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends to this similarity a rotation centered at the point <code>p</code>, i.e., this point is left invariant. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point">Read more</a></p>
</div></div><h3 id='impl-AffineTransformation%3CPoint%3CN%2C%20D%3E%3E-2' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="../../alga/linear/transformation/trait.AffineTransformation.html" title="trait alga::linear::transformation::AffineTransformation">AffineTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Isometry.html" title="struct nalgebra::geometry::Isometry">Isometry</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-AffineTransformation%3CPoint%3CN%2C%20D%3E%3E-2' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#113-169' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Rotation-4' class="type"><code id='Rotation.t-4'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation' class="type">Rotation</a> = R</code></h4><div class='docblock'><p>Type of the first rotation to be applied.</p>
</div><h4 id='associatedtype.NonUniformScaling-4' class="type"><code id='NonUniformScaling.t-4'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling' class="type">NonUniformScaling</a> = <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a></code></h4><div class='docblock'><p>Type of the non-uniform scaling to be applied.</p>
</div><h4 id='associatedtype.Translation-4' class="type"><code id='Translation.t-4'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation' class="type">Translation</a> = <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The type of the pure translation part of this affine transformation.</p>
</div><h4 id='method.decompose-4' class="method hidden"><code id='decompose.v-4'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose' class='fnname'>decompose</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a>Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>, R, <a class="struct" href="../../nalgebra/struct.Id.html" title="struct nalgebra::Id">Id</a>, R<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#123-130' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Decomposes this affine transformation into a rotation followed by a non-uniform scaling, followed by a rotation, followed by a translation. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose">Read more</a></p>
</div><h4 id='method.append_translation-4' class="method hidden"><code id='append_translation.v-4'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_translation' class='fnname'>append_translation</a>(&amp;self, t: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#133-135' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a translation to this similarity.</p>
</div><h4 id='method.prepend_translation-4' class="method hidden"><code id='prepend_translation.v-4'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_translation' class='fnname'>prepend_translation</a>(&amp;self, t: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#138-140' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a translation to this similarity.</p>
</div><h4 id='method.append_rotation-4' class="method hidden"><code id='append_rotation.v-4'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_rotation' class='fnname'>append_rotation</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#143-146' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a rotation to this similarity.</p>
</div><h4 id='method.prepend_rotation-4' class="method hidden"><code id='prepend_rotation.v-4'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_rotation' class='fnname'>prepend_rotation</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#149-151' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a rotation to this similarity.</p>
</div><h4 id='method.append_scaling-4' class="method hidden"><code id='append_scaling.v-4'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_scaling' class='fnname'>append_scaling</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#154-156' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a scaling factor to this similarity.</p>
</div><h4 id='method.prepend_scaling-4' class="method hidden"><code id='prepend_scaling.v-4'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_scaling' class='fnname'>prepend_scaling</a>(&amp;self, _: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#159-161' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a scaling factor to this similarity.</p>
</div><h4 id='method.append_rotation_wrt_point-4' class="method hidden"><code id='append_rotation_wrt_point.v-4'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point' class='fnname'>append_rotation_wrt_point</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;p: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;<br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/isometry_alga.rs.html#164-168' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends to this similarity a rotation centered at the point <code>p</code>, i.e., this point is left invariant. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point">Read more</a></p>
</div></div><h3 id='impl-AffineTransformation%3CPoint%3CN%2C%20D%3E%3E-3' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>, R&gt; <a class="trait" href="../../alga/linear/transformation/trait.AffineTransformation.html" title="trait alga::linear::transformation::AffineTransformation">AffineTransformation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Similarity.html" title="struct nalgebra::geometry::Similarity">Similarity</a>&lt;N, D, R&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;R: <a class="trait" href="../../alga/linear/transformation/trait.Rotation.html" title="trait alga::linear::transformation::Rotation">Rotation</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt;,<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-AffineTransformation%3CPoint%3CN%2C%20D%3E%3E-3' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#110-165' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.NonUniformScaling-5' class="type"><code id='NonUniformScaling.t-5'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling' class="type">NonUniformScaling</a> = N</code></h4><div class='docblock'><p>Type of the non-uniform scaling to be applied.</p>
</div><h4 id='associatedtype.Rotation-5' class="type"><code id='Rotation.t-5'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation' class="type">Rotation</a> = R</code></h4><div class='docblock'><p>Type of the first rotation to be applied.</p>
</div><h4 id='associatedtype.Translation-5' class="type"><code id='Translation.t-5'>type <a href='../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation' class="type">Translation</a> = <a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt;</code></h4><div class='docblock'><p>The type of the pure translation part of this affine transformation.</p>
</div><h4 id='method.decompose-5' class="method hidden"><code id='decompose.v-5'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose' class='fnname'>decompose</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">(</a><a class="struct" href="../../nalgebra/geometry/struct.Translation.html" title="struct nalgebra::geometry::Translation">Translation</a>&lt;N, D&gt;, R, N, R<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.tuple.html">)</a></code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#120-127' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Decomposes this affine transformation into a rotation followed by a non-uniform scaling, followed by a rotation, followed by a translation. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.decompose">Read more</a></p>
</div><h4 id='method.append_translation-5' class="method hidden"><code id='append_translation.v-5'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_translation' class='fnname'>append_translation</a>(&amp;self, t: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#130-132' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a translation to this similarity.</p>
</div><h4 id='method.prepend_translation-5' class="method hidden"><code id='prepend_translation.v-5'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_translation' class='fnname'>prepend_translation</a>(&amp;self, t: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Translation" title="type alga::linear::transformation::AffineTransformation::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#135-137' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a translation to this similarity.</p>
</div><h4 id='method.append_rotation-5' class="method hidden"><code id='append_rotation.v-5'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_rotation' class='fnname'>append_rotation</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#140-142' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a rotation to this similarity.</p>
</div><h4 id='method.prepend_rotation-5' class="method hidden"><code id='prepend_rotation.v-5'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_rotation' class='fnname'>prepend_rotation</a>(&amp;self, r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#145-147' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a rotation to this similarity.</p>
</div><h4 id='method.append_scaling-5' class="method hidden"><code id='append_scaling.v-5'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.append_scaling' class='fnname'>append_scaling</a>(&amp;self, s: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#150-152' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends a scaling factor to this similarity.</p>
</div><h4 id='method.prepend_scaling-5' class="method hidden"><code id='prepend_scaling.v-5'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#tymethod.prepend_scaling' class='fnname'>prepend_scaling</a>(&amp;self, s: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.NonUniformScaling" title="type alga::linear::transformation::AffineTransformation::NonUniformScaling">NonUniformScaling</a>) -&gt; Self</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#155-157' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Prepends a scaling factor to this similarity.</p>
</div><h4 id='method.append_rotation_wrt_point-5' class="method hidden"><code id='append_rotation_wrt_point.v-5'>fn <a href='../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point' class='fnname'>append_rotation_wrt_point</a>(<br>&nbsp;&nbsp;&nbsp;&nbsp;&amp;self, <br>&nbsp;&nbsp;&nbsp;&nbsp;r: &amp;Self::<a class="type" href="../../alga/linear/transformation/trait.AffineTransformation.html#associatedtype.Rotation" title="type alga::linear::transformation::AffineTransformation::Rotation">Rotation</a>, <br>&nbsp;&nbsp;&nbsp;&nbsp;p: &amp;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;<br>) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;Self&gt;</code><a class='srclink' href='../../src/nalgebra/geometry/similarity_alga.rs.html#160-164' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Appends to this similarity a rotation centered at the point <code>p</code>, i.e., this point is left invariant. <a href="../../alga/linear/transformation/trait.AffineTransformation.html#method.append_rotation_wrt_point">Read more</a></p>
</div></div><h3 id='impl-Isometry%3CPoint%3CN%2C%20D%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>, D:&nbsp;<a class="trait" href="../../nalgebra/base/dimension/trait.DimName.html" title="trait nalgebra::base::dimension::DimName">DimName</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Isometry.html" title="trait alga::linear::transformation::Isometry">Isometry</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;&gt; for <a class="struct" href="../../nalgebra/geometry/struct.Rotation.html" title="struct nalgebra::geometry::Rotation">Rotation</a>&lt;N, D&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D, D&gt; + <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, D&gt;,&nbsp;</span></code><a href='#impl-Isometry%3CPoint%3CN%2C%20D%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/rotation_alga.rs.html#167-169' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-Isometry%3CPoint%3CN%2C%20U3%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Isometry.html" title="trait alga::linear::transformation::Isometry">Isometry</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U3.html" title="struct nalgebra::base::dimension::U3">U3</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitQuaternion.html" title="type nalgebra::geometry::UnitQuaternion">UnitQuaternion</a>&lt;N&gt;</code><a href='#impl-Isometry%3CPoint%3CN%2C%20U3%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/quaternion_alga.rs.html#286' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-Isometry%3CPoint%3CN%2C%20U2%3E%3E' class='impl'><code class='in-band'>impl&lt;N:&nbsp;<a class="trait" href="../../nalgebra/trait.RealField.html" title="trait nalgebra::RealField">RealField</a>&gt; <a class="trait" href="../../alga/linear/transformation/trait.Isometry.html" title="trait alga::linear::transformation::Isometry">Isometry</a>&lt;<a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;&gt; for <a class="type" href="../../nalgebra/geometry/type.UnitComplex.html" title="type nalgebra::geometry::UnitComplex">UnitComplex</a>&lt;N&gt; <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;<a class="struct" href="../../nalgebra/base/default_allocator/struct.DefaultAllocator.html" title="struct nalgebra::base::default_allocator::DefaultAllocator">DefaultAllocator</a>: <a class="trait" href="../../nalgebra/base/allocator/trait.Allocator.html" title="trait nalgebra::base::allocator::Allocator">Allocator</a>&lt;N, <a class="struct" href="../../nalgebra/base/dimension/struct.U2.html" title="struct nalgebra::base::dimension::U2">U2</a>&gt;,&nbsp;</span></code><a href='#impl-Isometry%3CPoint%3CN%2C%20U2%3E%3E' class='anchor'></a><a class='srclink' href='../../src/nalgebra/geometry/unit_complex_alga.rs.html#155-156' title='goto source code'>[src]</a></h3><div class='impl-items'></di
</div><h4 id='method.translate_by' class="method hidden"><code id='translate_by.v'>fn <a href='../../alga/linear/vector/trait.AffineSpace.html#method.translate_by' class='fnname'>translate_by</a>(&amp;self, t: &amp;Self::<a class="type" href="../../alga/linear/vector/trait.AffineSpace.html#associatedtype.Translation" title="type alga::linear::vector::AffineSpace::Translation">Translation</a>) -&gt; Self</code><a class='srclink' href='../../src/alga/linear/vector.rs.html#143-145' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Same as <code>*self + *t</code>. Applies the additive group action of this affine space's associated vector space on <code>self</code>. <a href="../../alga/linear/vector/trait.AffineSpace.html#method.translate_by">Read more</a></p>
</div><h4 id='method.subtract' class="method hidden"><code id='subtract.v'>fn <a href='../../alga/linear/vector/trait.AffineSpace.html#method.subtract' class='fnname'>subtract</a>(&amp;self, right: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>Self) -&gt; Self::<a class="type" href="../../alga/linear/vector/trait.AffineSpace.html#associatedtype.Translation" title="type alga::linear::vector::AffineSpace::Translation">Translation</a></code><a class='srclink' href='../../src/alga/linear/vector.rs.html#150-152' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Same as <code>*self - *other</code>. Returns the unique element <code>v</code> of the associated vector space such that <code>self = right + v</code>. <a href="../../alga/linear/vector/trait.AffineSpace.html#method.subtract">Read more</a></p>
</div></div></div><h2 id='synthetic-implementations' class='small-section-header'>Auto Trait Implementations<a href='#synthetic-implementations' class='anchor'></a></h2><div id='synthetic-implementations-list'><h3 id='impl-Send' class='impl'><code class='in-band'>impl&lt;N, D&gt; !<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Send.html" title="trait core::marker::Send">Send</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a href='#impl-Send' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-Unpin' class='impl'><code class='in-band'>impl&lt;N, D&gt; !<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Unpin.html" title="trait core::marker::Unpin">Unpin</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a href='#impl-Unpin' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-Sync' class='impl'><code class='in-band'>impl&lt;N, D&gt; !<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sync.html" title="trait core::marker::Sync">Sync</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a href='#impl-Sync' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-UnwindSafe' class='impl'><code class='in-band'>impl&lt;N, D&gt; !<a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.UnwindSafe.html" title="trait std::panic::UnwindSafe">UnwindSafe</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a href='#impl-UnwindSafe' class='anchor'></a></h3><div class='impl-items'></div><h3 id='impl-RefUnwindSafe' class='impl'><code class='in-band'>impl&lt;N, D&gt; !<a class="trait" href="https://doc.rust-lang.org/nightly/std/panic/trait.RefUnwindSafe.html" title="trait std::panic::RefUnwindSafe">RefUnwindSafe</a> for <a class="struct" href="../../nalgebra/geometry/struct.Point.html" title="struct nalgebra::geometry::Point">Point</a>&lt;N, D&gt;</code><a href='#impl-RefUnwindSafe' class='anchor'></a></h3><div class='impl-items'></div></div><h2 id='blanket-implementations' class='small-section-header'>Blanket Implementations<a href='#blanket-implementations' class='anchor'></a></h2><div id='blanket-implementations-list'><h3 id='impl-ToOwned' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html" title="trait alloc::borrow::ToOwned">ToOwned</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a>,&nbsp;</span></code><a href='#impl-ToOwned' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/borrow.rs.html#81-92' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Owned' class="type"><code id='Owned.t'>type <a href='https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html#associatedtype.Owned' class="type">Owned</a> = T</code></h4><div class='docblock'><p>The resulting type after obtaining ownership.</p>
</div><h4 id='method.to_owned' class="method hidden"><code id='to_owned.v'>fn <a href='https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html#tymethod.to_owned' class='fnname'>to_owned</a>(&amp;self) -&gt; T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/borrow.rs.html#85-87' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Creates owned data from borrowed data, usually by cloning. <a href="https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html#tymethod.to_owned">Read more</a></p>
</div><h4 id='method.clone_into' class="method hidden"><code id='clone_into.v'>fn <a href='https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html#method.clone_into' class='fnname'>clone_into</a>(&amp;self, target: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>T)</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/borrow.rs.html#89-91' title='goto source code'>[src]</a></h4><div class='stability hidden'><div class='stab unstable'><details><summary><span class='emoji'>🔬</span> This is a nightly-only experimental API. (<code>toowned_clone_into</code>)</summary><p>recently added</p>
</details></div></div><div class='docblock hidden'><p>Uses borrowed data to replace owned data, usually by cloning. <a href="https://doc.rust-lang.org/nightly/alloc/borrow/trait.ToOwned.html#method.clone_into">Read more</a></p>
</div></div><h3 id='impl-Into%3CU%3E' class='impl'><code class='in-band'>impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;U&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt;,&nbsp;</span></code><a href='#impl-Into%3CU%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#544-549' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.into' class="method hidden"><code id='into.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.Into.html#tymethod.into' class='fnname'>into</a>(self) -&gt; U</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#546-548' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-From%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.From.html" title="trait core::convert::From">From</a>&lt;T&gt; for T</code><a href='#impl-From%3CT%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#553-555' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.from-8' class="method hidden"><code id='from.v-8'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.From.html#tymethod.from' class='fnname'>from</a>(t: T) -&gt; T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#554' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-ToString' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/alloc/string/trait.ToString.html" title="trait alloc::string::ToString">ToString</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/fmt/trait.Display.html" title="trait core::fmt::Display">Display</a> + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code><a href='#impl-ToString' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/string.rs.html#2134-2144' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.to_string' class="method hidden"><code id='to_string.v'>default fn <a href='https://doc.rust-lang.org/nightly/alloc/string/trait.ToString.html#tymethod.to_string' class='fnname'>to_string</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/alloc/string/struct.String.html" title="struct alloc::string::String">String</a></code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/alloc/string.rs.html#2136-2143' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Converts the given value to a <code>String</code>. <a href="https://doc.rust-lang.org/nightly/alloc/string/trait.ToString.html#tymethod.to_string">Read more</a></p>
</div></div><h3 id='impl-TryFrom%3CU%3E' class='impl'><code class='in-band'>impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;U&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.Into.html" title="trait core::convert::Into">Into</a>&lt;T&gt;,&nbsp;</span></code><a href='#impl-TryFrom%3CU%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#572-578' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error' class="type"><code id='Error.t'>type <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error' class="type">Error</a> = <a class="enum" href="https://doc.rust-lang.org/nightly/core/convert/enum.Infallible.html" title="enum core::convert::Infallible">Infallible</a></code></h4><div class='docblock'><p>The type returned in the event of a conversion error.</p>
</div><h4 id='method.try_from' class="method hidden"><code id='try_from.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#tymethod.try_from' class='fnname'>try_from</a>(value: U) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;T, &lt;T as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;U&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#575-577' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-TryInto%3CU%3E' class='impl'><code class='in-band'>impl&lt;T, U&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html" title="trait core::convert::TryInto">TryInto</a>&lt;U&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;U: <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;,&nbsp;</span></code><a href='#impl-TryInto%3CU%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#560-567' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Error-1' class="type"><code id='Error.t-1'>type <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html#associatedtype.Error' class="type">Error</a> = &lt;U as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a></code></h4><div class='docblock'><p>The type returned in the event of a conversion error.</p>
</div><h4 id='method.try_into' class="method hidden"><code id='try_into.v'>fn <a href='https://doc.rust-lang.org/nightly/core/convert/trait.TryInto.html#tymethod.try_into' class='fnname'>try_into</a>(self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/result/enum.Result.html" title="enum core::result::Result">Result</a>&lt;U, &lt;U as <a class="trait" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html" title="trait core::convert::TryFrom">TryFrom</a>&lt;T&gt;&gt;::<a class="type" href="https://doc.rust-lang.org/nightly/core/convert/trait.TryFrom.html#associatedtype.Error" title="type core::convert::TryFrom::Error">Error</a>&gt;</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/convert.rs.html#564-566' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Performs the conversion.</p>
</div></div><h3 id='impl-BorrowMut%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/borrow/trait.BorrowMut.html" title="trait core::borrow::BorrowMut">BorrowMut</a>&lt;T&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code><a href='#impl-BorrowMut%3CT%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#218-220' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.borrow_mut' class="method hidden"><code id='borrow_mut.v'>fn <a href='https://doc.rust-lang.org/nightly/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut' class='fnname'>borrow_mut</a>(&amp;mut self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;mut </a>T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#219' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Mutably borrows from an owned value. <a href="https://doc.rust-lang.org/nightly/core/borrow/trait.BorrowMut.html#tymethod.borrow_mut">Read more</a></p>
</div></div><h3 id='impl-Borrow%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/borrow/trait.Borrow.html" title="trait core::borrow::Borrow">Borrow</a>&lt;T&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code><a href='#impl-Borrow%3CT%3E' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#213-215' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.borrow' class="method hidden"><code id='borrow.v'>fn <a href='https://doc.rust-lang.org/nightly/core/borrow/trait.Borrow.html#tymethod.borrow' class='fnname'>borrow</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>T</code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/borrow.rs.html#214' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Immutably borrows from an owned value. <a href="https://doc.rust-lang.org/nightly/core/borrow/trait.Borrow.html#tymethod.borrow">Read more</a></p>
</div></div><h3 id='impl-Any' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html" title="trait core::any::Any">Any</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: 'static + ?<a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a>,&nbsp;</span></code><a href='#impl-Any' class='anchor'></a><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/any.rs.html#100-102' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.type_id' class="method hidden"><code id='type_id.v'>fn <a href='https://doc.rust-lang.org/nightly/core/any/trait.Any.html#tymethod.type_id' class='fnname'>type_id</a>(&amp;self) -&gt; <a class="struct" href="https://doc.rust-lang.org/nightly/core/any/struct.TypeId.html" title="struct core::any::TypeId">TypeId</a></code><a class='srclink' href='https://doc.rust-lang.org/nightly/src/core/any.rs.html#101' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Gets the <code>TypeId</code> of <code>self</code>. <a href="https://doc.rust-lang.org/nightly/core/any/trait.Any.html#tymethod.type_id">Read more</a></p>
</div></div><h3 id='impl-Same%3CT%3E' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../../typenum/type_operators/trait.Same.html" title="trait typenum::type_operators::Same">Same</a>&lt;T&gt; for T</code><a href='#impl-Same%3CT%3E' class='anchor'></a><a class='srclink' href='../../src/typenum/type_operators.rs.html#32-34' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Output-75' class="type"><code id='Output.t-75'>type <a href='../../typenum/type_operators/trait.Same.html#associatedtype.Output' class="type">Output</a> = T</code></h4><div class='docblock'><p>Should always be <code>Self</code></p>
</div></div><h3 id='impl-ClosedNeg' class='impl'><code class='in-band'>impl&lt;T&gt; <a class="trait" href="../../alga/general/operator/trait.ClosedNeg.html" title="trait alga::general::operator::ClosedNeg">ClosedNeg</a> for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Neg.html" title="trait core::ops::arith::Neg">Neg</a>&lt;Output = T&gt;,&nbsp;</span></code><a href='#impl-ClosedNeg' class='anchor'></a><a class='srclink' href='../../src/alga/general/operator.rs.html#144' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-SupersetOf%3CSS%3E' class='impl'><code class='in-band'>impl&lt;SS, SP&gt; <a class="trait" href="../../alga/general/subset/trait.SupersetOf.html" title="trait alga::general::subset::SupersetOf">SupersetOf</a>&lt;SS&gt; for SP <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;SS: <a class="trait" href="../../alga/general/subset/trait.SubsetOf.html" title="trait alga::general::subset::SubsetOf">SubsetOf</a>&lt;SP&gt;,&nbsp;</span></code><a href='#impl-SupersetOf%3CSS%3E' class='anchor'></a><a class='srclink' href='../../src/alga/general/subset.rs.html#87-107' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='method.to_subset' class="method hidden"><code id='to_subset.v'>fn <a href='../../alga/general/subset/trait.SupersetOf.html#method.to_subset' class='fnname'>to_subset</a>(&amp;self) -&gt; <a class="enum" href="https://doc.rust-lang.org/nightly/core/option/enum.Option.html" title="enum core::option::Option">Option</a>&lt;SS&gt;</code><a class='srclink' href='../../src/alga/general/subset.rs.html#89-91' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inverse inclusion map: attempts to construct <code>self</code> from the equivalent element of its superset. <a href="../../alga/general/subset/trait.SupersetOf.html#method.to_subset">Read more</a></p>
</div><h4 id='method.is_in_subset-2' class="method hidden"><code id='is_in_subset.v-2'>fn <a href='../../alga/general/subset/trait.SupersetOf.html#tymethod.is_in_subset' class='fnname'>is_in_subset</a>(&amp;self) -&gt; <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.bool.html">bool</a></code><a class='srclink' href='../../src/alga/general/subset.rs.html#94-96' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Checks if <code>self</code> is actually part of its subset <code>T</code> (and can be converted to it).</p>
</div><h4 id='method.to_subset_unchecked' class="method hidden"><code id='to_subset_unchecked.v'>unsafe fn <a href='../../alga/general/subset/trait.SupersetOf.html#tymethod.to_subset_unchecked' class='fnname'>to_subset_unchecked</a>(&amp;self) -&gt; SS</code><a class='srclink' href='../../src/alga/general/subset.rs.html#99-101' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>Use with care! Same as <code>self.to_subset</code> but without any property checks. Always succeeds.</p>
</div><h4 id='method.from_subset' class="method hidden"><code id='from_subset.v'>fn <a href='../../alga/general/subset/trait.SupersetOf.html#tymethod.from_subset' class='fnname'>from_subset</a>(element: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.reference.html">&amp;</a>SS) -&gt; SP</code><a class='srclink' href='../../src/alga/general/subset.rs.html#104-106' title='goto source code'>[src]</a></h4><div class='docblock hidden'><p>The inclusion map: converts <code>self</code> to the equivalent element of its superset.</p>
</div></div><h3 id='impl-ClosedAdd%3CRight%3E' class='impl'><code class='in-band'>impl&lt;T, Right&gt; <a class="trait" href="../../alga/general/operator/trait.ClosedAdd.html" title="trait alga::general::operator::ClosedAdd">ClosedAdd</a>&lt;Right&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Add.html" title="trait core::ops::arith::Add">Add</a>&lt;Right, Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.AddAssign.html" title="trait core::ops::arith::AddAssign">AddAssign</a>&lt;Right&gt;,&nbsp;</span></code><a href='#impl-ClosedAdd%3CRight%3E' class='anchor'></a><a class='srclink' href='../../src/alga/general/operator.rs.html#140' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-ClosedSub%3CRight%3E' class='impl'><code class='in-band'>impl&lt;T, Right&gt; <a class="trait" href="../../alga/general/operator/trait.ClosedSub.html" title="trait alga::general::operator::ClosedSub">ClosedSub</a>&lt;Right&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Sub.html" title="trait core::ops::arith::Sub">Sub</a>&lt;Right, Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.SubAssign.html" title="trait core::ops::arith::SubAssign">SubAssign</a>&lt;Right&gt;,&nbsp;</span></code><a href='#impl-ClosedSub%3CRight%3E' class='anchor'></a><a class='srclink' href='../../src/alga/general/operator.rs.html#141' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-ClosedMul%3CRight%3E' class='impl'><code class='in-band'>impl&lt;T, Right&gt; <a class="trait" href="../../alga/general/operator/trait.ClosedMul.html" title="trait alga::general::operator::ClosedMul">ClosedMul</a>&lt;Right&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Mul.html" title="trait core::ops::arith::Mul">Mul</a>&lt;Right, Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.MulAssign.html" title="trait core::ops::arith::MulAssign">MulAssign</a>&lt;Right&gt;,&nbsp;</span></code><a href='#impl-ClosedMul%3CRight%3E' class='anchor'></a><a class='srclink' href='../../src/alga/general/operator.rs.html#142' title='goto source code'>[src]</a></h3><div class='impl-items'></div><h3 id='impl-ClosedDiv%3CRight%3E' class='impl'><code class='in-band'>impl&lt;T, Right&gt; <a class="trait" href="../../alga/general/operator/trait.ClosedDiv.html" title="trait alga::general::operator::ClosedDiv">ClosedDiv</a>&lt;Right&gt; for T <span class="where fmt-newline">where<br>&nbsp;&nbsp;&nbsp;&nbsp;T: <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.Div.html" title="trait core::ops::arith::Div">Div</a>&lt;Right, Output = T&gt; + <a class="trait" href="https://doc.rust-lang.org/nightly/core/ops/arith/trait.DivAssign.html" title="trait core::ops::arith::DivAssign">DivAssign</a>&lt;Right&gt;,&nbsp;</span></code><a href='#impl-ClosedDiv%3CRight%3E' class='anchor'></a><a class='srclink' href='../../src/alga/general/operator.rs.html#143' title='goto source code'>[src]</a></h3><div class='impl-items'></div></div></section><section id="search" class="content hidden"></section><section class="footer"></section><aside id="help" class="hidden"><div><h1 class="hidden">Help</h1><div class="shortcuts"><h2>Keyboard Shortcuts</h2><dl><dt><kbd>?</kbd></dt><dd>Show this help dialog</dd><dt><kbd>S</kbd></dt><dd>Focus the search field</dd><dt><kbd></kbd></dt><dd>Move up in search results</dd><dt><kbd></kbd></dt><dd>Move down in search results</dd><dt><kbd></kbd></dt><dd>Switch tab</dd><dt><kbd>&#9166;</kbd></dt><dd>Go to active search result</dd><dt><kbd>+</kbd></dt><dd>Expand all sections</dd><dt><kbd>-</kbd></dt><dd>Collapse all sections</dd></dl></div><div class="infos"><h2