|
@@ -16,7 +16,7 @@
|
|
|
|
|
|
<figure>
|
|
|
<img src="libigl-teaser.png" alt="" />
|
|
|
-</figure>
|
|
|
+<figcaption></figcaption></figure>
|
|
|
|
|
|
<p><a href="https://github.com/libigl/libigl/">https://github.com/libigl/libigl/</a></p>
|
|
|
|
|
@@ -140,6 +140,27 @@ BibTeX entry:</p>
|
|
|
}
|
|
|
</code></pre>
|
|
|
|
|
|
+<h2 id="knownissues">Known Issues</h2>
|
|
|
+
|
|
|
+<p>We really heavily on Eigen. Nearly all inputs and outputs are Eigen matrices of
|
|
|
+some kind. However, we currently <em>only</em> support Eigen’s default column-major
|
|
|
+ordering. That means, we <strong>do not</strong> expect our code to work for matrices using
|
|
|
+the <code>Eigen::RowMajor</code> flag. If you can, change definitions like:</p>
|
|
|
+
|
|
|
+<pre><code class="cpp">Eigen::Matrix<Float, Eigen::Dynamic, 3, Eigen::RowMajor> A;
|
|
|
+</code></pre>
|
|
|
+
|
|
|
+<p>to</p>
|
|
|
+
|
|
|
+<pre><code class="cpp">Eigen::Matrix<Float, Eigen::Dynamic, 3, Eigen::ColMajor> A;
|
|
|
+// or simply
|
|
|
+Eigen::Matrix<Float, Eigen::Dynamic, 3> A;
|
|
|
+</code></pre>
|
|
|
+
|
|
|
+<p>We hope to fix this, or at least identify which functions are safe (many of
|
|
|
+them probably work just fine). This requires setting up unit testing, which is
|
|
|
+a major <em>todo</em> for our development.</p>
|
|
|
+
|
|
|
<h2 id="contact">Contact</h2>
|
|
|
|
|
|
<p>Libigl is a group endeavor led by <a href="http://www.cs.columbia.edu/~jacobson/">Alec
|
|
@@ -163,7 +184,7 @@ Takayama, Leo Sacht, Wenzel Jacob, Nico Pietroni, Amir Vaxman</p>
|
|
|
|
|
|
<figure>
|
|
|
<img src="tutorial/images/libigl-logo.jpg" alt="" />
|
|
|
-</figure>
|
|
|
+<figcaption></figcaption></figure>
|
|
|
|
|
|
</body>
|
|
|
</html>
|