index.html 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>libigl</title>
  6. <meta name="author" content="Alec Jacobson and Daniele Panozzo and others"/>
  7. <link type="text/css" rel="stylesheet" href="tutorial/style.css"/>
  8. <script type='text/javascript' src='http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML'></script>
  9. <link rel='stylesheet' href='http://yandex.st/highlightjs/7.3/styles/default.min.css'>
  10. <script src='http://yandex.st/highlightjs/7.3/highlight.min.js'></script>
  11. <script>hljs.initHighlightingOnLoad();</script>
  12. </head>
  13. <body>
  14. <h1 id="libigl-asimplecgeometryprocessinglibrary">libigl - A simple c++ geometry processing library</h1>
  15. <p><a href="http://igl.ethz.ch/projects/libigl/">http://igl.ethz.ch/projects/libigl/</a>
  16. <a href="https://github.com/alecjacobson/libigl/">https://github.com/alecjacobson/libigl/</a></p>
  17. <p>Copyright 2014 - Alec Jacobson, Daniele Panozzo, Olga Diamanti, Kenshi
  18. Takayama, Leo Sacht, Wenzel Jacob, etc.</p>
  19. <p>This is first and foremost a <em>header</em> library. Each header file should contain
  20. a single function. The function may have multiple prototypes. All functions
  21. should use the igl namespace and should adhere to the conventions and styles
  22. listed below.</p>
  23. <blockquote>
  24. <p><strong>New:</strong> As of 1 July 2014, we have released libigl as beta version 1.0.
  25. There are a number of changes we collected for this release to minimize
  26. confusion and changes to how you use libigl. See <a href="#version1.0changes">Version 1.0
  27. Changes</a>.</p>
  28. </blockquote>
  29. <h2 id="installation">Installation</h2>
  30. <p>Libigl is a <em>header</em> library. You do <strong>not</strong> need to build anything to install.
  31. Simple add <code>igl/</code> to your include path and include relevant headers. Here&#8217;s a
  32. small &#8220;Hello, World&#8221; program:</p>
  33. <pre><code class="cpp">#include &lt;igl/cotmatrix.h&gt;
  34. #include &lt;Eigen/Dense&gt;
  35. #include &lt;Eigen/Sparse&gt;
  36. #include &lt;iostream&gt;
  37. int main()
  38. {
  39. Eigen::MatrixXd V(4,2);
  40. V&lt;&lt;0,0,
  41. 1,0,
  42. 1,1,
  43. 0,1;
  44. Eigen::MatrixXi F(2,3);
  45. F&lt;&lt;0,1,2,
  46. 0,2,3;
  47. Eigen::SparseMatrix&lt;double&gt; L;
  48. igl::cotmatrix(V,F,L);
  49. std::cout&lt;&lt;&quot;Hello, mesh: &quot;&lt;&lt;std::endl&lt;&lt;L*V&lt;&lt;std::endl;
  50. return 0;
  51. }
  52. </code></pre>
  53. <p>If you save this in <code>hello.cpp</code>, then on <code>gcc</code> with Eigen installed via
  54. macports for example you could compile this with:</p>
  55. <pre><code class="bash">gcc -I/opt/local/include/eigen3 -I./igl/ hello.cpp -o hello
  56. </code></pre>
  57. <p>Running <code>./hello</code> would then produce</p>
  58. <pre><code>Hello, mesh:
  59. 0.5 0.5
  60. -0.5 0.5
  61. -0.5 -0.5
  62. 0.5 -0.5
  63. </code></pre>
  64. <h2 id="tutorial">Tutorial</h2>
  65. <p>As of version 1.0, libigl includes an introductory
  66. <a href="http://libigl.github.io/libigl/tutorial/tutorial.html">tutorial</a> that covers
  67. its basic functionalities.</p>
  68. <h2 id="dependencies">Dependencies</h2>
  69. <ul>
  70. <li>Eigen3 Last tested with Eigen Version 3.2</li>
  71. </ul>
  72. <h3 id="optional">Optional</h3>
  73. <ul>
  74. <li>OpenGL (disable with <code>IGL_NO_OPENGL</code>)
  75. <ul>
  76. <li>OpenGL &gt;= 4 (enable with <code>IGL_OPENGL_4</code>)</li>
  77. </ul></li>
  78. <li>AntTweakBar (disable with <code>IGL_NO_ANTTWEAKBAR</code>) Last tested 1.16 (see
  79. <code>libigl/external/AntTweakBar</code>)</li>
  80. <li>GLEW Windows and Linux</li>
  81. <li>OpenMP</li>
  82. <li>libpng libiglpng extra only</li>
  83. <li>Mosek libiglmosek extra only</li>
  84. <li>Matlab libiglmatlab extra only</li>
  85. <li>boost libiglboost, libiglcgal extra only</li>
  86. <li>SSE/AVX libiglsvd3x3 extra only</li>
  87. <li>CGAL libiglcgal extra only
  88. <ul>
  89. <li>boost</li>
  90. <li>gmp</li>
  91. <li>mpfr</li>
  92. </ul></li>
  93. <li>CoMiSo libcomiso extra only</li>
  94. </ul>
  95. <h3 id="optionalincludedinexternal">Optional (included in external/)</h3>
  96. <ul>
  97. <li>TetGen libigltetgen extra only</li>
  98. <li>Embree libiglembree extra only</li>
  99. <li>tinyxml2 libiglxml extra only</li>
  100. <li>glfw libviewer extra only</li>
  101. <li>LIM liblim extra only</li>
  102. </ul>
  103. <h2 id="headeronly">Header only</h2>
  104. <p>Libigl is designed to work &#8220;out-of-the-box&#8221; as a headers only library. To
  105. include libigl in your project. You need only include the libigl/include/
  106. directory in your include path. To
  107. compile a hello-word example.cpp:</p>
  108. <pre><code>#include &lt;Eigen/Dense&gt;
  109. #include &lt;igl/readOBJ.h&gt;
  110. #include &lt;iostream&gt;
  111. int main(int argc, char * argv[])
  112. {
  113. if(argc&gt;1)
  114. {
  115. Eigen::MatrixXd V;
  116. Eigen::MatrixXi F;
  117. igl::readOBJ(argv[1],V,F);
  118. std::cout&lt;&lt;&quot;Hello, mesh with &quot;&lt;&lt;V.rows()&lt;&lt;&quot; vertices!&quot;&lt;&lt;std::endl;
  119. }else{
  120. std::cout&lt;&lt;&quot;Hello, world!&quot;&lt;&lt;std::endl;
  121. }
  122. return 0;
  123. }
  124. </code></pre>
  125. <p>using gcc (replacing appropriate paths):</p>
  126. <pre><code>g++ -I/usr/local/igl/libigl/include \
  127. -I/opt/local/include/eigen3 example.cpp -o example
  128. </code></pre>
  129. <p>Then run this example with:</p>
  130. <pre><code>./example examples/shared/TinyTorus.obj
  131. </code></pre>
  132. <h2 id="compilationasastaticlibrary">Compilation as a static library</h2>
  133. <p>Libigl is developed most often on Mac OS X, though has current users in Linux
  134. and Windows.</p>
  135. <h3 id="linuxmacosxcygwin">Linux/Mac OS X/Cygwin</h3>
  136. <p>Libigl may also be compiled to a static library. This is advantageous when
  137. building a project with libigl, since when used as an header-only library can
  138. slow down compile times.</p>
  139. <p>To build the entire libigl library producing lib/libigl.a, issue:</p>
  140. <pre><code>cd build
  141. make lib
  142. </code></pre>
  143. <p>You may need to edit Makefile.conf accordingly. Best to give yourself an
  144. <code>IGL_USERNAME</code> and add a custom install suite for yourself. Then you can enable
  145. appropriate extras.</p>
  146. <h4 id="extras">Extras</h4>
  147. <p>Once you&#8217;ve set up an <code>IGL_USERNAME</code> and enabled extras within Makefile.conf.
  148. You can build the extra libraries (into lib/ligiglpng.a, lib/libiglmatlab.a,
  149. lib/libigltetgen.a, lib/libiglmosek.a, etc.) by issuing:</p>
  150. <pre><code>cd build
  151. make extras
  152. </code></pre>
  153. <h4 id="examples">Examples</h4>
  154. <p>You can make a slew of examples by issuing:</p>
  155. <pre><code>cd build
  156. make examples
  157. </code></pre>
  158. <h4 id="external">External</h4>
  159. <p>Finally there are a number of external libraries that we include in
  160. ./external/ because they are either difficult to obtain or they have been
  161. patched for easier use with libigl. Please see the respective readmes in
  162. those directories.</p>
  163. <h5 id="installinganttweakbar">Installing AntTweakBar</h5>
  164. <p>To build the a static AntTweakBar library on Mac OS X issue:</p>
  165. <pre><code>cd external/AntTweakBar/src
  166. make -f Makefile.osx.igl
  167. </code></pre>
  168. <h5 id="installingtetgen">Installing Tetgen</h5>
  169. <p>To build the tetgen library and executable on Mac OS X issue:</p>
  170. <pre><code>cd external/tetgen
  171. make clean
  172. rm -f obj/*.o
  173. make -f Makefile.igl tetgen
  174. rm -f obj/*.o
  175. make -f Makefile.igl tetlib
  176. </code></pre>
  177. <h5 id="installingmedit">Installing medit</h5>
  178. <p>To build the igl version of the medit executable on Mac OS X issue:</p>
  179. <pre><code>cd external/medit
  180. make -C libmesh
  181. make -f Makefile.igl medit
  182. </code></pre>
  183. <h5 id="installingembree2.0">Installing Embree 2.0</h5>
  184. <p>To build the embree library and executables on Mac OS X issue:</p>
  185. <pre><code>cd external/embree
  186. mkdir build
  187. cd build
  188. cmake ..
  189. # Or using a different compiler
  190. #cmake .. -DCMAKE_C_COMPILER=/opt/local/bin/gcc -DCMAKE_CXX_COMPILER=/opt/local/bin/g++
  191. make
  192. # Could also install embree to your root, but libigl examples don't expect
  193. # this
  194. #sudo make install
  195. </code></pre>
  196. <h5 id="installingtinyxml2">Installing tinyxml2</h5>
  197. <p>To build the a static tinyxml2 library on Mac OS X issue:</p>
  198. <pre><code>cd external/tinyxml2
  199. cmake .
  200. make
  201. </code></pre>
  202. <h5 id="installingyimg">Installing YImg</h5>
  203. <p>To build the a static YImg library on Mac OS X issue:</p>
  204. <pre><code>cd external/yimg
  205. make
  206. </code></pre>
  207. <p>You may need to install libpng. Systems with X11 might find this already
  208. installed at <code>/usr/X11/lib</code>.</p>
  209. <h3 id="windowsexperimental">Windows (Experimental)</h3>
  210. <p>To build a static library (.lib) on windows, open Visual Studio 2010.</p>
  211. <ul>
  212. <li>New &gt; Project &#8230;</li>
  213. <li>Visual C++ &gt; Win32</li>
  214. <li>Win32 Console Application</li>
  215. <li>Name: libiglVisualStudio</li>
  216. <li>Uncheck &#8220;Create directory for solution&#8221;</li>
  217. <li>Then hit OK, and then Next</li>
  218. <li>Check &#8220;Static Library&#8221;</li>
  219. <li>Uncheck &#8220;Precompiled headers&#8221;</li>
  220. <li>Add all include/igl/*.cpp to the sources directory</li>
  221. <li>Add all include/igl/*.h to the headers directory</li>
  222. <li>Open Project &gt; libigl Properties&#8230;</li>
  223. <li>Add the path to eigen3 to the include paths</li>
  224. <li>Change the target name to libigl</li>
  225. <li>Build and pray (this should create libigl.lib</li>
  226. </ul>
  227. <p><a href="http://msdn.microsoft.com/en-us/library/ms235627(v=vs.80).aspx">Source</a></p>
  228. <h2 id="examples">Examples</h2>
  229. <p>To get started, we advise that you take a look at a few examples:</p>
  230. <pre><code>./examples/hello-world/
  231. ./examples/meshio/
  232. ./examples/basic-topology/
  233. ./examples/ReAntTweakBar/
  234. </code></pre>
  235. <h2 id="extras">Extras</h2>
  236. <p>Libigl compartmentalizes dependences via its organization into a <em>main</em> libigl
  237. library and &#8220;extras.&#8221;</p>
  238. <h3 id="bbw">bbw</h3>
  239. <p>This library extra contains functions for computing Bounded Biharmonic Weights, can
  240. be used with and without the <a href="#mosek">mosek</a> extra via the <code>IGL_NO_MOSEK</code>
  241. macro.</p>
  242. <h3 id="boost">boost</h3>
  243. <p>This library extra utilizes the graph functions in the boost library for find
  244. connected components and performing breadth-first traversals.</p>
  245. <h3 id="cgal">cgal</h3>
  246. <p>This library extra utilizes CGAL&#8217;s efficient and exact intersection and
  247. proximity queries.</p>
  248. <h3 id="embree">embree</h3>
  249. <p>This library extra utilizes embree&#8217;s efficient ray tracing queries.</p>
  250. <h3 id="matlab">matlab</h3>
  251. <p>This library extra provides support for reading and writing <code>.mat</code> workspace
  252. files, interfacing with Matlab at run time and compiling mex functions.</p>
  253. <h3 id="mosek">mosek</h3>
  254. <p>This library extra utilizes mosek&#8217;s efficient interior-point solver for
  255. quadratic programs.</p>
  256. <h3 id="png">png</h3>
  257. <p>This library extra uses <code>libpng</code> and <code>YImage</code> to read and write <code>.png</code> files.</p>
  258. <h3 id="svd3x3">svd3x3</h3>
  259. <p>This library extra implements &#8220;as-rigid-as-possible&#8221; (ARAP) deformation
  260. techniques using the fast singular value decomposition routines
  261. written specifically for 3x3 matrices to use <code>SSE</code> intrinsics. This extra can
  262. still be compiled without sse support and support should be determined
  263. automatically at compile time via the <code>__SSE__</code> macro.</p>
  264. <h3 id="tetgen">tetgen</h3>
  265. <p>This library extra provides a simplified wrapper to the tetgen 3d tetrahedral meshing
  266. library.</p>
  267. <h3 id="viewer">viewer</h3>
  268. <p>This library extra utilizes glfw and glew to open an opengl context and launch
  269. a simple mesh viewer.</p>
  270. <h3 id="xml">xml</h3>
  271. <p>This library extra utilizes tinyxml2 to read and write serialized classes
  272. containing Eigen matrices and other standard simple data-structures.</p>
  273. <h2 id="development">Development</h2>
  274. <p>Further documentation for developers is listed in tutorial.html,
  275. style_guidelines.html</p>
  276. <h2 id="license">License</h2>
  277. <p>See <code>LICENSE.txt</code></p>
  278. <h2 id="zipping">Zipping</h2>
  279. <p>Zip this directory without .git litter and binaries using:</p>
  280. <pre><code>git archive -prefix=libigl/ -o libigl.zip master
  281. </code></pre>
  282. <h2 id="version1.0changes">Version 1.0 Changes</h2>
  283. <p>Our beta release marks our confidence that this library can be used outside of
  284. casual experimenting. To maintain order, we have made a few changes which
  285. current users should read and adapt their code accordingly.</p>
  286. <h3 id="renamedfunctions">Renamed functions</h3>
  287. <p>The following table lists functions which have changed name as of version
  288. 1.0.0:</p>
  289. <table>
  290. <colgroup>
  291. <col style="text-align:left;"/>
  292. <col style="text-align:left;"/>
  293. </colgroup>
  294. <thead>
  295. <tr>
  296. <th style="text-align:left;">Old</th>
  297. <th style="text-align:left;">New</th>
  298. </tr>
  299. </thead>
  300. <tbody>
  301. <tr>
  302. <td style="text-align:left;"><code>igl::add_barycenter</code></td>
  303. <td style="text-align:left;"><code>igl::false_barycentric_subdivision</code></td>
  304. </tr>
  305. <tr>
  306. <td style="text-align:left;"><code>igl::areamatrix</code></td>
  307. <td style="text-align:left;"><code>igl::vector_area_matrix</code></td>
  308. </tr>
  309. <tr>
  310. <td style="text-align:left;"><code>igl::barycentric2global</code></td>
  311. <td style="text-align:left;"><code>igl::barycentric_to_global</code></td>
  312. </tr>
  313. <tr>
  314. <td style="text-align:left;"><code>igl::boundary_faces</code></td>
  315. <td style="text-align:left;"><code>igl::boundary_facets</code></td>
  316. </tr>
  317. <tr>
  318. <td style="text-align:left;"><code>igl::boundary_vertices_sorted</code></td>
  319. <td style="text-align:left;"><code>igl::boundary_loop</code></td>
  320. </tr>
  321. <tr>
  322. <td style="text-align:left;"><code>igl::cotangent</code></td>
  323. <td style="text-align:left;"><code>igl::cotmatrix_entries</code></td>
  324. </tr>
  325. <tr>
  326. <td style="text-align:left;"><code>igl::edgetopology</code></td>
  327. <td style="text-align:left;"><code>igl::edge_topology</code></td>
  328. </tr>
  329. <tr>
  330. <td style="text-align:left;"><code>igl::gradMat</code></td>
  331. <td style="text-align:left;"><code>igl::grad</code></td>
  332. </tr>
  333. <tr>
  334. <td style="text-align:left;"><code>igl::is_manifold</code></td>
  335. <td style="text-align:left;"><code>igl::is_edge_manifold</code></td>
  336. </tr>
  337. <tr>
  338. <td style="text-align:left;"><code>igl::mexStream</code></td>
  339. <td style="text-align:left;"><code>igl::MexStream</code></td>
  340. </tr>
  341. <tr>
  342. <td style="text-align:left;"><code>igl::moveFV</code></td>
  343. <td style="text-align:left;"><code>igl::average_onto_vertices</code></td>
  344. </tr>
  345. <tr>
  346. <td style="text-align:left;"><code>igl::moveVF</code></td>
  347. <td style="text-align:left;"><code>igl::average_onto_faces</code></td>
  348. </tr>
  349. <tr>
  350. <td style="text-align:left;"><code>igl::plot_vector</code></td>
  351. <td style="text-align:left;"><code>igl::print_vector</code></td>
  352. </tr>
  353. <tr>
  354. <td style="text-align:left;"><code>igl::pos</code></td>
  355. <td style="text-align:left;"><code>igl::HalfEdgeIterator</code></td>
  356. </tr>
  357. <tr>
  358. <td style="text-align:left;"><code>igl::plane_project</code></td>
  359. <td style="text-align:left;"><code>igl::project_isometrically_to_plane</code></td>
  360. </tr>
  361. <tr>
  362. <td style="text-align:left;"><code>igl::project_points_mesh</code></td>
  363. <td style="text-align:left;"><code>igl::line_mesh_intersection</code></td>
  364. </tr>
  365. <tr>
  366. <td style="text-align:left;"><code>igl::read</code></td>
  367. <td style="text-align:left;"><code>igl::read_triangle_mesh</code></td>
  368. </tr>
  369. <tr>
  370. <td style="text-align:left;"><code>igl::removeDuplicates.cpp</code></td>
  371. <td style="text-align:left;"><code>igl::remove_duplicates</code></td>
  372. </tr>
  373. <tr>
  374. <td style="text-align:left;"><code>igl::removeUnreferenced</code></td>
  375. <td style="text-align:left;"><code>igl::remove_unreferenced</code></td>
  376. </tr>
  377. <tr>
  378. <td style="text-align:left;"><code>igl::tt</code></td>
  379. <td style="text-align:left;"><code>igl::triangle_triangle_adjacency</code></td>
  380. </tr>
  381. <tr>
  382. <td style="text-align:left;"><code>igl::vf</code></td>
  383. <td style="text-align:left;"><code>igl::vertex_triangle_adjacency</code></td>
  384. </tr>
  385. <tr>
  386. <td style="text-align:left;"><code>igl::write</code></td>
  387. <td style="text-align:left;"><code>igl::write_triangle_mesh</code></td>
  388. </tr>
  389. <tr>
  390. <td style="text-align:left;"><code>igl::manifold_patches</code></td>
  391. <td style="text-align:left;"><code>igl::orientable_patches</code></td>
  392. </tr>
  393. <tr>
  394. <td style="text-align:left;"><code>igl::selfintersect</code></td>
  395. <td style="text-align:left;"><code>igl::remesh_self_intersections</code></td>
  396. </tr>
  397. <tr>
  398. <td style="text-align:left;"><code>igl::project_mesh</code></td>
  399. <td style="text-align:left;"><code>igl::line_mesh_intersection</code></td>
  400. </tr>
  401. <tr>
  402. <td style="text-align:left;"><code>igl::triangulate</code></td>
  403. <td style="text-align:left;"><code>igl::polygon_mesh_to_triangle_mesh</code></td>
  404. </tr>
  405. <tr>
  406. <td style="text-align:left;"><code>igl::is_manifold</code></td>
  407. <td style="text-align:left;"><code>igl::is_edge_manifold</code></td>
  408. </tr>
  409. <tr>
  410. <td style="text-align:left;"><code>igl::triangle_wrapper</code></td>
  411. <td style="text-align:left;"><code>igl::triangulate</code></td>
  412. </tr>
  413. </tbody>
  414. </table>
  415. <h3 id="miscellaneous">Miscellaneous</h3>
  416. <ul>
  417. <li>To match interfaces provided by (all) other quadratic optimization
  418. libraries, <code>igl::min_quad_with_fixed</code> and <code>igl::active_set</code> now expect as
  419. input twice the quadratic coefficients matrix, i.e. the Hessian. For
  420. example, <code>igl::min_quad_with_fixed(H,B,...)</code> minimizes <span class="math">\(\frac{1}{2}x^T H
  421. x+x^T B\)</span>.</li>
  422. <li>We have inverted the <code>IGL_HEADER_ONLY</code> macro to <code>IGL_STATIC_LIBRARY</code>. To
  423. compile using libigl as a header-only library, simply include headers and
  424. libigl in the header search path. To link to libigl, you must define the
  425. <code>IGL_STATIC_LIBRARY</code> macro at compile time and link to the <code>libigl*.a</code>
  426. libraries.</li>
  427. <li>Building libigl as a static library is now more organized. There is a
  428. <code>build/</code> directory with Makefiles for the main library (<code>Makefile</code>) and each
  429. dependency (e.g. <code>Makefile_mosek</code> for <code>libiglmosek.a</code>)</li>
  430. <li><code>igl::polar_svd</code> now always returns a rotation in <code>R</code>, never a reflection.
  431. This mirrors the behavior of <code>igl::polar_svd3x3</code>. Consequently the <code>T</code>
  432. part may have negative skews.</li>
  433. <li>We have organized the static</li>
  434. <li>The previous <code>igl::grad</code> function, which computed the per-triangle gradient
  435. of a per-vertex scalar function has been replaced. Now <code>igl::grad</code> computes
  436. the linear operator (previous computed using <code>igl::gradMat</code>). The gradient
  437. values can still be recovered by multiplying the operator against the scalar
  438. field as a vector and reshaping to have gradients per row.</li>
  439. <li><code>MASSMATRIX_*</code> has become <code>MASSMATRIX_TYPE_*</code></li>
  440. <li>The function <code>igl::project_normals</code>, which cast a line for each vertex of
  441. mesh <em>A</em> in the normal direction and found the closest intersection along
  442. these lines with mesh <em>B</em>, has been removed.</li>
  443. </ul>
  444. <h2 id="contact">Contact</h2>
  445. <p>Libigl is a group endeavor led by Alec Jacobson and Daniele Panozzo. Please
  446. contact <a href="&#109;&#97;&#105;&#108;&#x74;&#111;&#x3a;&#x61;&#x6c;&#101;&#x63;&#x6a;&#x61;&#x63;&#111;&#98;&#115;&#111;&#110;&#64;&#103;&#109;&#x61;&#105;&#108;&#x2e;&#x63;&#x6f;&#x6d;">&#97;&#x6c;&#x65;&#99;&#106;&#97;&#x63;&#111;&#x62;&#x73;&#x6f;&#110;&#x40;&#103;&#x6d;&#x61;&#105;&#x6c;&#x2e;&#x63;&#x6f;&#x6d;</a> if you have
  447. questions or comments. We are happy to get feedback! Enjoy!</p>
  448. <p>If you&#8217;re using libigl in your projects, quickly <a href="&#x6d;&#97;&#x69;&#x6c;&#116;&#x6f;&#x3a;&#97;&#x6c;&#101;&#x63;&#106;&#97;&#x63;&#x6f;&#98;&#115;&#x6f;&#x6e;&#64;&#103;&#x6d;&#97;&#105;&#108;&#x2e;&#x63;&#111;&#x6d;">&#x64;&#x72;&#111;&#112; &#117;&#x73; &#x61;
  449. &#x6e;&#x6f;&#116;&#101;</a>. Tell us who you are and what you&#8217;re using
  450. it for. This helps us apply for funding and justify spending time maintaining
  451. this.</p>
  452. <p>If you find bugs or have problems please use our <a href="https://github.com/libigl/libigl/issues">github issue tracking
  453. page</a>.</p>
  454. <h2 id="academiccitation">Academic citation</h2>
  455. <p>If you use libigl in your research projects, please cite the papers we
  456. implement as appropriate. To cite the library in general, you could use this
  457. BibTeX entry:</p>
  458. <pre><code class="bibtex">@misc{libigl,
  459. title = {{libigl}: A simple {C++} geometry processing library},
  460. author = {Alec Jacobson and Daniele Panozzo and others},
  461. note = {http://igl.ethz.ch/projects/libigl/},
  462. year = {2014},
  463. }
  464. </code></pre>
  465. </body>
  466. </html>