implemented-papers.tex 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. \documentclass[12pt]{diary}
  2. \immediate\write18{bibtex \jobname}
  3. \title{Papers implemented in \textsc{libigl}}
  4. \author{Alec Jacobson}
  5. \date{4 April 2014}
  6. \begin{document}
  7. This document serves as a companion reference to better list the references to
  8. scientific articles implemented within \textsc{libigl}. It will no doubt be
  9. incomplete.
  10. \paragraph{\texttt{cotmatrix}, \texttt{massmatrix}}
  11. build discrete operators on triangle and tetrahedral meshes.
  12. \cite{Pinkall:1993:CDM,meyer03ddo,Jacobson:THESIS:2013}.
  13. \paragraph{\texttt{harmonic}} solves a Laplace problem (equivalently
  14. minimizes the Dirichlet energy) with some simple boundary conditions
  15. \cite{HarmonicCoodinates07}. There's also an option to solve
  16. ``higher order Laplace problems'' (bi-Laplace, tri-Laplace, etc.)
  17. \cite{Botsch:2004:AIF,sorkine04lsm,Jacobson:MixedFEM:2010}.
  18. \paragraph{\texttt{bbw/}} implements ``bounded biharmonic
  19. weights'' \cite{Jacobson:BBW:2011}.
  20. \paragraph{\texttt{svd3x3/arap}} is a generalized implementation
  21. for solving ``as-rigid-as-possible'' (ARAP) mesh deformation or parameterization
  22. problems \cite{ARAP_modeling:2007,Liu:2008:ALA,Chao:2010:ASG}.
  23. \paragraph{\texttt{svd3x3/arap\_dof}} implements ``FAST'',
  24. which is simultaneously a reduced form of ARAP and a method for automatically
  25. choosing skinning transformations \cite{Jacobson:FAST:2012}.
  26. \paragraph{\texttt{dqs}} implements ``Dual quaternion skinning''
  27. \cite{Kavan:2008:GSW}.
  28. \paragraph{\texttt{lbs}} implements ``linear blend skinning'', also known as
  29. ``skeletal subspace deformation'', or ``enveloping''. This technique is often
  30. attributed to \cite{Magnenat-Thalmann:1988:JLD}.
  31. \bibliographystyle{acmsiggraph}
  32. \bibliography{references}
  33. \end{document}
  34. __END__