Browse Source

update index.html to match README.md

Former-commit-id: de7bdfc9a2b971269b6d47a4b849f5fc8799f342
Alec Jacobson 10 years ago
parent
commit
d6e8215a84
1 changed files with 19 additions and 21 deletions
  1. 19 21
      index.html

+ 19 - 21
index.html

@@ -113,6 +113,25 @@ caution.</p>
 <p>You can keep up to date by cloning a read-only copy of our GitHub
 <a href="https://github.com/libigl">repository</a>.</p>
 
+<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&#8217;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:
+<code>cpp
+Eigen::Matrix&lt;double, Eigen::Dynamic, 3, Eigen::RowMajor&gt; A;
+</code>
+to
+<code>cpp
+Eigen::Matrix&lt;double, Eigen::Dynamic, 3, Eigen::ColMajor&gt; A;
+// or simply
+Eigen::Matrix&lt;double, Eigen::Dynamic, 3&gt; A;
+</code>
+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="howtocontribute">How to contribute</h2>
 
 <p>If you are interested in joining development, please fork the repository and
@@ -140,27 +159,6 @@ 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&#8217;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&lt;Float, Eigen::Dynamic, 3, Eigen::RowMajor&gt; A;
-</code></pre>
-
-<p>to</p>
-
-<pre><code class="cpp">Eigen::Matrix&lt;Float, Eigen::Dynamic, 3, Eigen::ColMajor&gt; A;
-// or simply
-Eigen::Matrix&lt;Float, Eigen::Dynamic, 3&gt; 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