gitextract_86hlkog7/ ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── components/ │ ├── field_computation/ │ │ ├── AutoRemesher.h │ │ ├── AutoRemesherMio.h │ │ ├── basic_setup.txt │ │ ├── basic_setup_mechanical.txt │ │ ├── basic_setup_organic.txt │ │ ├── compute_field_300_mechanical.command │ │ ├── compute_field_300_organic.command │ │ ├── field_computation │ │ ├── field_computation.pro │ │ ├── fields/ │ │ │ ├── field_smoother.h │ │ │ ├── n_polyvector.cpp │ │ │ ├── n_polyvector.h │ │ │ ├── polyroots.cpp │ │ │ └── polyroots.h │ │ ├── gl_utils.h │ │ ├── glwidget.cpp │ │ ├── glwidget.h │ │ ├── main.cpp │ │ ├── mesh_field_smoother.h │ │ ├── mesh_manager.h │ │ ├── poly_mesh_type.h │ │ └── triangle_mesh_type.h │ ├── field_tracing/ │ │ ├── basic_setup.txt │ │ ├── field_tracing │ │ ├── field_tracing.pro │ │ ├── glwidget.cpp │ │ ├── glwidget.h │ │ ├── main.cpp │ │ ├── moc_glwidget.cpp │ │ ├── trace_field_300_mechanical.command │ │ └── trace_field_300_organic.command │ ├── quad_from_patches/ │ │ ├── basic_setup.txt │ │ ├── configuration.pri │ │ ├── field_smoother.h │ │ ├── load_save.cpp │ │ ├── load_save.h │ │ ├── local_para_smooth.h │ │ ├── main.cpp │ │ ├── mesh_types.h │ │ ├── quad_from_patches.cpp │ │ ├── quad_from_patches.h │ │ ├── quad_from_patches.pro │ │ ├── quad_mesh_tracer.cpp │ │ ├── quad_mesh_tracer.h │ │ ├── quadrangulate_300_mechanical.command │ │ ├── quadrangulate_300_organic.command │ │ ├── quadrangulate_loopy_cuts.command │ │ ├── quadrangulatedataset.sh │ │ ├── smooth_mesh.h │ │ ├── test_edge.obj │ │ ├── test_tri.obj │ │ └── test_tri.obj.mtl │ ├── results_processing/ │ │ ├── lazy_website/ │ │ │ └── index.php │ │ ├── libs.pri │ │ ├── orientability_check/ │ │ │ ├── main.cpp │ │ │ ├── mesh_def.h │ │ │ ├── orientability_check.pro │ │ │ └── readme.txt │ │ ├── polyMetrics/ │ │ │ ├── external/ │ │ │ │ ├── matplotlib-cpp/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── LICENSE.matplotlib │ │ │ │ │ ├── README.md │ │ │ │ │ ├── contrib/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── examples/ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── animation.cpp │ │ │ │ │ │ ├── bar.cpp │ │ │ │ │ │ ├── basic.cpp │ │ │ │ │ │ ├── fill.cpp │ │ │ │ │ │ ├── fill_inbetween.cpp │ │ │ │ │ │ ├── imshow.cpp │ │ │ │ │ │ ├── minimal.cpp │ │ │ │ │ │ ├── modern.cpp │ │ │ │ │ │ ├── nonblock.cpp │ │ │ │ │ │ ├── quiver.cpp │ │ │ │ │ │ ├── subplot.cpp │ │ │ │ │ │ ├── subplot2grid.cpp │ │ │ │ │ │ ├── surface.cpp │ │ │ │ │ │ ├── update.cpp │ │ │ │ │ │ └── xkcd.cpp │ │ │ │ │ ├── matplotlibcpp.h │ │ │ │ │ └── numpy_flags.py │ │ │ │ └── nlohmann/ │ │ │ │ └── json.hpp │ │ │ ├── main.cpp │ │ │ ├── mesh_def.h │ │ │ ├── polyMetrics.pro │ │ │ └── readme.txt │ │ └── snapshotRenderer/ │ │ ├── blenderBatchFolderRender.py │ │ ├── blenderBatchRender.py │ │ ├── readme.txt │ │ └── snapshots.blend │ └── viz_mesh_results/ │ ├── configuration.pri │ ├── main.cpp │ ├── mesh_types.h │ ├── viz_mesh_result │ └── viz_mesh_results.pro ├── libs/ │ ├── CoMISo/ │ │ ├── CHANGELOG │ │ ├── CMakeLists LIBIGL.txt │ │ ├── CMakeLists.txt │ │ ├── CMakeListsOLD.txt │ │ ├── COPYING │ │ ├── CoMISo.cmake │ │ ├── CoMISo_BUILD_LINUX.txt │ │ ├── Config/ │ │ │ ├── CoMISoDefines.hh │ │ │ ├── config.hh │ │ │ └── config.hh.in │ │ ├── EigenSolver/ │ │ │ ├── ArpackSolver.cc │ │ │ ├── ArpackSolver.hh │ │ │ ├── EigenArpackMatrixT.cc │ │ │ └── EigenArpackMatrixT.hh │ │ ├── Examples/ │ │ │ ├── factored_solver/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cc │ │ │ ├── quadratic_solver/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cc │ │ │ ├── small_eigenproblem/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cc │ │ │ ├── small_factored_example/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cc │ │ │ ├── small_miqp/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cc │ │ │ ├── small_nleast_squares/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cc │ │ │ ├── small_nsolver/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cc │ │ │ ├── small_quadratic_example/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cc │ │ │ ├── small_quadratic_resolve_example/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cc │ │ │ └── small_sparseqr/ │ │ │ ├── CMakeLists.txt │ │ │ └── main.cc │ │ ├── NSolver/ │ │ │ ├── BoundConstraint.cc │ │ │ ├── BoundConstraint.hh │ │ │ ├── COMISOSolver.cc │ │ │ ├── COMISOSolver.hh │ │ │ ├── CPLEXSolver.cc │ │ │ ├── CPLEXSolver.hh │ │ │ ├── CPLEXSolverT.cc │ │ │ ├── GUROBISolver.cc │ │ │ ├── GUROBISolver.hh │ │ │ ├── GurobiHelper.cc │ │ │ ├── GurobiHelper.hh │ │ │ ├── IPOPTSolver.cc │ │ │ ├── IPOPTSolver.hh │ │ │ ├── LeastSquaresProblem.cc │ │ │ ├── LeastSquaresProblem.hh │ │ │ ├── LinearConstraint.cc │ │ │ ├── LinearConstraint.hh │ │ │ ├── LinearConstraintHandlerElimination.cc │ │ │ ├── LinearConstraintHandlerElimination.hh │ │ │ ├── LinearConstraintHandlerEliminationT.cc │ │ │ ├── LinearConstraintHandlerPenalty.cc │ │ │ ├── LinearConstraintHandlerPenalty.hh │ │ │ ├── LinearConstraintHandlerPenaltyT.cc │ │ │ ├── NConstraintInterface.hh │ │ │ ├── NPDerivativeChecker.hh │ │ │ ├── NPLinearConstraints.cc │ │ │ ├── NPLinearConstraints.hh │ │ │ ├── NPLinearConstraintsT.cc │ │ │ ├── NPTiming.cc │ │ │ ├── NPTiming.hh │ │ │ ├── NProblemGmmInterface.hh │ │ │ ├── NProblemInterface.cc │ │ │ ├── NProblemInterface.hh │ │ │ ├── NewtonSolver.cc │ │ │ ├── NewtonSolver.hh │ │ │ ├── SuperSparseMatrixT.cc │ │ │ ├── SuperSparseMatrixT.hh │ │ │ ├── TAOSolver.cc │ │ │ ├── TAOSolver.hh │ │ │ ├── TestInterface.hh │ │ │ └── VariableType.hh │ │ ├── QtWidgets/ │ │ │ ├── MISolverDialogUI.cc │ │ │ ├── MISolverDialogUI.hh │ │ │ └── QtMISolverDialogBaseUI.ui │ │ ├── README.txt │ │ ├── Solver/ │ │ │ ├── CholmodSolver.cc │ │ │ ├── CholmodSolver.hh │ │ │ ├── CholmodSolverT.cc │ │ │ ├── ConstrainedSolver.cc │ │ │ ├── ConstrainedSolver.hh │ │ │ ├── ConstrainedSolverT.cc │ │ │ ├── EigenLDLTSolver.cc │ │ │ ├── EigenLDLTSolver.hh │ │ │ ├── EigenLDLTSolverT.cc │ │ │ ├── Eigen_Tools.cc │ │ │ ├── Eigen_Tools.hh │ │ │ ├── GMM_Tools.cc │ │ │ ├── GMM_Tools.hh │ │ │ ├── IterativeSolverT.cc │ │ │ ├── IterativeSolverT.hh │ │ │ ├── MISolver.cc │ │ │ ├── MISolver.hh │ │ │ ├── MISolverT.cc │ │ │ ├── SparseQRSolver.cc │ │ │ ├── SparseQRSolver.hh │ │ │ ├── SparseQRSolverT.cc │ │ │ ├── TaucsSolver.cc │ │ │ ├── TaucsSolver.hh │ │ │ ├── TaucsSolverT.cc │ │ │ ├── UMFPACKSolver.cc │ │ │ ├── UMFPACKSolver.hh │ │ │ └── UMFPACKSolverT.cc │ │ ├── Utils/ │ │ │ ├── MutablePriorityQueueT.hh │ │ │ ├── StopWatch.hh │ │ │ └── VSToolsT.hh │ │ ├── VERSION │ │ ├── cmake/ │ │ │ ├── ACGCommon.cmake │ │ │ ├── ACGCompiler.cmake │ │ │ ├── ACGOutput.cmake │ │ │ ├── CGAL_FindPackageHandleStandardArgs.cmake │ │ │ ├── CGAL_GeneratorSpecificSettings.cmake │ │ │ ├── CGAL_Locate_CGAL_TAUCS.cmake │ │ │ ├── CGAL_Macros.cmake │ │ │ ├── CheckCSourceRuns.cmake │ │ │ ├── CoMISoExample.cmake │ │ │ ├── FindARPACK.cmake │ │ │ ├── FindBLAS.cmake │ │ │ ├── FindCGAL.cmake │ │ │ ├── FindCPLEX.cmake │ │ │ ├── FindCoMISo.cmake │ │ │ ├── FindEigen3.cmake │ │ │ ├── FindGMM.cmake │ │ │ ├── FindGMP.cmake │ │ │ ├── FindGUROBI.cmake │ │ │ ├── FindIPOPT.cmake │ │ │ ├── FindLAPACK.cmake │ │ │ ├── FindMETIS.cmake │ │ │ ├── FindMPI.cmake │ │ │ ├── FindMUMPS.cmake │ │ │ ├── FindPETSC.cmake │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ ├── FindPackageMultipass.cmake │ │ │ ├── FindQt4.cmake │ │ │ ├── FindSUITESPARSE.cmake │ │ │ ├── FindTAO.cmake │ │ │ ├── FindTaucs.cmake │ │ │ └── ResolveCompilerPaths.cmake │ │ └── gmm/ │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.in │ │ ├── depcomp │ │ ├── gmm-config.in │ │ ├── include/ │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ └── gmm/ │ │ │ ├── gmm.h │ │ │ ├── gmm_MUMPS_interface.h │ │ │ ├── gmm_algobase.h │ │ │ ├── gmm_blas.h │ │ │ ├── gmm_blas_interface.h │ │ │ ├── gmm_condition_number.h │ │ │ ├── gmm_conjugated.h │ │ │ ├── gmm_def.h │ │ │ ├── gmm_dense_Householder.h │ │ │ ├── gmm_dense_lu.h │ │ │ ├── gmm_dense_qr.h │ │ │ ├── gmm_dense_sylvester.h │ │ │ ├── gmm_domain_decomp.h │ │ │ ├── gmm_except.h │ │ │ ├── gmm_inoutput.h │ │ │ ├── gmm_interface.h │ │ │ ├── gmm_interface_bgeot.h │ │ │ ├── gmm_iter.h │ │ │ ├── gmm_iter_solvers.h │ │ │ ├── gmm_kernel.h │ │ │ ├── gmm_lapack_interface.h │ │ │ ├── gmm_least_squares_cg.h │ │ │ ├── gmm_matrix.h │ │ │ ├── gmm_modified_gram_schmidt.h │ │ │ ├── gmm_opt.h │ │ │ ├── gmm_precond.h │ │ │ ├── gmm_precond_diagonal.h │ │ │ ├── gmm_precond_ildlt.h │ │ │ ├── gmm_precond_ildltt.h │ │ │ ├── gmm_precond_ilu.h │ │ │ ├── gmm_precond_ilut.h │ │ │ ├── gmm_precond_ilutp.h │ │ │ ├── gmm_precond_mr_approx_inverse.h │ │ │ ├── gmm_range_basis.h │ │ │ ├── gmm_real_part.h │ │ │ ├── gmm_ref.h │ │ │ ├── gmm_scaled.h │ │ │ ├── gmm_solver_Schwarz_additive.h │ │ │ ├── gmm_solver_bfgs.h │ │ │ ├── gmm_solver_bicgstab.h │ │ │ ├── gmm_solver_cg.h │ │ │ ├── gmm_solver_constrained_cg.h │ │ │ ├── gmm_solver_gmres.h │ │ │ ├── gmm_solver_idgmres.h │ │ │ ├── gmm_solver_qmr.h │ │ │ ├── gmm_std.h │ │ │ ├── gmm_sub_index.h │ │ │ ├── gmm_sub_matrix.h │ │ │ ├── gmm_sub_vector.h │ │ │ ├── gmm_superlu_interface.h │ │ │ ├── gmm_transposed.h │ │ │ ├── gmm_tri_solve.h │ │ │ ├── gmm_vector.h │ │ │ └── gmm_vector_to_matrix.h │ │ ├── install-sh │ │ ├── ltmain.sh │ │ ├── m4/ │ │ │ ├── ax_check_cxx_flag.m4 │ │ │ ├── ax_prefix_config_h.m4 │ │ │ ├── libtool.m4 │ │ │ ├── ltoptions.m4 │ │ │ ├── ltsugar.m4 │ │ │ ├── ltversion.m4 │ │ │ └── lt~obsolete.m4 │ │ ├── missing │ │ └── tests/ │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── dummy.cc │ │ ├── gmm_torture01_lusolve.cc │ │ ├── gmm_torture02_baseop.cc │ │ ├── gmm_torture05_mult.cc │ │ ├── gmm_torture06_mat_mult.cc │ │ ├── gmm_torture10_qr.cc │ │ ├── gmm_torture15_sub.cc │ │ ├── gmm_torture20_iterative_solvers.cc │ │ └── make_gmm_test.pl │ ├── eigen/ │ │ ├── CMakeLists.txt │ │ ├── COPYING.BSD │ │ ├── COPYING.GPL │ │ ├── COPYING.LGPL │ │ ├── COPYING.MINPACK │ │ ├── COPYING.MPL2 │ │ ├── COPYING.README │ │ ├── CTestConfig.cmake │ │ ├── CTestCustom.cmake.in │ │ ├── Eigen/ │ │ │ ├── Array │ │ │ ├── CMakeLists.txt │ │ │ ├── Cholesky │ │ │ ├── CholmodSupport │ │ │ ├── Core │ │ │ ├── Dense │ │ │ ├── Eigen │ │ │ ├── Eigen2Support │ │ │ ├── Eigenvalues │ │ │ ├── Geometry │ │ │ ├── Householder │ │ │ ├── IterativeLinearSolvers │ │ │ ├── Jacobi │ │ │ ├── LU │ │ │ ├── LeastSquares │ │ │ ├── MetisSupport │ │ │ ├── OrderingMethods │ │ │ ├── PaStiXSupport │ │ │ ├── PardisoSupport │ │ │ ├── QR │ │ │ ├── QtAlignedMalloc │ │ │ ├── SPQRSupport │ │ │ ├── SVD │ │ │ ├── Sparse │ │ │ ├── SparseCholesky │ │ │ ├── SparseCore │ │ │ ├── SparseLU │ │ │ ├── SparseQR │ │ │ ├── StdDeque │ │ │ ├── StdList │ │ │ ├── StdVector │ │ │ ├── SuperLUSupport │ │ │ ├── UmfPackSupport │ │ │ └── src/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Cholesky/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LDLT.h │ │ │ │ ├── LLT.h │ │ │ │ └── LLT_MKL.h │ │ │ ├── CholmodSupport/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── CholmodSupport.h │ │ │ ├── Core/ │ │ │ │ ├── Array.h │ │ │ │ ├── ArrayBase.h │ │ │ │ ├── ArrayWrapper.h │ │ │ │ ├── Assign.h │ │ │ │ ├── Assign_MKL.h │ │ │ │ ├── BandMatrix.h │ │ │ │ ├── Block.h │ │ │ │ ├── BooleanRedux.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CommaInitializer.h │ │ │ │ ├── CoreIterators.h │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ ├── DenseBase.h │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ ├── DenseStorage.h │ │ │ │ ├── Diagonal.h │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ ├── DiagonalProduct.h │ │ │ │ ├── Dot.h │ │ │ │ ├── EigenBase.h │ │ │ │ ├── Flagged.h │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ ├── Functors.h │ │ │ │ ├── Fuzzy.h │ │ │ │ ├── GeneralProduct.h │ │ │ │ ├── GenericPacketMath.h │ │ │ │ ├── GlobalFunctions.h │ │ │ │ ├── IO.h │ │ │ │ ├── Map.h │ │ │ │ ├── MapBase.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── Matrix.h │ │ │ │ ├── MatrixBase.h │ │ │ │ ├── NestByValue.h │ │ │ │ ├── NoAlias.h │ │ │ │ ├── NumTraits.h │ │ │ │ ├── PermutationMatrix.h │ │ │ │ ├── PlainObjectBase.h │ │ │ │ ├── ProductBase.h │ │ │ │ ├── Random.h │ │ │ │ ├── Redux.h │ │ │ │ ├── Ref.h │ │ │ │ ├── Replicate.h │ │ │ │ ├── ReturnByValue.h │ │ │ │ ├── Reverse.h │ │ │ │ ├── Select.h │ │ │ │ ├── SelfAdjointView.h │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ ├── SolveTriangular.h │ │ │ │ ├── StableNorm.h │ │ │ │ ├── Stride.h │ │ │ │ ├── Swap.h │ │ │ │ ├── Transpose.h │ │ │ │ ├── Transpositions.h │ │ │ │ ├── TriangularMatrix.h │ │ │ │ ├── VectorBlock.h │ │ │ │ ├── VectorwiseOp.h │ │ │ │ ├── Visitor.h │ │ │ │ ├── arch/ │ │ │ │ │ ├── AltiVec/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Default/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── Settings.h │ │ │ │ │ ├── NEON/ │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ └── SSE/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── products/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── CoeffBasedProduct.h │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_MKL.h │ │ │ │ │ ├── GeneralMatrixMatrix_MKL.h │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ ├── GeneralMatrixVector_MKL.h │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ ├── SelfadjointMatrixMatrix_MKL.h │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ ├── SelfadjointMatrixVector_MKL.h │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ ├── TriangularMatrixMatrix_MKL.h │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ ├── TriangularMatrixVector_MKL.h │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ ├── TriangularSolverMatrix_MKL.h │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ └── util/ │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigen2Support/ │ │ │ │ ├── Block.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Cwise.h │ │ │ │ ├── CwiseOperators.h │ │ │ │ ├── Geometry/ │ │ │ │ │ ├── AlignedBox.h │ │ │ │ │ ├── All.h │ │ │ │ │ ├── AngleAxis.h │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Hyperplane.h │ │ │ │ │ ├── ParametrizedLine.h │ │ │ │ │ ├── Quaternion.h │ │ │ │ │ ├── Rotation2D.h │ │ │ │ │ ├── RotationBase.h │ │ │ │ │ ├── Scaling.h │ │ │ │ │ ├── Transform.h │ │ │ │ │ └── Translation.h │ │ │ │ ├── LU.h │ │ │ │ ├── Lazy.h │ │ │ │ ├── LeastSquares.h │ │ │ │ ├── Macros.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── Minor.h │ │ │ │ ├── QR.h │ │ │ │ ├── SVD.h │ │ │ │ ├── TriangularSolver.h │ │ │ │ └── VectorBlock.h │ │ │ ├── Eigenvalues/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ ├── ComplexSchur.h │ │ │ │ ├── ComplexSchur_MKL.h │ │ │ │ ├── EigenSolver.h │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ ├── RealQZ.h │ │ │ │ ├── RealSchur.h │ │ │ │ ├── RealSchur_MKL.h │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ ├── SelfAdjointEigenSolver_MKL.h │ │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry/ │ │ │ │ ├── AlignedBox.h │ │ │ │ ├── AngleAxis.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── EulerAngles.h │ │ │ │ ├── Homogeneous.h │ │ │ │ ├── Hyperplane.h │ │ │ │ ├── OrthoMethods.h │ │ │ │ ├── ParametrizedLine.h │ │ │ │ ├── Quaternion.h │ │ │ │ ├── Rotation2D.h │ │ │ │ ├── RotationBase.h │ │ │ │ ├── Scaling.h │ │ │ │ ├── Transform.h │ │ │ │ ├── Translation.h │ │ │ │ ├── Umeyama.h │ │ │ │ └── arch/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder/ │ │ │ │ ├── BlockHouseholder.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Householder.h │ │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers/ │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ ├── BiCGSTAB.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConjugateGradient.h │ │ │ │ ├── IncompleteLUT.h │ │ │ │ └── IterativeSolverBase.h │ │ │ ├── Jacobi/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Jacobi.h │ │ │ ├── LU/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Determinant.h │ │ │ │ ├── FullPivLU.h │ │ │ │ ├── Inverse.h │ │ │ │ ├── PartialPivLU.h │ │ │ │ ├── PartialPivLU_MKL.h │ │ │ │ └── arch/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Inverse_SSE.h │ │ │ ├── MetisSupport/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods/ │ │ │ │ ├── Amd.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── PardisoSupport.h │ │ │ ├── QR/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ ├── ColPivHouseholderQR_MKL.h │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ ├── HouseholderQR.h │ │ │ │ └── HouseholderQR_MKL.h │ │ │ ├── SPQRSupport/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JacobiSVD.h │ │ │ │ ├── JacobiSVD_MKL.h │ │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore/ │ │ │ │ ├── AmbiVector.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CompressedStorage.h │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ ├── SparseBlock.h │ │ │ │ ├── SparseColEtree.h │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ ├── SparseDot.h │ │ │ │ ├── SparseFuzzy.h │ │ │ │ ├── SparseMatrix.h │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ ├── SparsePermutation.h │ │ │ │ ├── SparseProduct.h │ │ │ │ ├── SparseRedux.h │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ ├── SparseTranspose.h │ │ │ │ ├── SparseTriangularView.h │ │ │ │ ├── SparseUtil.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── SparseView.h │ │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SparseLU.h │ │ │ │ ├── SparseLUImpl.h │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── SparseQR.h │ │ │ ├── StlSupport/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── StdDeque.h │ │ │ │ ├── StdList.h │ │ │ │ ├── StdVector.h │ │ │ │ └── details.h │ │ │ ├── SuperLUSupport/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── UmfPackSupport.h │ │ │ ├── misc/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Image.h │ │ │ │ ├── Kernel.h │ │ │ │ ├── Solve.h │ │ │ │ ├── SparseSolve.h │ │ │ │ └── blas.h │ │ │ └── plugins/ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ │ ├── INSTALL │ │ ├── bench/ │ │ │ ├── BenchSparseUtil.h │ │ │ ├── BenchTimer.h │ │ │ ├── BenchUtil.h │ │ │ ├── README.txt │ │ │ ├── basicbench.cxxlist │ │ │ ├── basicbenchmark.cpp │ │ │ ├── basicbenchmark.h │ │ │ ├── benchBlasGemm.cpp │ │ │ ├── benchCholesky.cpp │ │ │ ├── benchEigenSolver.cpp │ │ │ ├── benchFFT.cpp │ │ │ ├── benchGeometry.cpp │ │ │ ├── benchVecAdd.cpp │ │ │ ├── bench_gemm.cpp │ │ │ ├── bench_multi_compilers.sh │ │ │ ├── bench_norm.cpp │ │ │ ├── bench_reverse.cpp │ │ │ ├── bench_sum.cpp │ │ │ ├── bench_unrolling │ │ │ ├── benchmark.cpp │ │ │ ├── benchmarkSlice.cpp │ │ │ ├── benchmarkX.cpp │ │ │ ├── benchmarkXcwise.cpp │ │ │ ├── benchmark_suite │ │ │ ├── btl/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── COPYING │ │ │ │ ├── README │ │ │ │ ├── actions/ │ │ │ │ │ ├── action_aat_product.hh │ │ │ │ │ ├── action_ata_product.hh │ │ │ │ │ ├── action_atv_product.hh │ │ │ │ │ ├── action_axpby.hh │ │ │ │ │ ├── action_axpy.hh │ │ │ │ │ ├── action_cholesky.hh │ │ │ │ │ ├── action_ger.hh │ │ │ │ │ ├── action_hessenberg.hh │ │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ │ ├── action_lu_solve.hh │ │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ │ ├── action_partial_lu.hh │ │ │ │ │ ├── action_rot.hh │ │ │ │ │ ├── action_symv.hh │ │ │ │ │ ├── action_syr2.hh │ │ │ │ │ ├── action_trisolve.hh │ │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ │ ├── action_trmm.hh │ │ │ │ │ └── basic_actions.hh │ │ │ │ ├── cmake/ │ │ │ │ │ ├── FindACML.cmake │ │ │ │ │ ├── FindATLAS.cmake │ │ │ │ │ ├── FindBlitz.cmake │ │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ │ ├── FindGMM.cmake │ │ │ │ │ ├── FindGOTO.cmake │ │ │ │ │ ├── FindGOTO2.cmake │ │ │ │ │ ├── FindMKL.cmake │ │ │ │ │ ├── FindMTL4.cmake │ │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ │ ├── FindTvmet.cmake │ │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ │ ├── data/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── action_settings.txt │ │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ │ ├── go_mean │ │ │ │ │ ├── mean.cxx │ │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ │ ├── mk_mean_script.sh │ │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ │ ├── regularize.cxx │ │ │ │ │ ├── smooth.cxx │ │ │ │ │ └── smooth_all.sh │ │ │ │ ├── generic_bench/ │ │ │ │ │ ├── bench.hh │ │ │ │ │ ├── bench_parameter.hh │ │ │ │ │ ├── btl.hh │ │ │ │ │ ├── init/ │ │ │ │ │ │ ├── init_function.hh │ │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ │ └── init_vector.hh │ │ │ │ │ ├── static/ │ │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ │ └── static_size_generator.hh │ │ │ │ │ ├── timers/ │ │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ │ └── x86_timer.hh │ │ │ │ │ └── utils/ │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ ├── size_log.hh │ │ │ │ │ ├── utilities.h │ │ │ │ │ └── xy_file.hh │ │ │ │ └── libs/ │ │ │ │ ├── BLAS/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── blas.h │ │ │ │ │ ├── blas_interface.hh │ │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ │ ├── c_interface_base.h │ │ │ │ │ └── main.cpp │ │ │ │ ├── STL/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── STL_interface.hh │ │ │ │ │ └── main.cpp │ │ │ │ ├── blitz/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ │ ├── blitz_interface.hh │ │ │ │ │ ├── btl_blitz.cpp │ │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ ├── eigen2/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ │ ├── eigen2_interface.hh │ │ │ │ │ ├── main_adv.cpp │ │ │ │ │ ├── main_linear.cpp │ │ │ │ │ ├── main_matmat.cpp │ │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── eigen3/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ │ ├── eigen3_interface.hh │ │ │ │ │ ├── main_adv.cpp │ │ │ │ │ ├── main_linear.cpp │ │ │ │ │ ├── main_matmat.cpp │ │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── gmm/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ │ ├── gmm_interface.hh │ │ │ │ │ └── main.cpp │ │ │ │ ├── mtl4/ │ │ │ │ │ ├── .kdbgrc.main │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ │ └── mtl4_interface.hh │ │ │ │ ├── tvmet/ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── tvmet_interface.hh │ │ │ │ └── ublas/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ublas_interface.hh │ │ │ ├── check_cache_queries.cpp │ │ │ ├── eig33.cpp │ │ │ ├── geometry.cpp │ │ │ ├── product_threshold.cpp │ │ │ ├── quat_slerp.cpp │ │ │ ├── quatmul.cpp │ │ │ ├── sparse_cholesky.cpp │ │ │ ├── sparse_dense_product.cpp │ │ │ ├── sparse_lu.cpp │ │ │ ├── sparse_product.cpp │ │ │ ├── sparse_randomsetter.cpp │ │ │ ├── sparse_setter.cpp │ │ │ ├── sparse_transpose.cpp │ │ │ ├── sparse_trisolver.cpp │ │ │ ├── spbench/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── sp_solver.cpp │ │ │ │ ├── spbench.dtd │ │ │ │ ├── spbenchsolver.cpp │ │ │ │ ├── spbenchsolver.h │ │ │ │ ├── spbenchstyle.h │ │ │ │ └── test_sparseLU.cpp │ │ │ ├── spmv.cpp │ │ │ └── vdw_new.cpp │ │ ├── blas/ │ │ │ ├── BandTriangularSolver.h │ │ │ ├── CMakeLists.txt │ │ │ ├── GeneralRank1Update.h │ │ │ ├── PackedSelfadjointProduct.h │ │ │ ├── PackedTriangularMatrixVector.h │ │ │ ├── PackedTriangularSolverVector.h │ │ │ ├── README.txt │ │ │ ├── Rank2Update.h │ │ │ ├── chbmv.f │ │ │ ├── chpmv.f │ │ │ ├── common.h │ │ │ ├── complex_double.cpp │ │ │ ├── complex_single.cpp │ │ │ ├── complexdots.f │ │ │ ├── ctbmv.f │ │ │ ├── double.cpp │ │ │ ├── drotm.f │ │ │ ├── drotmg.f │ │ │ ├── dsbmv.f │ │ │ ├── dspmv.f │ │ │ ├── dtbmv.f │ │ │ ├── level1_cplx_impl.h │ │ │ ├── level1_impl.h │ │ │ ├── level1_real_impl.h │ │ │ ├── level2_cplx_impl.h │ │ │ ├── level2_impl.h │ │ │ ├── level2_real_impl.h │ │ │ ├── level3_impl.h │ │ │ ├── lsame.f │ │ │ ├── single.cpp │ │ │ ├── srotm.f │ │ │ ├── srotmg.f │ │ │ ├── ssbmv.f │ │ │ ├── sspmv.f │ │ │ ├── stbmv.f │ │ │ ├── testing/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── cblat1.f │ │ │ │ ├── cblat2.f │ │ │ │ ├── cblat3.f │ │ │ │ ├── dblat1.f │ │ │ │ ├── dblat2.f │ │ │ │ ├── dblat3.f │ │ │ │ ├── runblastest.sh │ │ │ │ ├── sblat1.f │ │ │ │ ├── sblat2.f │ │ │ │ ├── sblat3.f │ │ │ │ ├── zblat1.f │ │ │ │ ├── zblat2.f │ │ │ │ └── zblat3.f │ │ │ ├── xerbla.cpp │ │ │ ├── zhbmv.f │ │ │ ├── zhpmv.f │ │ │ └── ztbmv.f │ │ ├── cmake/ │ │ │ ├── EigenConfigureTesting.cmake │ │ │ ├── EigenDetermineOSVersion.cmake │ │ │ ├── EigenDetermineVSServicePack.cmake │ │ │ ├── EigenTesting.cmake │ │ │ ├── FindAdolc.cmake │ │ │ ├── FindBLAS.cmake │ │ │ ├── FindCholmod.cmake │ │ │ ├── FindEigen2.cmake │ │ │ ├── FindEigen3.cmake │ │ │ ├── FindFFTW.cmake │ │ │ ├── FindGLEW.cmake │ │ │ ├── FindGMP.cmake │ │ │ ├── FindGSL.cmake │ │ │ ├── FindGoogleHash.cmake │ │ │ ├── FindLAPACK.cmake │ │ │ ├── FindMPFR.cmake │ │ │ ├── FindMetis.cmake │ │ │ ├── FindPastix.cmake │ │ │ ├── FindSPQR.cmake │ │ │ ├── FindScotch.cmake │ │ │ ├── FindStandardMathLibrary.cmake │ │ │ ├── FindSuperLU.cmake │ │ │ ├── FindUmfpack.cmake │ │ │ ├── RegexUtils.cmake │ │ │ └── language_support.cmake │ │ ├── debug/ │ │ │ ├── gdb/ │ │ │ │ ├── __init__.py │ │ │ │ └── printers.py │ │ │ └── msvc/ │ │ │ └── eigen.natvis │ │ ├── demos/ │ │ │ ├── CMakeLists.txt │ │ │ ├── mandelbrot/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README │ │ │ │ ├── mandelbrot.cpp │ │ │ │ └── mandelbrot.h │ │ │ ├── mix_eigen_and_c/ │ │ │ │ ├── README │ │ │ │ ├── binary_library.cpp │ │ │ │ ├── binary_library.h │ │ │ │ └── example.c │ │ │ └── opengl/ │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── gpuhelper.cpp │ │ │ ├── gpuhelper.h │ │ │ ├── icosphere.cpp │ │ │ ├── icosphere.h │ │ │ ├── quaternion_demo.cpp │ │ │ ├── quaternion_demo.h │ │ │ ├── trackball.cpp │ │ │ └── trackball.h │ │ ├── doc/ │ │ │ ├── A05_PortingFrom2To3.dox │ │ │ ├── A10_Eigen2SupportModes.dox │ │ │ ├── AsciiQuickReference.txt │ │ │ ├── B01_Experimental.dox │ │ │ ├── CMakeLists.txt │ │ │ ├── ClassHierarchy.dox │ │ │ ├── CustomizingEigen.dox │ │ │ ├── Doxyfile.in │ │ │ ├── FixedSizeVectorizable.dox │ │ │ ├── FunctionsTakingEigenTypes.dox │ │ │ ├── HiPerformance.dox │ │ │ ├── InsideEigenExample.dox │ │ │ ├── Manual.dox │ │ │ ├── MatrixfreeSolverExample.dox │ │ │ ├── Overview.dox │ │ │ ├── PassingByValue.dox │ │ │ ├── Pitfalls.dox │ │ │ ├── PreprocessorDirectives.dox │ │ │ ├── QuickReference.dox │ │ │ ├── QuickStartGuide.dox │ │ │ ├── SparseLinearSystems.dox │ │ │ ├── SparseQuickReference.dox │ │ │ ├── StlContainers.dox │ │ │ ├── StorageOrders.dox │ │ │ ├── StructHavingEigenMembers.dox │ │ │ ├── TemplateKeyword.dox │ │ │ ├── TopicAliasing.dox │ │ │ ├── TopicAssertions.dox │ │ │ ├── TopicEigenExpressionTemplates.dox │ │ │ ├── TopicLazyEvaluation.dox │ │ │ ├── TopicLinearAlgebraDecompositions.dox │ │ │ ├── TopicMultithreading.dox │ │ │ ├── TopicResizing.dox │ │ │ ├── TopicScalarTypes.dox │ │ │ ├── TopicVectorization.dox │ │ │ ├── TutorialAdvancedInitialization.dox │ │ │ ├── TutorialArrayClass.dox │ │ │ ├── TutorialBlockOperations.dox │ │ │ ├── TutorialGeometry.dox │ │ │ ├── TutorialLinearAlgebra.dox │ │ │ ├── TutorialMapClass.dox │ │ │ ├── TutorialMatrixArithmetic.dox │ │ │ ├── TutorialMatrixClass.dox │ │ │ ├── TutorialReductionsVisitorsBroadcasting.dox │ │ │ ├── TutorialSparse.dox │ │ │ ├── TutorialSparse_example_details.dox │ │ │ ├── UnalignedArrayAssert.dox │ │ │ ├── UsingIntelMKL.dox │ │ │ ├── WrongStackAlignment.dox │ │ │ ├── eigen_navtree_hacks.js │ │ │ ├── eigendoxy.css │ │ │ ├── eigendoxy_footer.html.in │ │ │ ├── eigendoxy_header.html.in │ │ │ ├── eigendoxy_layout.xml.in │ │ │ ├── eigendoxy_tabs.css │ │ │ ├── examples/ │ │ │ │ ├── .krazy │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ │ ├── MatrixBase_cwise_const.cpp │ │ │ │ ├── QuickStart_example.cpp │ │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ │ │ ├── Tutorial_PartialLU_solve.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ │ │ ├── class_Block.cpp │ │ │ │ ├── class_CwiseBinaryOp.cpp │ │ │ │ ├── class_CwiseUnaryOp.cpp │ │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ │ │ ├── class_FixedBlock.cpp │ │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ │ ├── class_VectorBlock.cpp │ │ │ │ ├── function_taking_eigenbase.cpp │ │ │ │ ├── function_taking_ref.cpp │ │ │ │ ├── matrixfree_cg.cpp │ │ │ │ ├── tut_arithmetic_add_sub.cpp │ │ │ │ ├── tut_arithmetic_dot_cross.cpp │ │ │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ │ │ ├── tut_arithmetic_redux_basic.cpp │ │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ │ │ ├── tut_matrix_resize.cpp │ │ │ │ └── tut_matrix_resize_fixed_size.cpp │ │ │ ├── snippets/ │ │ │ │ ├── .krazy │ │ │ │ ├── AngleAxis_mimic_euler.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ColPivHouseholderQR_solve.cpp │ │ │ │ ├── ComplexEigenSolver_compute.cpp │ │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ │ │ ├── ComplexSchur_compute.cpp │ │ │ │ ├── ComplexSchur_matrixT.cpp │ │ │ │ ├── ComplexSchur_matrixU.cpp │ │ │ │ ├── Cwise_abs.cpp │ │ │ │ ├── Cwise_abs2.cpp │ │ │ │ ├── Cwise_acos.cpp │ │ │ │ ├── Cwise_asin.cpp │ │ │ │ ├── Cwise_boolean_and.cpp │ │ │ │ ├── Cwise_boolean_or.cpp │ │ │ │ ├── Cwise_cos.cpp │ │ │ │ ├── Cwise_cube.cpp │ │ │ │ ├── Cwise_equal_equal.cpp │ │ │ │ ├── Cwise_exp.cpp │ │ │ │ ├── Cwise_greater.cpp │ │ │ │ ├── Cwise_greater_equal.cpp │ │ │ │ ├── Cwise_inverse.cpp │ │ │ │ ├── Cwise_less.cpp │ │ │ │ ├── Cwise_less_equal.cpp │ │ │ │ ├── Cwise_log.cpp │ │ │ │ ├── Cwise_max.cpp │ │ │ │ ├── Cwise_min.cpp │ │ │ │ ├── Cwise_minus.cpp │ │ │ │ ├── Cwise_minus_equal.cpp │ │ │ │ ├── Cwise_not_equal.cpp │ │ │ │ ├── Cwise_plus.cpp │ │ │ │ ├── Cwise_plus_equal.cpp │ │ │ │ ├── Cwise_pow.cpp │ │ │ │ ├── Cwise_product.cpp │ │ │ │ ├── Cwise_quotient.cpp │ │ │ │ ├── Cwise_sin.cpp │ │ │ │ ├── Cwise_slash_equal.cpp │ │ │ │ ├── Cwise_sqrt.cpp │ │ │ │ ├── Cwise_square.cpp │ │ │ │ ├── Cwise_tan.cpp │ │ │ │ ├── Cwise_times_equal.cpp │ │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ │ ├── DenseBase_LinSpaced_seq.cpp │ │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ │ ├── DirectionWise_replicate.cpp │ │ │ │ ├── DirectionWise_replicate_int.cpp │ │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ │ │ ├── EigenSolver_compute.cpp │ │ │ │ ├── EigenSolver_eigenvalues.cpp │ │ │ │ ├── EigenSolver_eigenvectors.cpp │ │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ │ │ ├── FullPivHouseholderQR_solve.cpp │ │ │ │ ├── FullPivLU_image.cpp │ │ │ │ ├── FullPivLU_kernel.cpp │ │ │ │ ├── FullPivLU_solve.cpp │ │ │ │ ├── GeneralizedEigenSolver.cpp │ │ │ │ ├── HessenbergDecomposition_compute.cpp │ │ │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ │ │ ├── HouseholderQR_householderQ.cpp │ │ │ │ ├── HouseholderQR_solve.cpp │ │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ │ │ ├── IOFormat.cpp │ │ │ │ ├── JacobiSVD_basic.cpp │ │ │ │ ├── Jacobi_makeGivens.cpp │ │ │ │ ├── Jacobi_makeJacobi.cpp │ │ │ │ ├── LLT_example.cpp │ │ │ │ ├── LLT_solve.cpp │ │ │ │ ├── Map_general_stride.cpp │ │ │ │ ├── Map_inner_stride.cpp │ │ │ │ ├── Map_outer_stride.cpp │ │ │ │ ├── Map_placement_new.cpp │ │ │ │ ├── Map_simple.cpp │ │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ │ ├── MatrixBase_all.cpp │ │ │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ │ │ ├── MatrixBase_array.cpp │ │ │ │ ├── MatrixBase_array_const.cpp │ │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ │ ├── MatrixBase_block_int_int.cpp │ │ │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ │ │ ├── MatrixBase_bottomRows_int.cpp │ │ │ │ ├── MatrixBase_cast.cpp │ │ │ │ ├── MatrixBase_col.cpp │ │ │ │ ├── MatrixBase_colwise.cpp │ │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ │ ├── MatrixBase_cwiseEqual.cpp │ │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ │ ├── MatrixBase_diagonal.cpp │ │ │ │ ├── MatrixBase_diagonal_int.cpp │ │ │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ │ ├── MatrixBase_end_int.cpp │ │ │ │ ├── MatrixBase_eval.cpp │ │ │ │ ├── MatrixBase_extract.cpp │ │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ │ │ ├── MatrixBase_identity.cpp │ │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ │ ├── MatrixBase_inverse.cpp │ │ │ │ ├── MatrixBase_isDiagonal.cpp │ │ │ │ ├── MatrixBase_isIdentity.cpp │ │ │ │ ├── MatrixBase_isOnes.cpp │ │ │ │ ├── MatrixBase_isOrthogonal.cpp │ │ │ │ ├── MatrixBase_isUnitary.cpp │ │ │ │ ├── MatrixBase_isZero.cpp │ │ │ │ ├── MatrixBase_leftCols_int.cpp │ │ │ │ ├── MatrixBase_marked.cpp │ │ │ │ ├── MatrixBase_noalias.cpp │ │ │ │ ├── MatrixBase_ones.cpp │ │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ │ ├── MatrixBase_part.cpp │ │ │ │ ├── MatrixBase_prod.cpp │ │ │ │ ├── MatrixBase_random.cpp │ │ │ │ ├── MatrixBase_random_int.cpp │ │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ │ ├── MatrixBase_replicate.cpp │ │ │ │ ├── MatrixBase_replicate_int_int.cpp │ │ │ │ ├── MatrixBase_reverse.cpp │ │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ │ ├── MatrixBase_row.cpp │ │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ │ ├── MatrixBase_select.cpp │ │ │ │ ├── MatrixBase_set.cpp │ │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ │ ├── MatrixBase_setZero.cpp │ │ │ │ ├── MatrixBase_start_int.cpp │ │ │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ │ │ ├── MatrixBase_template_int_end.cpp │ │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ │ │ ├── MatrixBase_template_int_segment.cpp │ │ │ │ ├── MatrixBase_template_int_start.cpp │ │ │ │ ├── MatrixBase_template_int_topRows.cpp │ │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ │ │ ├── MatrixBase_topRows_int.cpp │ │ │ │ ├── MatrixBase_transpose.cpp │ │ │ │ ├── MatrixBase_zero.cpp │ │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ │ ├── Matrix_resize_int.cpp │ │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ │ ├── Matrix_resize_int_int.cpp │ │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ │ ├── Matrix_setZero_int.cpp │ │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ │ ├── PartialPivLU_solve.cpp │ │ │ │ ├── PartialRedux_count.cpp │ │ │ │ ├── PartialRedux_maxCoeff.cpp │ │ │ │ ├── PartialRedux_minCoeff.cpp │ │ │ │ ├── PartialRedux_norm.cpp │ │ │ │ ├── PartialRedux_prod.cpp │ │ │ │ ├── PartialRedux_squaredNorm.cpp │ │ │ │ ├── PartialRedux_sum.cpp │ │ │ │ ├── RealQZ_compute.cpp │ │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ │ │ ├── RealSchur_compute.cpp │ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ │ ├── TopicAliasing_block.cpp │ │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ │ │ ├── Tridiagonalization_compute.cpp │ │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ │ │ ├── Tridiagonalization_diagonal.cpp │ │ │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ │ │ ├── Tutorial_Map_rowmajor.cpp │ │ │ │ ├── Tutorial_Map_using.cpp │ │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ │ │ ├── Tutorial_solve_singular.cpp │ │ │ │ ├── Tutorial_solve_triangular.cpp │ │ │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ │ │ ├── Vectorwise_reverse.cpp │ │ │ │ ├── class_FullPivLU.cpp │ │ │ │ ├── compile_snippet.cpp.in │ │ │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ │ │ └── tut_matrix_assignment_resizing.cpp │ │ │ ├── special_examples/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Tutorial_sparse_example.cpp │ │ │ │ └── Tutorial_sparse_example_details.cpp │ │ │ └── tutorial.cpp │ │ ├── eigen3.pc.in │ │ ├── failtest/ │ │ │ ├── CMakeLists.txt │ │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ │ ├── block_on_const_type_actually_const_0.cpp │ │ │ ├── block_on_const_type_actually_const_1.cpp │ │ │ ├── colpivqr_int.cpp │ │ │ ├── const_qualified_block_method_retval_0.cpp │ │ │ ├── const_qualified_block_method_retval_1.cpp │ │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ │ ├── const_qualified_transpose_method_retval.cpp │ │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ │ ├── eigensolver_cplx.cpp │ │ │ ├── eigensolver_int.cpp │ │ │ ├── failtest_sanity_check.cpp │ │ │ ├── fullpivlu_int.cpp │ │ │ ├── fullpivqr_int.cpp │ │ │ ├── jacobisvd_int.cpp │ │ │ ├── ldlt_int.cpp │ │ │ ├── llt_int.cpp │ │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ │ ├── map_on_const_type_actually_const_0.cpp │ │ │ ├── map_on_const_type_actually_const_1.cpp │ │ │ ├── partialpivlu_int.cpp │ │ │ ├── qr_int.cpp │ │ │ ├── ref_1.cpp │ │ │ ├── ref_2.cpp │ │ │ ├── ref_3.cpp │ │ │ ├── ref_4.cpp │ │ │ ├── ref_5.cpp │ │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ │ └── transpose_on_const_type_actually_const.cpp │ │ ├── lapack/ │ │ │ ├── CMakeLists.txt │ │ │ ├── cholesky.cpp │ │ │ ├── clacgv.f │ │ │ ├── cladiv.f │ │ │ ├── clarf.f │ │ │ ├── clarfb.f │ │ │ ├── clarfg.f │ │ │ ├── clarft.f │ │ │ ├── complex_double.cpp │ │ │ ├── complex_single.cpp │ │ │ ├── dladiv.f │ │ │ ├── dlamch.f │ │ │ ├── dlapy2.f │ │ │ ├── dlapy3.f │ │ │ ├── dlarf.f │ │ │ ├── dlarfb.f │ │ │ ├── dlarfg.f │ │ │ ├── dlarft.f │ │ │ ├── double.cpp │ │ │ ├── dsecnd_NONE.f │ │ │ ├── eigenvalues.cpp │ │ │ ├── ilaclc.f │ │ │ ├── ilaclr.f │ │ │ ├── iladlc.f │ │ │ ├── iladlr.f │ │ │ ├── ilaslc.f │ │ │ ├── ilaslr.f │ │ │ ├── ilazlc.f │ │ │ ├── ilazlr.f │ │ │ ├── lapack_common.h │ │ │ ├── lu.cpp │ │ │ ├── second_NONE.f │ │ │ ├── single.cpp │ │ │ ├── sladiv.f │ │ │ ├── slamch.f │ │ │ ├── slapy2.f │ │ │ ├── slapy3.f │ │ │ ├── slarf.f │ │ │ ├── slarfb.f │ │ │ ├── slarfg.f │ │ │ ├── slarft.f │ │ │ ├── zlacgv.f │ │ │ ├── zladiv.f │ │ │ ├── zlarf.f │ │ │ ├── zlarfb.f │ │ │ ├── zlarfg.f │ │ │ └── zlarft.f │ │ ├── scripts/ │ │ │ ├── CMakeLists.txt │ │ │ ├── cdashtesting.cmake.in │ │ │ ├── check.in │ │ │ ├── debug.in │ │ │ ├── eigen_gen_credits.cpp │ │ │ ├── eigen_gen_docs │ │ │ ├── release.in │ │ │ └── relicense.py │ │ ├── signature_of_eigen3_matrix_library │ │ ├── test/ │ │ │ ├── CMakeLists.txt │ │ │ ├── adjoint.cpp │ │ │ ├── array.cpp │ │ │ ├── array_for_matrix.cpp │ │ │ ├── array_replicate.cpp │ │ │ ├── array_reverse.cpp │ │ │ ├── bandmatrix.cpp │ │ │ ├── basicstuff.cpp │ │ │ ├── bicgstab.cpp │ │ │ ├── block.cpp │ │ │ ├── cholesky.cpp │ │ │ ├── cholmod_support.cpp │ │ │ ├── commainitializer.cpp │ │ │ ├── conjugate_gradient.cpp │ │ │ ├── conservative_resize.cpp │ │ │ ├── corners.cpp │ │ │ ├── cwiseop.cpp │ │ │ ├── denseLM.cpp │ │ │ ├── determinant.cpp │ │ │ ├── diagonal.cpp │ │ │ ├── diagonalmatrices.cpp │ │ │ ├── dontalign.cpp │ │ │ ├── dynalloc.cpp │ │ │ ├── eigen2/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── eigen2_adjoint.cpp │ │ │ │ ├── eigen2_alignedbox.cpp │ │ │ │ ├── eigen2_array.cpp │ │ │ │ ├── eigen2_basicstuff.cpp │ │ │ │ ├── eigen2_bug_132.cpp │ │ │ │ ├── eigen2_cholesky.cpp │ │ │ │ ├── eigen2_commainitializer.cpp │ │ │ │ ├── eigen2_cwiseop.cpp │ │ │ │ ├── eigen2_determinant.cpp │ │ │ │ ├── eigen2_dynalloc.cpp │ │ │ │ ├── eigen2_eigensolver.cpp │ │ │ │ ├── eigen2_first_aligned.cpp │ │ │ │ ├── eigen2_geometry.cpp │ │ │ │ ├── eigen2_geometry_with_eigen2_prefix.cpp │ │ │ │ ├── eigen2_hyperplane.cpp │ │ │ │ ├── eigen2_inverse.cpp │ │ │ │ ├── eigen2_linearstructure.cpp │ │ │ │ ├── eigen2_lu.cpp │ │ │ │ ├── eigen2_map.cpp │ │ │ │ ├── eigen2_meta.cpp │ │ │ │ ├── eigen2_miscmatrices.cpp │ │ │ │ ├── eigen2_mixingtypes.cpp │ │ │ │ ├── eigen2_newstdvector.cpp │ │ │ │ ├── eigen2_nomalloc.cpp │ │ │ │ ├── eigen2_packetmath.cpp │ │ │ │ ├── eigen2_parametrizedline.cpp │ │ │ │ ├── eigen2_prec_inverse_4x4.cpp │ │ │ │ ├── eigen2_product_large.cpp │ │ │ │ ├── eigen2_product_small.cpp │ │ │ │ ├── eigen2_qr.cpp │ │ │ │ ├── eigen2_qtvector.cpp │ │ │ │ ├── eigen2_regression.cpp │ │ │ │ ├── eigen2_sizeof.cpp │ │ │ │ ├── eigen2_smallvectors.cpp │ │ │ │ ├── eigen2_sparse_basic.cpp │ │ │ │ ├── eigen2_sparse_product.cpp │ │ │ │ ├── eigen2_sparse_solvers.cpp │ │ │ │ ├── eigen2_sparse_vector.cpp │ │ │ │ ├── eigen2_stdvector.cpp │ │ │ │ ├── eigen2_submatrices.cpp │ │ │ │ ├── eigen2_sum.cpp │ │ │ │ ├── eigen2_svd.cpp │ │ │ │ ├── eigen2_swap.cpp │ │ │ │ ├── eigen2_triangular.cpp │ │ │ │ ├── eigen2_unalignedassert.cpp │ │ │ │ ├── eigen2_visitor.cpp │ │ │ │ ├── gsl_helper.h │ │ │ │ ├── main.h │ │ │ │ ├── product.h │ │ │ │ ├── runtest.sh │ │ │ │ ├── sparse.h │ │ │ │ └── testsuite.cmake │ │ │ ├── eigen2support.cpp │ │ │ ├── eigensolver_complex.cpp │ │ │ ├── eigensolver_generalized_real.cpp │ │ │ ├── eigensolver_generic.cpp │ │ │ ├── eigensolver_selfadjoint.cpp │ │ │ ├── exceptions.cpp │ │ │ ├── first_aligned.cpp │ │ │ ├── geo_alignedbox.cpp │ │ │ ├── geo_eulerangles.cpp │ │ │ ├── geo_homogeneous.cpp │ │ │ ├── geo_hyperplane.cpp │ │ │ ├── geo_orthomethods.cpp │ │ │ ├── geo_parametrizedline.cpp │ │ │ ├── geo_quaternion.cpp │ │ │ ├── geo_transformations.cpp │ │ │ ├── hessenberg.cpp │ │ │ ├── householder.cpp │ │ │ ├── integer_types.cpp │ │ │ ├── inverse.cpp │ │ │ ├── jacobi.cpp │ │ │ ├── jacobisvd.cpp │ │ │ ├── linearstructure.cpp │ │ │ ├── lu.cpp │ │ │ ├── main.h │ │ │ ├── mapped_matrix.cpp │ │ │ ├── mapstaticmethods.cpp │ │ │ ├── mapstride.cpp │ │ │ ├── meta.cpp │ │ │ ├── metis_support.cpp │ │ │ ├── miscmatrices.cpp │ │ │ ├── mixingtypes.cpp │ │ │ ├── mpl2only.cpp │ │ │ ├── nesting_ops.cpp │ │ │ ├── nomalloc.cpp │ │ │ ├── nullary.cpp │ │ │ ├── packetmath.cpp │ │ │ ├── pardiso_support.cpp │ │ │ ├── pastix_support.cpp │ │ │ ├── permutationmatrices.cpp │ │ │ ├── prec_inverse_4x4.cpp │ │ │ ├── product.h │ │ │ ├── product_extra.cpp │ │ │ ├── product_large.cpp │ │ │ ├── product_mmtr.cpp │ │ │ ├── product_notemporary.cpp │ │ │ ├── product_selfadjoint.cpp │ │ │ ├── product_small.cpp │ │ │ ├── product_symm.cpp │ │ │ ├── product_syrk.cpp │ │ │ ├── product_trmm.cpp │ │ │ ├── product_trmv.cpp │ │ │ ├── product_trsolve.cpp │ │ │ ├── qr.cpp │ │ │ ├── qr_colpivoting.cpp │ │ │ ├── qr_fullpivoting.cpp │ │ │ ├── qtvector.cpp │ │ │ ├── real_qz.cpp │ │ │ ├── redux.cpp │ │ │ ├── ref.cpp │ │ │ ├── resize.cpp │ │ │ ├── runtest.sh │ │ │ ├── rvalue_types.cpp │ │ │ ├── schur_complex.cpp │ │ │ ├── schur_real.cpp │ │ │ ├── selfadjoint.cpp │ │ │ ├── simplicial_cholesky.cpp │ │ │ ├── sizeof.cpp │ │ │ ├── sizeoverflow.cpp │ │ │ ├── smallvectors.cpp │ │ │ ├── sparse.h │ │ │ ├── sparseLM.cpp │ │ │ ├── sparse_basic.cpp │ │ │ ├── sparse_permutations.cpp │ │ │ ├── sparse_product.cpp │ │ │ ├── sparse_solver.h │ │ │ ├── sparse_solvers.cpp │ │ │ ├── sparse_vector.cpp │ │ │ ├── sparselu.cpp │ │ │ ├── sparseqr.cpp │ │ │ ├── special_numbers.cpp │ │ │ ├── spqr_support.cpp │ │ │ ├── stable_norm.cpp │ │ │ ├── stddeque.cpp │ │ │ ├── stddeque_overload.cpp │ │ │ ├── stdlist.cpp │ │ │ ├── stdlist_overload.cpp │ │ │ ├── stdvector.cpp │ │ │ ├── stdvector_overload.cpp │ │ │ ├── superlu_support.cpp │ │ │ ├── swap.cpp │ │ │ ├── testsuite.cmake │ │ │ ├── triangular.cpp │ │ │ ├── umeyama.cpp │ │ │ ├── umfpack_support.cpp │ │ │ ├── unalignedassert.cpp │ │ │ ├── unalignedcount.cpp │ │ │ ├── upperbidiagonalization.cpp │ │ │ ├── vectorization_logic.cpp │ │ │ ├── vectorwiseop.cpp │ │ │ ├── visitor.cpp │ │ │ └── zerosized.cpp │ │ └── unsupported/ │ │ ├── CMakeLists.txt │ │ ├── Eigen/ │ │ │ ├── AdolcForward │ │ │ ├── AlignedVector3 │ │ │ ├── ArpackSupport │ │ │ ├── AutoDiff │ │ │ ├── BVH │ │ │ ├── CMakeLists.txt │ │ │ ├── FFT │ │ │ ├── IterativeSolvers │ │ │ ├── KroneckerProduct │ │ │ ├── LevenbergMarquardt │ │ │ ├── MPRealSupport │ │ │ ├── MatrixFunctions │ │ │ ├── MoreVectorization │ │ │ ├── NonLinearOptimization │ │ │ ├── NumericalDiff │ │ │ ├── OpenGLSupport │ │ │ ├── Polynomials │ │ │ ├── SVD │ │ │ ├── Skyline │ │ │ ├── SparseExtra │ │ │ ├── Splines │ │ │ └── src/ │ │ │ ├── AutoDiff/ │ │ │ │ ├── AutoDiffJacobian.h │ │ │ │ ├── AutoDiffScalar.h │ │ │ │ ├── AutoDiffVector.h │ │ │ │ └── CMakeLists.txt │ │ │ ├── BVH/ │ │ │ │ ├── BVAlgorithms.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── KdBVH.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Eigenvalues/ │ │ │ │ ├── ArpackSelfAdjointEigenSolver.h │ │ │ │ └── CMakeLists.txt │ │ │ ├── FFT/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ei_fftw_impl.h │ │ │ │ └── ei_kissfft_impl.h │ │ │ ├── IterativeSolvers/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ConstrainedConjGrad.h │ │ │ │ ├── DGMRES.h │ │ │ │ ├── GMRES.h │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ ├── IncompleteLU.h │ │ │ │ ├── IterationController.h │ │ │ │ ├── MINRES.h │ │ │ │ └── Scaling.h │ │ │ ├── KroneckerProduct/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── KroneckerTensorProduct.h │ │ │ ├── LevenbergMarquardt/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CopyrightMINPACK.txt │ │ │ │ ├── LMcovar.h │ │ │ │ ├── LMonestep.h │ │ │ │ ├── LMpar.h │ │ │ │ ├── LMqrsolv.h │ │ │ │ └── LevenbergMarquardt.h │ │ │ ├── MatrixFunctions/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MatrixExponential.h │ │ │ │ ├── MatrixFunction.h │ │ │ │ ├── MatrixFunctionAtomic.h │ │ │ │ ├── MatrixLogarithm.h │ │ │ │ ├── MatrixPower.h │ │ │ │ ├── MatrixSquareRoot.h │ │ │ │ └── StemFunction.h │ │ │ ├── MoreVectorization/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── MathFunctions.h │ │ │ ├── NonLinearOptimization/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── HybridNonLinearSolver.h │ │ │ │ ├── LevenbergMarquardt.h │ │ │ │ ├── chkder.h │ │ │ │ ├── covar.h │ │ │ │ ├── dogleg.h │ │ │ │ ├── fdjac1.h │ │ │ │ ├── lmpar.h │ │ │ │ ├── qrsolv.h │ │ │ │ ├── r1mpyq.h │ │ │ │ ├── r1updt.h │ │ │ │ └── rwupdt.h │ │ │ ├── NumericalDiff/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── NumericalDiff.h │ │ │ ├── Polynomials/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Companion.h │ │ │ │ ├── PolynomialSolver.h │ │ │ │ └── PolynomialUtils.h │ │ │ ├── SVD/ │ │ │ │ ├── BDCSVD.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── JacobiSVD.h │ │ │ │ ├── SVDBase.h │ │ │ │ ├── TODOBdcsvd.txt │ │ │ │ └── doneInBDCSVD.txt │ │ │ ├── Skyline/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── SkylineInplaceLU.h │ │ │ │ ├── SkylineMatrix.h │ │ │ │ ├── SkylineMatrixBase.h │ │ │ │ ├── SkylineProduct.h │ │ │ │ ├── SkylineStorage.h │ │ │ │ └── SkylineUtil.h │ │ │ ├── SparseExtra/ │ │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DynamicSparseMatrix.h │ │ │ │ ├── MarketIO.h │ │ │ │ ├── MatrixMarketIterator.h │ │ │ │ └── RandomSetter.h │ │ │ └── Splines/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Spline.h │ │ │ ├── SplineFitting.h │ │ │ └── SplineFwd.h │ │ ├── README.txt │ │ ├── bench/ │ │ │ └── bench_svd.cpp │ │ ├── doc/ │ │ │ ├── CMakeLists.txt │ │ │ ├── Overview.dox │ │ │ ├── eigendoxy_layout.xml.in │ │ │ ├── examples/ │ │ │ │ ├── BVH_Example.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── FFT.cpp │ │ │ │ ├── MatrixExponential.cpp │ │ │ │ ├── MatrixFunction.cpp │ │ │ │ ├── MatrixLogarithm.cpp │ │ │ │ ├── MatrixPower.cpp │ │ │ │ ├── MatrixPower_optimal.cpp │ │ │ │ ├── MatrixSine.cpp │ │ │ │ ├── MatrixSinh.cpp │ │ │ │ ├── MatrixSquareRoot.cpp │ │ │ │ ├── PolynomialSolver1.cpp │ │ │ │ └── PolynomialUtils1.cpp │ │ │ └── snippets/ │ │ │ └── CMakeLists.txt │ │ └── test/ │ │ ├── BVH.cpp │ │ ├── CMakeLists.txt │ │ ├── FFT.cpp │ │ ├── FFTW.cpp │ │ ├── NonLinearOptimization.cpp │ │ ├── NumericalDiff.cpp │ │ ├── alignedvector3.cpp │ │ ├── autodiff.cpp │ │ ├── bdcsvd.cpp │ │ ├── dgmres.cpp │ │ ├── forward_adolc.cpp │ │ ├── gmres.cpp │ │ ├── jacobisvd.cpp │ │ ├── kronecker_product.cpp │ │ ├── levenberg_marquardt.cpp │ │ ├── matrix_exponential.cpp │ │ ├── matrix_function.cpp │ │ ├── matrix_functions.h │ │ ├── matrix_power.cpp │ │ ├── matrix_square_root.cpp │ │ ├── minres.cpp │ │ ├── mpreal/ │ │ │ └── mpreal.h │ │ ├── mpreal_support.cpp │ │ ├── openglsupport.cpp │ │ ├── polynomialsolver.cpp │ │ ├── polynomialutils.cpp │ │ ├── sparse_extra.cpp │ │ ├── splines.cpp │ │ └── svd_common.h │ ├── glew/ │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── TODO.txt │ │ ├── auto/ │ │ │ ├── bin/ │ │ │ │ ├── fix_OML_sync_control.sh │ │ │ │ ├── make.pl │ │ │ │ ├── make_def_fun.pl │ │ │ │ ├── make_def_var.pl │ │ │ │ ├── make_header.pl │ │ │ │ ├── make_html.pl │ │ │ │ ├── make_info.pl │ │ │ │ ├── make_info_list.pl │ │ │ │ ├── make_init.pl │ │ │ │ ├── make_list.pl │ │ │ │ ├── make_str.pl │ │ │ │ ├── make_struct_fun.pl │ │ │ │ ├── make_struct_var.pl │ │ │ │ ├── parse_spec.pl │ │ │ │ ├── update_ext.sh │ │ │ │ └── update_registry.sh │ │ │ ├── blacklist │ │ │ ├── core/ │ │ │ │ ├── GLX_ARB_get_proc_address │ │ │ │ ├── GLX_ATI_pixel_format_float │ │ │ │ ├── GLX_ATI_render_texture │ │ │ │ ├── GLX_EXT_fbconfig_packed_float │ │ │ │ ├── GLX_EXT_framebuffer_sRGB │ │ │ │ ├── GLX_NV_float_buffer │ │ │ │ ├── GLX_NV_vertex_array_range │ │ │ │ ├── GLX_SGIS_shared_multisample │ │ │ │ ├── GLX_SGIX_hyperpipe │ │ │ │ ├── GLX_SGIX_swap_barrier │ │ │ │ ├── GLX_SGIX_swap_group │ │ │ │ ├── GLX_SUN_video_resize │ │ │ │ ├── GLX_VERSION_1_2 │ │ │ │ ├── GLX_VERSION_1_3 │ │ │ │ ├── GLX_VERSION_1_4 │ │ │ │ ├── GL_APPLE_float_pixels │ │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ │ ├── GL_APPLE_texture_range │ │ │ │ ├── GL_ARB_imaging │ │ │ │ ├── GL_ARB_matrix_palette │ │ │ │ ├── GL_ARB_multitexture │ │ │ │ ├── GL_ARB_vertex_blend │ │ │ │ ├── GL_ATIX_point_sprites │ │ │ │ ├── GL_ATIX_texture_env_combine3 │ │ │ │ ├── GL_ATIX_texture_env_route │ │ │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ │ │ ├── GL_ATI_envmap_bumpmap │ │ │ │ ├── GL_ATI_map_object_buffer │ │ │ │ ├── GL_ATI_pn_triangles │ │ │ │ ├── GL_ATI_separate_stencil │ │ │ │ ├── GL_ATI_shader_texture_lod │ │ │ │ ├── GL_ATI_texture_compression_3dc │ │ │ │ ├── GL_ATI_vertex_streams │ │ │ │ ├── GL_EXT_Cg_shader │ │ │ │ ├── GL_EXT_bindable_uniform │ │ │ │ ├── GL_EXT_depth_bounds_test │ │ │ │ ├── GL_EXT_draw_instanced │ │ │ │ ├── GL_EXT_draw_range_elements │ │ │ │ ├── GL_EXT_fog_coord │ │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ │ ├── GL_EXT_packed_float │ │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ │ ├── GL_EXT_secondary_color │ │ │ │ ├── GL_EXT_texture_array │ │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ │ ├── GL_EXT_texture_cube_map │ │ │ │ ├── GL_EXT_texture_edge_clamp │ │ │ │ ├── GL_EXT_texture_integer │ │ │ │ ├── GL_EXT_texture_rectangle │ │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ │ ├── GL_EXT_timer_query │ │ │ │ ├── GL_EXT_vertex_shader │ │ │ │ ├── GL_KTX_buffer_region │ │ │ │ ├── GL_NV_depth_buffer_float │ │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ │ ├── GL_NV_fragment_program2 │ │ │ │ ├── GL_NV_fragment_program4 │ │ │ │ ├── GL_NV_fragment_program_option │ │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ │ ├── GL_NV_geometry_program4 │ │ │ │ ├── GL_NV_geometry_shader4 │ │ │ │ ├── GL_NV_gpu_program4 │ │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ │ ├── GL_NV_transform_feedback │ │ │ │ ├── GL_NV_vertex_program2_option │ │ │ │ ├── GL_NV_vertex_program3 │ │ │ │ ├── GL_NV_vertex_program4 │ │ │ │ ├── GL_SGIX_shadow │ │ │ │ ├── GL_SUN_read_video_pixels │ │ │ │ ├── GL_VERSION_1_2 │ │ │ │ ├── GL_VERSION_1_3 │ │ │ │ ├── GL_VERSION_1_4 │ │ │ │ ├── GL_VERSION_1_5 │ │ │ │ ├── GL_VERSION_2_0 │ │ │ │ ├── GL_VERSION_2_1 │ │ │ │ ├── GL_VERSION_3_0 │ │ │ │ ├── GL_VERSION_3_1 │ │ │ │ ├── GL_VERSION_3_2 │ │ │ │ ├── GL_WIN_swap_hint │ │ │ │ ├── WGL_ATI_render_texture_rectangle │ │ │ │ ├── WGL_EXT_framebuffer_sRGB │ │ │ │ ├── WGL_EXT_pixel_format_packed_float │ │ │ │ ├── WGL_NV_gpu_affinity │ │ │ │ └── WGL_NV_vertex_array_range │ │ │ ├── custom.txt │ │ │ ├── doc/ │ │ │ │ ├── advanced.html │ │ │ │ ├── basic.html │ │ │ │ ├── credits.html │ │ │ │ ├── index.html │ │ │ │ ├── install.html │ │ │ │ └── log.html │ │ │ ├── extensions/ │ │ │ │ ├── .dummy │ │ │ │ ├── GLX_3DFX_multisample │ │ │ │ ├── GLX_ARB_create_context │ │ │ │ ├── GLX_ARB_create_context_profile │ │ │ │ ├── GLX_ARB_fbconfig_float │ │ │ │ ├── GLX_ARB_framebuffer_sRGB │ │ │ │ ├── GLX_ARB_get_proc_address │ │ │ │ ├── GLX_ARB_multisample │ │ │ │ ├── GLX_ATI_pixel_format_float │ │ │ │ ├── GLX_ATI_render_texture │ │ │ │ ├── GLX_EXT_fbconfig_packed_float │ │ │ │ ├── GLX_EXT_framebuffer_sRGB │ │ │ │ ├── GLX_EXT_import_context │ │ │ │ ├── GLX_EXT_scene_marker │ │ │ │ ├── GLX_EXT_swap_control │ │ │ │ ├── GLX_EXT_texture_from_pixmap │ │ │ │ ├── GLX_EXT_visual_info │ │ │ │ ├── GLX_EXT_visual_rating │ │ │ │ ├── GLX_INTEL_swap_event │ │ │ │ ├── GLX_MESA_agp_offset │ │ │ │ ├── GLX_MESA_copy_sub_buffer │ │ │ │ ├── GLX_MESA_pixmap_colormap │ │ │ │ ├── GLX_MESA_release_buffers │ │ │ │ ├── GLX_MESA_set_3dfx_mode │ │ │ │ ├── GLX_NV_copy_image │ │ │ │ ├── GLX_NV_float_buffer │ │ │ │ ├── GLX_NV_present_video │ │ │ │ ├── GLX_NV_swap_group │ │ │ │ ├── GLX_NV_vertex_array_range │ │ │ │ ├── GLX_NV_video_output │ │ │ │ ├── GLX_OML_swap_method │ │ │ │ ├── GLX_OML_sync_control │ │ │ │ ├── GLX_SGIS_blended_overlay │ │ │ │ ├── GLX_SGIS_color_range │ │ │ │ ├── GLX_SGIS_multisample │ │ │ │ ├── GLX_SGIS_shared_multisample │ │ │ │ ├── GLX_SGIX_fbconfig │ │ │ │ ├── GLX_SGIX_hyperpipe │ │ │ │ ├── GLX_SGIX_pbuffer │ │ │ │ ├── GLX_SGIX_swap_barrier │ │ │ │ ├── GLX_SGIX_swap_group │ │ │ │ ├── GLX_SGIX_video_resize │ │ │ │ ├── GLX_SGIX_visual_select_group │ │ │ │ ├── GLX_SGI_cushion │ │ │ │ ├── GLX_SGI_make_current_read │ │ │ │ ├── GLX_SGI_swap_control │ │ │ │ ├── GLX_SGI_video_sync │ │ │ │ ├── GLX_SUN_get_transparent_index │ │ │ │ ├── GLX_SUN_video_resize │ │ │ │ ├── GL_3DFX_multisample │ │ │ │ ├── GL_3DFX_tbuffer │ │ │ │ ├── GL_3DFX_texture_compression_FXT1 │ │ │ │ ├── GL_AMD_draw_buffers_blend │ │ │ │ ├── GL_AMD_performance_monitor │ │ │ │ ├── GL_AMD_seamless_cubemap_per_texture │ │ │ │ ├── GL_AMD_shader_stencil_export │ │ │ │ ├── GL_AMD_texture_texture4 │ │ │ │ ├── GL_AMD_vertex_shader_tessellator │ │ │ │ ├── GL_APPLE_aux_depth_stencil │ │ │ │ ├── GL_APPLE_client_storage │ │ │ │ ├── GL_APPLE_element_array │ │ │ │ ├── GL_APPLE_fence │ │ │ │ ├── GL_APPLE_float_pixels │ │ │ │ ├── GL_APPLE_flush_buffer_range │ │ │ │ ├── GL_APPLE_object_purgeable │ │ │ │ ├── GL_APPLE_pixel_buffer │ │ │ │ ├── GL_APPLE_rgb_422 │ │ │ │ ├── GL_APPLE_row_bytes │ │ │ │ ├── GL_APPLE_specular_vector │ │ │ │ ├── GL_APPLE_texture_range │ │ │ │ ├── GL_APPLE_transform_hint │ │ │ │ ├── GL_APPLE_vertex_array_object │ │ │ │ ├── GL_APPLE_vertex_array_range │ │ │ │ ├── GL_APPLE_vertex_program_evaluators │ │ │ │ ├── GL_APPLE_ycbcr_422 │ │ │ │ ├── GL_ARB_color_buffer_float │ │ │ │ ├── GL_ARB_compatibility │ │ │ │ ├── GL_ARB_copy_buffer │ │ │ │ ├── GL_ARB_depth_buffer_float │ │ │ │ ├── GL_ARB_depth_clamp │ │ │ │ ├── GL_ARB_depth_texture │ │ │ │ ├── GL_ARB_draw_buffers │ │ │ │ ├── GL_ARB_draw_buffers_blend │ │ │ │ ├── GL_ARB_draw_elements_base_vertex │ │ │ │ ├── GL_ARB_draw_instanced │ │ │ │ ├── GL_ARB_fragment_coord_conventions │ │ │ │ ├── GL_ARB_fragment_program │ │ │ │ ├── GL_ARB_fragment_program_shadow │ │ │ │ ├── GL_ARB_fragment_shader │ │ │ │ ├── GL_ARB_framebuffer_object │ │ │ │ ├── GL_ARB_framebuffer_sRGB │ │ │ │ ├── GL_ARB_geometry_shader4 │ │ │ │ ├── GL_ARB_half_float_pixel │ │ │ │ ├── GL_ARB_half_float_vertex │ │ │ │ ├── GL_ARB_imaging │ │ │ │ ├── GL_ARB_instanced_arrays │ │ │ │ ├── GL_ARB_map_buffer_range │ │ │ │ ├── GL_ARB_matrix_palette │ │ │ │ ├── GL_ARB_multisample │ │ │ │ ├── GL_ARB_multitexture │ │ │ │ ├── GL_ARB_occlusion_query │ │ │ │ ├── GL_ARB_pixel_buffer_object │ │ │ │ ├── GL_ARB_point_parameters │ │ │ │ ├── GL_ARB_point_sprite │ │ │ │ ├── GL_ARB_provoking_vertex │ │ │ │ ├── GL_ARB_sample_shading │ │ │ │ ├── GL_ARB_seamless_cube_map │ │ │ │ ├── GL_ARB_shader_objects │ │ │ │ ├── GL_ARB_shader_texture_lod │ │ │ │ ├── GL_ARB_shading_language_100 │ │ │ │ ├── GL_ARB_shadow │ │ │ │ ├── GL_ARB_shadow_ambient │ │ │ │ ├── GL_ARB_sync │ │ │ │ ├── GL_ARB_texture_border_clamp │ │ │ │ ├── GL_ARB_texture_buffer_object │ │ │ │ ├── GL_ARB_texture_compression │ │ │ │ ├── GL_ARB_texture_compression_rgtc │ │ │ │ ├── GL_ARB_texture_cube_map │ │ │ │ ├── GL_ARB_texture_cube_map_array │ │ │ │ ├── GL_ARB_texture_env_add │ │ │ │ ├── GL_ARB_texture_env_combine │ │ │ │ ├── GL_ARB_texture_env_crossbar │ │ │ │ ├── GL_ARB_texture_env_dot3 │ │ │ │ ├── GL_ARB_texture_float │ │ │ │ ├── GL_ARB_texture_gather │ │ │ │ ├── GL_ARB_texture_mirrored_repeat │ │ │ │ ├── GL_ARB_texture_multisample │ │ │ │ ├── GL_ARB_texture_non_power_of_two │ │ │ │ ├── GL_ARB_texture_query_lod │ │ │ │ ├── GL_ARB_texture_rectangle │ │ │ │ ├── GL_ARB_texture_rg │ │ │ │ ├── GL_ARB_transpose_matrix │ │ │ │ ├── GL_ARB_uniform_buffer_object │ │ │ │ ├── GL_ARB_vertex_array_bgra │ │ │ │ ├── GL_ARB_vertex_array_object │ │ │ │ ├── GL_ARB_vertex_blend │ │ │ │ ├── GL_ARB_vertex_buffer_object │ │ │ │ ├── GL_ARB_vertex_program │ │ │ │ ├── GL_ARB_vertex_shader │ │ │ │ ├── GL_ARB_window_pos │ │ │ │ ├── GL_ATIX_point_sprites │ │ │ │ ├── GL_ATIX_texture_env_combine3 │ │ │ │ ├── GL_ATIX_texture_env_route │ │ │ │ ├── GL_ATIX_vertex_shader_output_point_size │ │ │ │ ├── GL_ATI_draw_buffers │ │ │ │ ├── GL_ATI_element_array │ │ │ │ ├── GL_ATI_envmap_bumpmap │ │ │ │ ├── GL_ATI_fragment_shader │ │ │ │ ├── GL_ATI_map_object_buffer │ │ │ │ ├── GL_ATI_meminfo │ │ │ │ ├── GL_ATI_pn_triangles │ │ │ │ ├── GL_ATI_separate_stencil │ │ │ │ ├── GL_ATI_shader_texture_lod │ │ │ │ ├── GL_ATI_text_fragment_shader │ │ │ │ ├── GL_ATI_texture_compression_3dc │ │ │ │ ├── GL_ATI_texture_env_combine3 │ │ │ │ ├── GL_ATI_texture_float │ │ │ │ ├── GL_ATI_texture_mirror_once │ │ │ │ ├── GL_ATI_vertex_array_object │ │ │ │ ├── GL_ATI_vertex_attrib_array_object │ │ │ │ ├── GL_ATI_vertex_streams │ │ │ │ ├── GL_EXT_422_pixels │ │ │ │ ├── GL_EXT_Cg_shader │ │ │ │ ├── GL_EXT_abgr │ │ │ │ ├── GL_EXT_bgra │ │ │ │ ├── GL_EXT_bindable_uniform │ │ │ │ ├── GL_EXT_blend_color │ │ │ │ ├── GL_EXT_blend_equation_separate │ │ │ │ ├── GL_EXT_blend_func_separate │ │ │ │ ├── GL_EXT_blend_logic_op │ │ │ │ ├── GL_EXT_blend_minmax │ │ │ │ ├── GL_EXT_blend_subtract │ │ │ │ ├── GL_EXT_clip_volume_hint │ │ │ │ ├── GL_EXT_cmyka │ │ │ │ ├── GL_EXT_color_subtable │ │ │ │ ├── GL_EXT_compiled_vertex_array │ │ │ │ ├── GL_EXT_convolution │ │ │ │ ├── GL_EXT_coordinate_frame │ │ │ │ ├── GL_EXT_copy_texture │ │ │ │ ├── GL_EXT_cull_vertex │ │ │ │ ├── GL_EXT_depth_bounds_test │ │ │ │ ├── GL_EXT_direct_state_access │ │ │ │ ├── GL_EXT_draw_buffers2 │ │ │ │ ├── GL_EXT_draw_instanced │ │ │ │ ├── GL_EXT_draw_range_elements │ │ │ │ ├── GL_EXT_fog_coord │ │ │ │ ├── GL_EXT_fragment_lighting │ │ │ │ ├── GL_EXT_framebuffer_blit │ │ │ │ ├── GL_EXT_framebuffer_multisample │ │ │ │ ├── GL_EXT_framebuffer_object │ │ │ │ ├── GL_EXT_framebuffer_sRGB │ │ │ │ ├── GL_EXT_geometry_shader4 │ │ │ │ ├── GL_EXT_gpu_program_parameters │ │ │ │ ├── GL_EXT_gpu_shader4 │ │ │ │ ├── GL_EXT_histogram │ │ │ │ ├── GL_EXT_index_array_formats │ │ │ │ ├── GL_EXT_index_func │ │ │ │ ├── GL_EXT_index_material │ │ │ │ ├── GL_EXT_index_texture │ │ │ │ ├── GL_EXT_light_texture │ │ │ │ ├── GL_EXT_misc_attribute │ │ │ │ ├── GL_EXT_multi_draw_arrays │ │ │ │ ├── GL_EXT_multisample │ │ │ │ ├── GL_EXT_packed_depth_stencil │ │ │ │ ├── GL_EXT_packed_float │ │ │ │ ├── GL_EXT_packed_pixels │ │ │ │ ├── GL_EXT_paletted_texture │ │ │ │ ├── GL_EXT_pixel_buffer_object │ │ │ │ ├── GL_EXT_pixel_transform │ │ │ │ ├── GL_EXT_pixel_transform_color_table │ │ │ │ ├── GL_EXT_point_parameters │ │ │ │ ├── GL_EXT_polygon_offset │ │ │ │ ├── GL_EXT_provoking_vertex │ │ │ │ ├── GL_EXT_rescale_normal │ │ │ │ ├── GL_EXT_scene_marker │ │ │ │ ├── GL_EXT_secondary_color │ │ │ │ ├── GL_EXT_separate_shader_objects │ │ │ │ ├── GL_EXT_separate_specular_color │ │ │ │ ├── GL_EXT_shadow_funcs │ │ │ │ ├── GL_EXT_shared_texture_palette │ │ │ │ ├── GL_EXT_stencil_clear_tag │ │ │ │ ├── GL_EXT_stencil_two_side │ │ │ │ ├── GL_EXT_stencil_wrap │ │ │ │ ├── GL_EXT_subtexture │ │ │ │ ├── GL_EXT_texture │ │ │ │ ├── GL_EXT_texture3D │ │ │ │ ├── GL_EXT_texture_array │ │ │ │ ├── GL_EXT_texture_buffer_object │ │ │ │ ├── GL_EXT_texture_compression_dxt1 │ │ │ │ ├── GL_EXT_texture_compression_latc │ │ │ │ ├── GL_EXT_texture_compression_rgtc │ │ │ │ ├── GL_EXT_texture_compression_s3tc │ │ │ │ ├── GL_EXT_texture_cube_map │ │ │ │ ├── GL_EXT_texture_edge_clamp │ │ │ │ ├── GL_EXT_texture_env │ │ │ │ ├── GL_EXT_texture_env_add │ │ │ │ ├── GL_EXT_texture_env_combine │ │ │ │ ├── GL_EXT_texture_env_dot3 │ │ │ │ ├── GL_EXT_texture_filter_anisotropic │ │ │ │ ├── GL_EXT_texture_integer │ │ │ │ ├── GL_EXT_texture_lod_bias │ │ │ │ ├── GL_EXT_texture_mirror_clamp │ │ │ │ ├── GL_EXT_texture_object │ │ │ │ ├── GL_EXT_texture_perturb_normal │ │ │ │ ├── GL_EXT_texture_rectangle │ │ │ │ ├── GL_EXT_texture_sRGB │ │ │ │ ├── GL_EXT_texture_shared_exponent │ │ │ │ ├── GL_EXT_texture_snorm │ │ │ │ ├── GL_EXT_texture_swizzle │ │ │ │ ├── GL_EXT_timer_query │ │ │ │ ├── GL_EXT_transform_feedback │ │ │ │ ├── GL_EXT_vertex_array │ │ │ │ ├── GL_EXT_vertex_array_bgra │ │ │ │ ├── GL_EXT_vertex_shader │ │ │ │ ├── GL_EXT_vertex_weighting │ │ │ │ ├── GL_GREMEDY_frame_terminator │ │ │ │ ├── GL_GREMEDY_string_marker │ │ │ │ ├── GL_HP_convolution_border_modes │ │ │ │ ├── GL_HP_image_transform │ │ │ │ ├── GL_HP_occlusion_test │ │ │ │ ├── GL_HP_texture_lighting │ │ │ │ ├── GL_IBM_cull_vertex │ │ │ │ ├── GL_IBM_multimode_draw_arrays │ │ │ │ ├── GL_IBM_rasterpos_clip │ │ │ │ ├── GL_IBM_static_data │ │ │ │ ├── GL_IBM_texture_mirrored_repeat │ │ │ │ ├── GL_IBM_vertex_array_lists │ │ │ │ ├── GL_INGR_color_clamp │ │ │ │ ├── GL_INGR_interlace_read │ │ │ │ ├── GL_INTEL_parallel_arrays │ │ │ │ ├── GL_INTEL_texture_scissor │ │ │ │ ├── GL_KTX_buffer_region │ │ │ │ ├── GL_MESAX_texture_stack │ │ │ │ ├── GL_MESA_pack_invert │ │ │ │ ├── GL_MESA_resize_buffers │ │ │ │ ├── GL_MESA_window_pos │ │ │ │ ├── GL_MESA_ycbcr_texture │ │ │ │ ├── GL_NV_blend_square │ │ │ │ ├── GL_NV_conditional_render │ │ │ │ ├── GL_NV_copy_depth_to_color │ │ │ │ ├── GL_NV_copy_image │ │ │ │ ├── GL_NV_depth_buffer_float │ │ │ │ ├── GL_NV_depth_clamp │ │ │ │ ├── GL_NV_depth_range_unclamped │ │ │ │ ├── GL_NV_evaluators │ │ │ │ ├── GL_NV_explicit_multisample │ │ │ │ ├── GL_NV_fence │ │ │ │ ├── GL_NV_float_buffer │ │ │ │ ├── GL_NV_fog_distance │ │ │ │ ├── GL_NV_fragment_program │ │ │ │ ├── GL_NV_fragment_program2 │ │ │ │ ├── GL_NV_fragment_program4 │ │ │ │ ├── GL_NV_fragment_program_option │ │ │ │ ├── GL_NV_framebuffer_multisample_coverage │ │ │ │ ├── GL_NV_geometry_program4 │ │ │ │ ├── GL_NV_geometry_shader4 │ │ │ │ ├── GL_NV_gpu_program4 │ │ │ │ ├── GL_NV_half_float │ │ │ │ ├── GL_NV_light_max_exponent │ │ │ │ ├── GL_NV_multisample_filter_hint │ │ │ │ ├── GL_NV_occlusion_query │ │ │ │ ├── GL_NV_packed_depth_stencil │ │ │ │ ├── GL_NV_parameter_buffer_object │ │ │ │ ├── GL_NV_parameter_buffer_object2 │ │ │ │ ├── GL_NV_pixel_data_range │ │ │ │ ├── GL_NV_point_sprite │ │ │ │ ├── GL_NV_present_video │ │ │ │ ├── GL_NV_primitive_restart │ │ │ │ ├── GL_NV_register_combiners │ │ │ │ ├── GL_NV_register_combiners2 │ │ │ │ ├── GL_NV_shader_buffer_load │ │ │ │ ├── GL_NV_texgen_emboss │ │ │ │ ├── GL_NV_texgen_reflection │ │ │ │ ├── GL_NV_texture_barrier │ │ │ │ ├── GL_NV_texture_compression_vtc │ │ │ │ ├── GL_NV_texture_env_combine4 │ │ │ │ ├── GL_NV_texture_expand_normal │ │ │ │ ├── GL_NV_texture_rectangle │ │ │ │ ├── GL_NV_texture_shader │ │ │ │ ├── GL_NV_texture_shader2 │ │ │ │ ├── GL_NV_texture_shader3 │ │ │ │ ├── GL_NV_transform_feedback │ │ │ │ ├── GL_NV_transform_feedback2 │ │ │ │ ├── GL_NV_vertex_array_range │ │ │ │ ├── GL_NV_vertex_array_range2 │ │ │ │ ├── GL_NV_vertex_buffer_unified_memory │ │ │ │ ├── GL_NV_vertex_program │ │ │ │ ├── GL_NV_vertex_program1_1 │ │ │ │ ├── GL_NV_vertex_program2 │ │ │ │ ├── GL_NV_vertex_program2_option │ │ │ │ ├── GL_NV_vertex_program3 │ │ │ │ ├── GL_NV_vertex_program4 │ │ │ │ ├── GL_OES_byte_coordinates │ │ │ │ ├── GL_OES_compressed_paletted_texture │ │ │ │ ├── GL_OES_read_format │ │ │ │ ├── GL_OES_single_precision │ │ │ │ ├── GL_OML_interlace │ │ │ │ ├── GL_OML_resample │ │ │ │ ├── GL_OML_subsample │ │ │ │ ├── GL_PGI_misc_hints │ │ │ │ ├── GL_PGI_vertex_hints │ │ │ │ ├── GL_REND_screen_coordinates │ │ │ │ ├── GL_S3_s3tc │ │ │ │ ├── GL_SGIS_color_range │ │ │ │ ├── GL_SGIS_detail_texture │ │ │ │ ├── GL_SGIS_fog_function │ │ │ │ ├── GL_SGIS_generate_mipmap │ │ │ │ ├── GL_SGIS_multisample │ │ │ │ ├── GL_SGIS_pixel_texture │ │ │ │ ├── GL_SGIS_point_line_texgen │ │ │ │ ├── GL_SGIS_sharpen_texture │ │ │ │ ├── GL_SGIS_texture4D │ │ │ │ ├── GL_SGIS_texture_border_clamp │ │ │ │ ├── GL_SGIS_texture_edge_clamp │ │ │ │ ├── GL_SGIS_texture_filter4 │ │ │ │ ├── GL_SGIS_texture_lod │ │ │ │ ├── GL_SGIS_texture_select │ │ │ │ ├── GL_SGIX_async │ │ │ │ ├── GL_SGIX_async_histogram │ │ │ │ ├── GL_SGIX_async_pixel │ │ │ │ ├── GL_SGIX_blend_alpha_minmax │ │ │ │ ├── GL_SGIX_clipmap │ │ │ │ ├── GL_SGIX_convolution_accuracy │ │ │ │ ├── GL_SGIX_depth_texture │ │ │ │ ├── GL_SGIX_flush_raster │ │ │ │ ├── GL_SGIX_fog_offset │ │ │ │ ├── GL_SGIX_fog_texture │ │ │ │ ├── GL_SGIX_fragment_specular_lighting │ │ │ │ ├── GL_SGIX_framezoom │ │ │ │ ├── GL_SGIX_interlace │ │ │ │ ├── GL_SGIX_ir_instrument1 │ │ │ │ ├── GL_SGIX_list_priority │ │ │ │ ├── GL_SGIX_pixel_texture │ │ │ │ ├── GL_SGIX_pixel_texture_bits │ │ │ │ ├── GL_SGIX_reference_plane │ │ │ │ ├── GL_SGIX_resample │ │ │ │ ├── GL_SGIX_shadow │ │ │ │ ├── GL_SGIX_shadow_ambient │ │ │ │ ├── GL_SGIX_sprite │ │ │ │ ├── GL_SGIX_tag_sample_buffer │ │ │ │ ├── GL_SGIX_texture_add_env │ │ │ │ ├── GL_SGIX_texture_coordinate_clamp │ │ │ │ ├── GL_SGIX_texture_lod_bias │ │ │ │ ├── GL_SGIX_texture_multi_buffer │ │ │ │ ├── GL_SGIX_texture_range │ │ │ │ ├── GL_SGIX_texture_scale_bias │ │ │ │ ├── GL_SGIX_vertex_preclip │ │ │ │ ├── GL_SGIX_vertex_preclip_hint │ │ │ │ ├── GL_SGIX_ycrcb │ │ │ │ ├── GL_SGI_color_matrix │ │ │ │ ├── GL_SGI_color_table │ │ │ │ ├── GL_SGI_texture_color_table │ │ │ │ ├── GL_SUNX_constant_data │ │ │ │ ├── GL_SUN_convolution_border_modes │ │ │ │ ├── GL_SUN_global_alpha │ │ │ │ ├── GL_SUN_mesh_array │ │ │ │ ├── GL_SUN_read_video_pixels │ │ │ │ ├── GL_SUN_slice_accum │ │ │ │ ├── GL_SUN_triangle_list │ │ │ │ ├── GL_SUN_vertex │ │ │ │ ├── GL_WIN_phong_shading │ │ │ │ ├── GL_WIN_specular_fog │ │ │ │ ├── GL_WIN_swap_hint │ │ │ │ ├── WGL_3DFX_multisample │ │ │ │ ├── WGL_3DL_stereo_control │ │ │ │ ├── WGL_AMD_gpu_association │ │ │ │ ├── WGL_ARB_buffer_region │ │ │ │ ├── WGL_ARB_create_context │ │ │ │ ├── WGL_ARB_create_context_profile │ │ │ │ ├── WGL_ARB_extensions_string │ │ │ │ ├── WGL_ARB_framebuffer_sRGB │ │ │ │ ├── WGL_ARB_make_current_read │ │ │ │ ├── WGL_ARB_multisample │ │ │ │ ├── WGL_ARB_pbuffer │ │ │ │ ├── WGL_ARB_pixel_format │ │ │ │ ├── WGL_ARB_pixel_format_float │ │ │ │ ├── WGL_ARB_render_texture │ │ │ │ ├── WGL_ATI_pixel_format_float │ │ │ │ ├── WGL_ATI_render_texture_rectangle │ │ │ │ ├── WGL_EXT_depth_float │ │ │ │ ├── WGL_EXT_display_color_table │ │ │ │ ├── WGL_EXT_extensions_string │ │ │ │ ├── WGL_EXT_framebuffer_sRGB │ │ │ │ ├── WGL_EXT_make_current_read │ │ │ │ ├── WGL_EXT_multisample │ │ │ │ ├── WGL_EXT_pbuffer │ │ │ │ ├── WGL_EXT_pixel_format │ │ │ │ ├── WGL_EXT_pixel_format_packed_float │ │ │ │ ├── WGL_EXT_swap_control │ │ │ │ ├── WGL_I3D_digital_video_control │ │ │ │ ├── WGL_I3D_gamma │ │ │ │ ├── WGL_I3D_genlock │ │ │ │ ├── WGL_I3D_image_buffer │ │ │ │ ├── WGL_I3D_swap_frame_lock │ │ │ │ ├── WGL_I3D_swap_frame_usage │ │ │ │ ├── WGL_NV_copy_image │ │ │ │ ├── WGL_NV_float_buffer │ │ │ │ ├── WGL_NV_gpu_affinity │ │ │ │ ├── WGL_NV_present_video │ │ │ │ ├── WGL_NV_render_depth_texture │ │ │ │ ├── WGL_NV_render_texture_rectangle │ │ │ │ ├── WGL_NV_swap_group │ │ │ │ ├── WGL_NV_vertex_array_range │ │ │ │ ├── WGL_NV_video_output │ │ │ │ └── WGL_OML_sync_control │ │ │ ├── lib/ │ │ │ │ └── OpenGL/ │ │ │ │ └── Spec.pm │ │ │ └── src/ │ │ │ ├── footer.html │ │ │ ├── glew.rc │ │ │ ├── glew_head.c │ │ │ ├── glew_head.h │ │ │ ├── glew_init_gl.c │ │ │ ├── glew_init_glx.c │ │ │ ├── glew_init_tail.c │ │ │ ├── glew_init_wgl.c │ │ │ ├── glew_license.h │ │ │ ├── glew_str_glx.c │ │ │ ├── glew_str_head.c │ │ │ ├── glew_str_tail.c │ │ │ ├── glew_str_wgl.c │ │ │ ├── glew_tail.h │ │ │ ├── glew_utils.c │ │ │ ├── glew_utils.h │ │ │ ├── glewinfo.rc │ │ │ ├── glewinfo_gl.c │ │ │ ├── glewinfo_glx.c │ │ │ ├── glewinfo_head.c │ │ │ ├── glewinfo_tail.c │ │ │ ├── glewinfo_wgl.c │ │ │ ├── glxew_head.h │ │ │ ├── glxew_tail.h │ │ │ ├── header.html │ │ │ ├── khronos_license.h │ │ │ ├── mesa_license.h │ │ │ ├── visualinfo.rc │ │ │ ├── wglew_head.h │ │ │ └── wglew_tail.h │ │ ├── config/ │ │ │ ├── Makefile.cygming │ │ │ ├── Makefile.cygwin │ │ │ ├── Makefile.darwin │ │ │ ├── Makefile.freebsd │ │ │ ├── Makefile.gnu │ │ │ ├── Makefile.irix │ │ │ ├── Makefile.kfreebsd │ │ │ ├── Makefile.linux │ │ │ ├── Makefile.mingw │ │ │ ├── Makefile.solaris │ │ │ ├── config.guess │ │ │ └── version │ │ ├── doc/ │ │ │ ├── advanced.html │ │ │ ├── basic.html │ │ │ ├── credits.html │ │ │ ├── glew.css │ │ │ ├── glew.html │ │ │ ├── glew.txt │ │ │ ├── glxew.html │ │ │ ├── gpl.txt │ │ │ ├── index.html │ │ │ ├── install.html │ │ │ ├── khronos.txt │ │ │ ├── log.html │ │ │ ├── mesa.txt │ │ │ └── wglew.html │ │ ├── glew.pc │ │ ├── glew.pc.in │ │ ├── include/ │ │ │ └── GL/ │ │ │ ├── glew.h │ │ │ ├── glxew.h │ │ │ └── wglew.h │ │ ├── lib/ │ │ │ ├── glew32.exp │ │ │ ├── glew32d.exp │ │ │ ├── glew32d.pdb │ │ │ ├── glew32mx.exp │ │ │ ├── glew32mxd.exp │ │ │ └── glew32mxd.pdb │ │ └── src/ │ │ ├── glew.c │ │ ├── glewinfo.c │ │ └── visualinfo.c │ ├── libigl/ │ │ ├── ACKNOWLEDGEMENTS │ │ ├── LICENSE │ │ ├── LICENSE.GPL │ │ ├── LICENSE.MPL2 │ │ ├── VERSION.txt │ │ └── include/ │ │ └── igl/ │ │ ├── AABB.cpp │ │ ├── AABB.h │ │ ├── ARAPEnergyType.h │ │ ├── C_STR.h │ │ ├── Camera.h │ │ ├── ConjugateFFSolverData.h │ │ ├── EPS.cpp │ │ ├── EPS.h │ │ ├── HalfEdgeIterator.h │ │ ├── Hit.h │ │ ├── IO │ │ ├── IndexComparison.h │ │ ├── LinSpaced.h │ │ ├── MCTables.hh │ │ ├── MeshBooleanType.h │ │ ├── MouseController.h │ │ ├── NormalType.h │ │ ├── ONE.h │ │ ├── OpenGL_convenience.h │ │ ├── PI.h │ │ ├── REDRUM.h │ │ ├── ReAntTweakBar.cpp │ │ ├── ReAntTweakBar.h │ │ ├── RotateWidget.h │ │ ├── STR.h │ │ ├── Singular_Value_Decomposition_Givens_QR_Factorization_Kernel.hpp │ │ ├── Singular_Value_Decomposition_Jacobi_Conjugation_Kernel.hpp │ │ ├── Singular_Value_Decomposition_Kernel_Declarations.hpp │ │ ├── Singular_Value_Decomposition_Main_Kernel_Body.hpp │ │ ├── Singular_Value_Decomposition_Preamble.hpp │ │ ├── SolverStatus.h │ │ ├── SortableRow.h │ │ ├── Timer.h │ │ ├── Viewport.h │ │ ├── WindingNumberAABB.h │ │ ├── WindingNumberMethod.h │ │ ├── WindingNumberTree.h │ │ ├── ZERO.h │ │ ├── active_set.cpp │ │ ├── active_set.h │ │ ├── adjacency_list.cpp │ │ ├── adjacency_list.h │ │ ├── adjacency_matrix.cpp │ │ ├── adjacency_matrix.h │ │ ├── all.cpp │ │ ├── all.h │ │ ├── all_edges.cpp │ │ ├── all_edges.h │ │ ├── all_pairs_distances.cpp │ │ ├── all_pairs_distances.h │ │ ├── ambient_occlusion.cpp │ │ ├── ambient_occlusion.h │ │ ├── angle_bound_frame_fields.cpp │ │ ├── angle_bound_frame_fields.h │ │ ├── angles.cpp │ │ ├── angles.h │ │ ├── angular_distance.cpp │ │ ├── angular_distance.h │ │ ├── anttweakbar/ │ │ │ ├── ReAntTweakBar.cpp │ │ │ ├── ReAntTweakBar.h │ │ │ ├── cocoa_key_to_anttweakbar_key.cpp │ │ │ └── cocoa_key_to_anttweakbar_key.h │ │ ├── any.cpp │ │ ├── any.h │ │ ├── any_of.cpp │ │ ├── any_of.h │ │ ├── arap.cpp │ │ ├── arap.h │ │ ├── arap_dof.cpp │ │ ├── arap_dof.h │ │ ├── arap_linear_block.cpp │ │ ├── arap_linear_block.h │ │ ├── arap_rhs.cpp │ │ ├── arap_rhs.h │ │ ├── average_onto_faces.cpp │ │ ├── average_onto_faces.h │ │ ├── average_onto_vertices.cpp │ │ ├── average_onto_vertices.h │ │ ├── avg_edge_length.cpp │ │ ├── avg_edge_length.h │ │ ├── axis_angle_to_quat.cpp │ │ ├── axis_angle_to_quat.h │ │ ├── barycenter.cpp │ │ ├── barycenter.h │ │ ├── barycentric_coordinates.cpp │ │ ├── barycentric_coordinates.h │ │ ├── barycentric_to_global.cpp │ │ ├── barycentric_to_global.h │ │ ├── basename.cpp │ │ ├── basename.h │ │ ├── bbw/ │ │ │ ├── bbw.cpp │ │ │ └── bbw.h │ │ ├── bbw.cpp │ │ ├── bbw.h │ │ ├── bfs.cpp │ │ ├── bfs.h │ │ ├── bfs_orient.cpp │ │ ├── bfs_orient.h │ │ ├── biharmonic_coordinates.cpp │ │ ├── biharmonic_coordinates.h │ │ ├── bijective_composite_harmonic_mapping.cpp │ │ ├── bijective_composite_harmonic_mapping.h │ │ ├── bone_parents.cpp │ │ ├── bone_parents.h │ │ ├── boolean/ │ │ │ ├── MeshBooleanType.h │ │ │ ├── from_cork_mesh.cpp │ │ │ ├── from_cork_mesh.h │ │ │ ├── mesh_boolean.cpp │ │ │ ├── mesh_boolean.h │ │ │ ├── mesh_boolean_cork.cpp │ │ │ ├── mesh_boolean_cork.h │ │ │ ├── to_cork_mesh.cpp │ │ │ └── to_cork_mesh.h │ │ ├── boost/ │ │ │ ├── bfs_orient.cpp │ │ │ ├── bfs_orient.h │ │ │ ├── components.cpp │ │ │ ├── components.h │ │ │ ├── orientable_patches.cpp │ │ │ └── orientable_patches.h │ │ ├── boundary_conditions.cpp │ │ ├── boundary_conditions.h │ │ ├── boundary_facets.cpp │ │ ├── boundary_facets.h │ │ ├── boundary_loop.cpp │ │ ├── boundary_loop.h │ │ ├── bounding_box.cpp │ │ ├── bounding_box.h │ │ ├── bounding_box_diagonal.cpp │ │ ├── bounding_box_diagonal.h │ │ ├── canonical_quaternions.cpp │ │ ├── canonical_quaternions.h │ │ ├── cat.cpp │ │ ├── cat.h │ │ ├── ceil.cpp │ │ ├── ceil.h │ │ ├── centroid.cpp │ │ ├── centroid.h │ │ ├── cgal/ │ │ │ ├── CGAL_includes.hpp │ │ │ ├── RemeshSelfIntersectionsParam.h │ │ │ ├── SelfIntersectMesh.h │ │ │ ├── complex_to_mesh.cpp │ │ │ ├── complex_to_mesh.h │ │ │ ├── intersect_other.cpp │ │ │ ├── intersect_other.h │ │ │ ├── mesh_to_cgal_triangle_list.cpp │ │ │ ├── mesh_to_cgal_triangle_list.h │ │ │ ├── mesh_to_polyhedron.cpp │ │ │ ├── mesh_to_polyhedron.h │ │ │ ├── order_facets_around_edges.cpp │ │ │ ├── order_facets_around_edges.h │ │ │ ├── outer_hull.cpp │ │ │ ├── outer_hull.h │ │ │ ├── peel_outer_hull_layers.cpp │ │ │ ├── peel_outer_hull_layers.h │ │ │ ├── point_mesh_squared_distance.cpp │ │ │ ├── point_mesh_squared_distance.h │ │ │ ├── polyhedron_to_mesh.cpp │ │ │ ├── polyhedron_to_mesh.h │ │ │ ├── remesh_self_intersections.cpp │ │ │ ├── remesh_self_intersections.h │ │ │ ├── signed_distance_isosurface.cpp │ │ │ └── signed_distance_isosurface.h │ │ ├── circulation.cpp │ │ ├── circulation.h │ │ ├── circumradius.cpp │ │ ├── circumradius.h │ │ ├── cocoa_key_to_anttweakbar_key.cpp │ │ ├── cocoa_key_to_anttweakbar_key.h │ │ ├── collapse_edge.cpp │ │ ├── collapse_edge.h │ │ ├── collapse_small_triangles.cpp │ │ ├── collapse_small_triangles.h │ │ ├── colon.cpp │ │ ├── colon.h │ │ ├── column_to_quats.cpp │ │ ├── column_to_quats.h │ │ ├── columnize.cpp │ │ ├── columnize.h │ │ ├── comb_cross_field.cpp │ │ ├── comb_cross_field.h │ │ ├── comb_frame_field.cpp │ │ ├── comb_frame_field.h │ │ ├── comb_line_field.cpp │ │ ├── comb_line_field.h │ │ ├── combine.cpp │ │ ├── combine.h │ │ ├── comiso/ │ │ │ ├── frame_field.cpp │ │ │ ├── frame_field.h │ │ │ ├── miq.cpp │ │ │ ├── miq.h │ │ │ ├── nrosy.cpp │ │ │ └── nrosy.h │ │ ├── compile_and_link_program.cpp │ │ ├── compile_and_link_program.h │ │ ├── compile_shader.cpp │ │ ├── compile_shader.h │ │ ├── components.cpp │ │ ├── components.h │ │ ├── compute_frame_field_bisectors.cpp │ │ ├── compute_frame_field_bisectors.h │ │ ├── conjugate_frame_fields.cpp │ │ ├── conjugate_frame_fields.h │ │ ├── connect_boundary_to_infinity.cpp │ │ ├── connect_boundary_to_infinity.h │ │ ├── copyleft/ │ │ │ ├── README.md │ │ │ ├── cgal/ │ │ │ │ ├── BinaryWindingNumberOperations.h │ │ │ │ ├── CGAL_includes.hpp │ │ │ │ ├── CSGTree.h │ │ │ │ ├── RemeshSelfIntersectionsParam.h │ │ │ │ ├── SelfIntersectMesh.h │ │ │ │ ├── assign.cpp │ │ │ │ ├── assign.h │ │ │ │ ├── assign_scalar.cpp │ │ │ │ ├── assign_scalar.h │ │ │ │ ├── barycenter.cpp │ │ │ │ ├── cell_adjacency.cpp │ │ │ │ ├── cell_adjacency.h │ │ │ │ ├── closest_facet.cpp │ │ │ │ ├── closest_facet.h │ │ │ │ ├── complex_to_mesh.cpp │ │ │ │ ├── complex_to_mesh.h │ │ │ │ ├── component_inside_component.cpp │ │ │ │ ├── component_inside_component.h │ │ │ │ ├── delaunay_triangulation.cpp │ │ │ │ ├── delaunay_triangulation.h │ │ │ │ ├── extract_cells.cpp │ │ │ │ ├── extract_cells.h │ │ │ │ ├── extract_feature.cpp │ │ │ │ ├── extract_feature.h │ │ │ │ ├── half_space_box.cpp │ │ │ │ ├── half_space_box.h │ │ │ │ ├── incircle.cpp │ │ │ │ ├── incircle.h │ │ │ │ ├── insert_into_cdt.cpp │ │ │ │ ├── insert_into_cdt.h │ │ │ │ ├── insphere.cpp │ │ │ │ ├── insphere.h │ │ │ │ ├── intersect_other.cpp │ │ │ │ ├── intersect_other.h │ │ │ │ ├── intersect_with_half_space.cpp │ │ │ │ ├── intersect_with_half_space.h │ │ │ │ ├── lexicographic_triangulation.cpp │ │ │ │ ├── lexicographic_triangulation.h │ │ │ │ ├── mesh_boolean.cpp │ │ │ │ ├── mesh_boolean.h │ │ │ │ ├── mesh_boolean_type_to_funcs.cpp │ │ │ │ ├── mesh_boolean_type_to_funcs.h │ │ │ │ ├── mesh_to_cgal_triangle_list.cpp │ │ │ │ ├── mesh_to_cgal_triangle_list.h │ │ │ │ ├── mesh_to_polyhedron.cpp │ │ │ │ ├── mesh_to_polyhedron.h │ │ │ │ ├── minkowski_sum.cpp │ │ │ │ ├── minkowski_sum.h │ │ │ │ ├── order_facets_around_edge.cpp │ │ │ │ ├── order_facets_around_edge.h │ │ │ │ ├── order_facets_around_edges.cpp │ │ │ │ ├── order_facets_around_edges.h │ │ │ │ ├── orient2D.cpp │ │ │ │ ├── orient2D.h │ │ │ │ ├── orient3D.cpp │ │ │ │ ├── orient3D.h │ │ │ │ ├── outer_element.cpp │ │ │ │ ├── outer_element.h │ │ │ │ ├── outer_facet.cpp │ │ │ │ ├── outer_facet.h │ │ │ │ ├── outer_hull.cpp │ │ │ │ ├── outer_hull.h │ │ │ │ ├── peel_outer_hull_layers.cpp │ │ │ │ ├── peel_outer_hull_layers.h │ │ │ │ ├── peel_winding_number_layers.cpp │ │ │ │ ├── peel_winding_number_layers.h │ │ │ │ ├── piecewise_constant_winding_number.cpp │ │ │ │ ├── piecewise_constant_winding_number.h │ │ │ │ ├── point_mesh_squared_distance.cpp │ │ │ │ ├── point_mesh_squared_distance.h │ │ │ │ ├── point_segment_squared_distance.cpp │ │ │ │ ├── point_segment_squared_distance.h │ │ │ │ ├── point_solid_signed_squared_distance.cpp │ │ │ │ ├── point_solid_signed_squared_distance.h │ │ │ │ ├── point_triangle_squared_distance.cpp │ │ │ │ ├── point_triangle_squared_distance.h │ │ │ │ ├── points_inside_component.cpp │ │ │ │ ├── points_inside_component.h │ │ │ │ ├── polyhedron_to_mesh.cpp │ │ │ │ ├── polyhedron_to_mesh.h │ │ │ │ ├── projected_cdt.cpp │ │ │ │ ├── projected_cdt.h │ │ │ │ ├── projected_delaunay.cpp │ │ │ │ ├── projected_delaunay.h │ │ │ │ ├── propagate_winding_numbers.cpp │ │ │ │ ├── propagate_winding_numbers.h │ │ │ │ ├── read_triangle_mesh.cpp │ │ │ │ ├── read_triangle_mesh.h │ │ │ │ ├── relabel_small_immersed_cells.cpp │ │ │ │ ├── relabel_small_immersed_cells.h │ │ │ │ ├── remesh_intersections.cpp │ │ │ │ ├── remesh_intersections.h │ │ │ │ ├── remesh_self_intersections.cpp │ │ │ │ ├── remesh_self_intersections.h │ │ │ │ ├── remove_unreferenced.cpp │ │ │ │ ├── resolve_intersections.cpp │ │ │ │ ├── resolve_intersections.h │ │ │ │ ├── row_to_point.cpp │ │ │ │ ├── row_to_point.h │ │ │ │ ├── segment_segment_squared_distance.cpp │ │ │ │ ├── segment_segment_squared_distance.h │ │ │ │ ├── signed_distance_isosurface.cpp │ │ │ │ ├── signed_distance_isosurface.h │ │ │ │ ├── slice.cpp │ │ │ │ ├── snap_rounding.cpp │ │ │ │ ├── snap_rounding.h │ │ │ │ ├── string_to_mesh_boolean_type.cpp │ │ │ │ ├── string_to_mesh_boolean_type.h │ │ │ │ ├── subdivide_segments.cpp │ │ │ │ ├── subdivide_segments.h │ │ │ │ ├── submesh_aabb_tree.cpp │ │ │ │ ├── submesh_aabb_tree.h │ │ │ │ ├── triangle_triangle_squared_distance.cpp │ │ │ │ ├── triangle_triangle_squared_distance.h │ │ │ │ ├── trim_with_solid.cpp │ │ │ │ ├── trim_with_solid.h │ │ │ │ └── unique.cpp │ │ │ ├── comiso/ │ │ │ │ ├── frame_field.cpp │ │ │ │ ├── frame_field.h │ │ │ │ ├── miq.cpp │ │ │ │ ├── miq.h │ │ │ │ ├── miqNew.cpp │ │ │ │ ├── miqNew.h │ │ │ │ ├── nrosy.cpp │ │ │ │ └── nrosy.h │ │ │ ├── cork/ │ │ │ │ ├── from_cork_mesh.cpp │ │ │ │ ├── from_cork_mesh.h │ │ │ │ ├── mesh_boolean.cpp │ │ │ │ ├── mesh_boolean.h │ │ │ │ ├── to_cork_mesh.cpp │ │ │ │ └── to_cork_mesh.h │ │ │ ├── marching_cubes.cpp │ │ │ ├── marching_cubes.h │ │ │ ├── marching_cubes_tables.h │ │ │ ├── progressive_hulls.cpp │ │ │ ├── progressive_hulls.h │ │ │ ├── progressive_hulls_cost_and_placement.cpp │ │ │ ├── progressive_hulls_cost_and_placement.h │ │ │ ├── quadprog.cpp │ │ │ ├── quadprog.h │ │ │ ├── swept_volume.cpp │ │ │ ├── swept_volume.h │ │ │ └── tetgen/ │ │ │ ├── README │ │ │ ├── cdt.cpp │ │ │ ├── cdt.h │ │ │ ├── mesh_to_tetgenio.cpp │ │ │ ├── mesh_to_tetgenio.h │ │ │ ├── mesh_with_skeleton.cpp │ │ │ ├── mesh_with_skeleton.h │ │ │ ├── read_into_tetgenio.cpp │ │ │ ├── read_into_tetgenio.h │ │ │ ├── tetgenio_to_tetmesh.cpp │ │ │ ├── tetgenio_to_tetmesh.h │ │ │ ├── tetrahedralize.cpp │ │ │ └── tetrahedralize.h │ │ ├── cotmatrix.cpp │ │ ├── cotmatrix.h │ │ ├── cotmatrix_entries.cpp │ │ ├── cotmatrix_entries.h │ │ ├── count.cpp │ │ ├── count.h │ │ ├── covariance_scatter_matrix.cpp │ │ ├── covariance_scatter_matrix.h │ │ ├── create_index_vbo.cpp │ │ ├── create_index_vbo.h │ │ ├── create_mesh_vbo.cpp │ │ ├── create_mesh_vbo.h │ │ ├── create_shader_program.cpp │ │ ├── create_shader_program.h │ │ ├── create_vector_vbo.cpp │ │ ├── create_vector_vbo.h │ │ ├── cross.cpp │ │ ├── cross.h │ │ ├── cross_field_missmatch.cpp │ │ ├── cross_field_missmatch.h │ │ ├── crouzeix_raviart_massmatrix.cpp │ │ ├── crouzeix_raviart_massmatrix.h │ │ ├── cumsum.cpp │ │ ├── cumsum.h │ │ ├── cut_mesh.cpp │ │ ├── cut_mesh.h │ │ ├── cut_mesh_from_singularities.cpp │ │ ├── cut_mesh_from_singularities.h │ │ ├── cylinder.cpp │ │ ├── cylinder.h │ │ ├── dated_copy.cpp │ │ ├── dated_copy.h │ │ ├── decimate.cpp │ │ ├── decimate.h │ │ ├── deform_skeleton.cpp │ │ ├── deform_skeleton.h │ │ ├── delaunay_triangulation.cpp │ │ ├── delaunay_triangulation.h │ │ ├── deprecated.h │ │ ├── destroy_shader_program.cpp │ │ ├── destroy_shader_program.h │ │ ├── dfs.cpp │ │ ├── dfs.h │ │ ├── diag.cpp │ │ ├── diag.h │ │ ├── dihedral_angles.cpp │ │ ├── dihedral_angles.h │ │ ├── dijkstra.cpp │ │ ├── dijkstra.h │ │ ├── directed_edge_orientations.cpp │ │ ├── directed_edge_orientations.h │ │ ├── directed_edge_parents.cpp │ │ ├── directed_edge_parents.h │ │ ├── dirname.cpp │ │ ├── dirname.h │ │ ├── dot.cpp │ │ ├── dot.h │ │ ├── dot_row.cpp │ │ ├── dot_row.h │ │ ├── doublearea.cpp │ │ ├── doublearea.h │ │ ├── dqs.cpp │ │ ├── dqs.h │ │ ├── draw_beach_ball.cpp │ │ ├── draw_beach_ball.h │ │ ├── draw_floor.cpp │ │ ├── draw_floor.h │ │ ├── draw_mesh.cpp │ │ ├── draw_mesh.h │ │ ├── draw_point.cpp │ │ ├── draw_point.h │ │ ├── draw_rectangular_marquee.cpp │ │ ├── draw_rectangular_marquee.h │ │ ├── draw_skeleton_3d.cpp │ │ ├── draw_skeleton_3d.h │ │ ├── draw_skeleton_vector_graphics.cpp │ │ ├── draw_skeleton_vector_graphics.h │ │ ├── ears.cpp │ │ ├── ears.h │ │ ├── edge_collapse_is_valid.cpp │ │ ├── edge_collapse_is_valid.h │ │ ├── edge_flaps.cpp │ │ ├── edge_flaps.h │ │ ├── edge_lengths.cpp │ │ ├── edge_lengths.h │ │ ├── edge_topology.cpp │ │ ├── edge_topology.h │ │ ├── edges.cpp │ │ ├── edges.h │ │ ├── edges_to_path.cpp │ │ ├── edges_to_path.h │ │ ├── eigs.cpp │ │ ├── eigs.h │ │ ├── embree/ │ │ │ ├── EmbreeIntersector.h │ │ │ ├── Embree_convenience.h │ │ │ ├── Hit.h │ │ │ ├── ambient_occlusion.cpp │ │ │ ├── ambient_occlusion.h │ │ │ ├── bone_heat.cpp │ │ │ ├── bone_heat.h │ │ │ ├── bone_visible.cpp │ │ │ ├── bone_visible.h │ │ │ ├── line_mesh_intersection.cpp │ │ │ ├── line_mesh_intersection.h │ │ │ ├── reorient_facets_raycast.cpp │ │ │ ├── reorient_facets_raycast.h │ │ │ ├── unproject_in_mesh.cpp │ │ │ ├── unproject_in_mesh.h │ │ │ ├── unproject_onto_mesh.cpp │ │ │ └── unproject_onto_mesh.h │ │ ├── euler_characteristic.cpp │ │ ├── euler_characteristic.h │ │ ├── example_fun.cpp │ │ ├── example_fun.h │ │ ├── exterior_edges.cpp │ │ ├── exterior_edges.h │ │ ├── extract_manifold_patches.cpp │ │ ├── extract_manifold_patches.h │ │ ├── extract_non_manifold_edge_curves.cpp │ │ ├── extract_non_manifold_edge_curves.h │ │ ├── face_areas.cpp │ │ ├── face_areas.h │ │ ├── face_occurrences.cpp │ │ ├── face_occurrences.h │ │ ├── faces_first.cpp │ │ ├── faces_first.h │ │ ├── facet_components.cpp │ │ ├── facet_components.h │ │ ├── false_barycentric_subdivision.cpp │ │ ├── false_barycentric_subdivision.h │ │ ├── field_local_global_conversions.cpp │ │ ├── field_local_global_conversions.h │ │ ├── file_contents_as_string.cpp │ │ ├── file_contents_as_string.h │ │ ├── file_dialog_open.cpp │ │ ├── file_dialog_open.h │ │ ├── file_dialog_save.cpp │ │ ├── file_dialog_save.h │ │ ├── file_exists.cpp │ │ ├── file_exists.h │ │ ├── find.cpp │ │ ├── find.h │ │ ├── find_cross_field_singularities.cpp │ │ ├── find_cross_field_singularities.h │ │ ├── find_zero.cpp │ │ ├── find_zero.h │ │ ├── fit_plane.cpp │ │ ├── fit_plane.h │ │ ├── fit_rigid.cpp │ │ ├── fit_rigid.h │ │ ├── fit_rotations.cpp │ │ ├── fit_rotations.h │ │ ├── flare_textures.h │ │ ├── flip_avoiding_line_search.cpp │ │ ├── flip_avoiding_line_search.h │ │ ├── flip_edge.cpp │ │ ├── flip_edge.h │ │ ├── flipped_triangles.cpp │ │ ├── flipped_triangles.h │ │ ├── flood_fill.cpp │ │ ├── flood_fill.h │ │ ├── floor.cpp │ │ ├── floor.h │ │ ├── for_each.h │ │ ├── forward_kinematics.cpp │ │ ├── forward_kinematics.h │ │ ├── frame_field_deformer.cpp │ │ ├── frame_field_deformer.h │ │ ├── frame_to_cross_field.cpp │ │ ├── frame_to_cross_field.h │ │ ├── frustum.cpp │ │ ├── frustum.h │ │ ├── full.cpp │ │ ├── full.h │ │ ├── gaussian_curvature.cpp │ │ ├── gaussian_curvature.h │ │ ├── get_modifiers.h │ │ ├── get_seconds.cpp │ │ ├── get_seconds.h │ │ ├── get_seconds_hires.cpp │ │ ├── get_seconds_hires.h │ │ ├── gl_type_size.cpp │ │ ├── gl_type_size.h │ │ ├── grad.cpp │ │ ├── grad.h │ │ ├── grid.cpp │ │ ├── grid.h │ │ ├── group_sum_matrix.cpp │ │ ├── group_sum_matrix.h │ │ ├── guess_extension.cpp │ │ ├── guess_extension.h │ │ ├── harmonic.cpp │ │ ├── harmonic.h │ │ ├── harwell_boeing.cpp │ │ ├── harwell_boeing.h │ │ ├── hausdorff.cpp │ │ ├── hausdorff.h │ │ ├── histc.cpp │ │ ├── histc.h │ │ ├── hsv_to_rgb.cpp │ │ ├── hsv_to_rgb.h │ │ ├── igl_inline.h │ │ ├── in_element.cpp │ │ ├── in_element.h │ │ ├── infinite_cost_stopping_condition.cpp │ │ ├── infinite_cost_stopping_condition.h │ │ ├── init_render_to_texture.cpp │ │ ├── init_render_to_texture.h │ │ ├── inradius.cpp │ │ ├── inradius.h │ │ ├── integrable_polyvector_fields.cpp │ │ ├── integrable_polyvector_fields.h │ │ ├── internal_angles.cpp │ │ ├── internal_angles.h │ │ ├── intersect.cpp │ │ ├── intersect.h │ │ ├── invert_diag.cpp │ │ ├── invert_diag.h │ │ ├── is_border_vertex.cpp │ │ ├── is_border_vertex.h │ │ ├── is_boundary_edge.cpp │ │ ├── is_boundary_edge.h │ │ ├── is_dir.cpp │ │ ├── is_dir.h │ │ ├── is_edge_manifold.cpp │ │ ├── is_edge_manifold.h │ │ ├── is_file.cpp │ │ ├── is_file.h │ │ ├── is_irregular_vertex.cpp │ │ ├── is_irregular_vertex.h │ │ ├── is_planar.cpp │ │ ├── is_planar.h │ │ ├── is_readable.cpp │ │ ├── is_readable.h │ │ ├── is_sparse.cpp │ │ ├── is_sparse.h │ │ ├── is_stl.cpp │ │ ├── is_stl.h │ │ ├── is_symmetric.cpp │ │ ├── is_symmetric.h │ │ ├── is_vertex_manifold.cpp │ │ ├── is_vertex_manifold.h │ │ ├── is_writable.cpp │ │ ├── is_writable.h │ │ ├── isdiag.cpp │ │ ├── isdiag.h │ │ ├── ismember.cpp │ │ ├── ismember.h │ │ ├── jet.cpp │ │ ├── jet.h │ │ ├── kronecker_product.cpp │ │ ├── kronecker_product.h │ │ ├── launch_medit.cpp │ │ ├── launch_medit.h │ │ ├── lbs_matrix.cpp │ │ ├── lbs_matrix.h │ │ ├── lens_flare.cpp │ │ ├── lens_flare.h │ │ ├── lexicographic_triangulation.cpp │ │ ├── lexicographic_triangulation.h │ │ ├── lim/ │ │ │ ├── lim.cpp │ │ │ └── lim.h │ │ ├── limit_faces.cpp │ │ ├── limit_faces.h │ │ ├── line_field_missmatch.cpp │ │ ├── line_field_missmatch.h │ │ ├── line_search.cpp │ │ ├── line_search.h │ │ ├── line_segment_in_rectangle.cpp │ │ ├── line_segment_in_rectangle.h │ │ ├── linprog.cpp │ │ ├── linprog.h │ │ ├── list_to_matrix.cpp │ │ ├── list_to_matrix.h │ │ ├── load_shader.cpp │ │ ├── load_shader.h │ │ ├── local_basis.cpp │ │ ├── local_basis.h │ │ ├── look_at.cpp │ │ ├── look_at.h │ │ ├── loop.cpp │ │ ├── loop.h │ │ ├── lscm.cpp │ │ ├── lscm.h │ │ ├── lu_lagrange.cpp │ │ ├── lu_lagrange.h │ │ ├── map_vertices_to_circle.cpp │ │ ├── map_vertices_to_circle.h │ │ ├── marching_cubes.cpp │ │ ├── marching_cubes.h │ │ ├── massmatrix.cpp │ │ ├── massmatrix.h │ │ ├── mat_max.cpp │ │ ├── mat_max.h │ │ ├── mat_min.cpp │ │ ├── mat_min.h │ │ ├── mat_to_quat.cpp │ │ ├── mat_to_quat.h │ │ ├── material_colors.h │ │ ├── matlab/ │ │ │ ├── MatlabWorkspace.h │ │ │ ├── MexStream.h │ │ │ ├── matlabinterface.cpp │ │ │ ├── matlabinterface.h │ │ │ ├── mexErrMsgTxt.cpp │ │ │ ├── mexErrMsgTxt.h │ │ │ ├── parse_rhs.cpp │ │ │ ├── parse_rhs.h │ │ │ ├── prepare_lhs.cpp │ │ │ ├── prepare_lhs.h │ │ │ ├── requires_arg.cpp │ │ │ ├── requires_arg.h │ │ │ ├── validate_arg.cpp │ │ │ └── validate_arg.h │ │ ├── matlab_format.cpp │ │ ├── matlab_format.h │ │ ├── matrix_to_list.cpp │ │ ├── matrix_to_list.h │ │ ├── max.cpp │ │ ├── max.h │ │ ├── max_faces_stopping_condition.cpp │ │ ├── max_faces_stopping_condition.h │ │ ├── max_size.cpp │ │ ├── max_size.h │ │ ├── median.cpp │ │ ├── median.h │ │ ├── min.cpp │ │ ├── min.h │ │ ├── min_quad_dense.cpp │ │ ├── min_quad_dense.h │ │ ├── min_quad_with_fixed.cpp │ │ ├── min_quad_with_fixed.h │ │ ├── min_size.cpp │ │ ├── min_size.h │ │ ├── mod.cpp │ │ ├── mod.h │ │ ├── mode.cpp │ │ ├── mode.h │ │ ├── mosek/ │ │ │ ├── bbw.cpp │ │ │ ├── bbw.h │ │ │ ├── mosek_guarded.cpp │ │ │ ├── mosek_guarded.h │ │ │ ├── mosek_linprog.cpp │ │ │ ├── mosek_linprog.h │ │ │ ├── mosek_quadprog.cpp │ │ │ └── mosek_quadprog.h │ │ ├── mvc.cpp │ │ ├── mvc.h │ │ ├── n_polyvector.cpp │ │ ├── n_polyvector.h │ │ ├── n_polyvector_general.cpp │ │ ├── n_polyvector_general.h │ │ ├── nchoosek.cpp │ │ ├── nchoosek.h │ │ ├── next_filename.cpp │ │ ├── next_filename.h │ │ ├── normal_derivative.cpp │ │ ├── normal_derivative.h │ │ ├── normalize_quat.cpp │ │ ├── normalize_quat.h │ │ ├── normalize_row_lengths.cpp │ │ ├── normalize_row_lengths.h │ │ ├── normalize_row_sums.cpp │ │ ├── normalize_row_sums.h │ │ ├── null.cpp │ │ ├── null.h │ │ ├── on_boundary.cpp │ │ ├── on_boundary.h │ │ ├── opengl/ │ │ │ ├── compile_and_link_program.cpp │ │ │ ├── compile_and_link_program.h │ │ │ ├── compile_shader.cpp │ │ │ ├── compile_shader.h │ │ │ ├── create_index_vbo.cpp │ │ │ ├── create_index_vbo.h │ │ │ ├── create_mesh_vbo.cpp │ │ │ ├── create_mesh_vbo.h │ │ │ ├── create_shader_program.cpp │ │ │ ├── create_shader_program.h │ │ │ ├── create_vector_vbo.cpp │ │ │ ├── create_vector_vbo.h │ │ │ ├── destroy_shader_program.cpp │ │ │ ├── destroy_shader_program.h │ │ │ ├── gl 12.56.14.h │ │ │ ├── gl_type_size.cpp │ │ │ ├── gl_type_size.h │ │ │ ├── glfw/ │ │ │ │ ├── map_texture.cpp │ │ │ │ └── map_texture.h │ │ │ ├── init_render_to_texture.cpp │ │ │ ├── init_render_to_texture.h │ │ │ ├── load_shader.cpp │ │ │ ├── load_shader.h │ │ │ ├── print_program_info_log.cpp │ │ │ ├── print_program_info_log.h │ │ │ ├── print_shader_info_log.cpp │ │ │ ├── print_shader_info_log.h │ │ │ ├── report_gl_error.cpp │ │ │ ├── report_gl_error.h │ │ │ ├── uniform_type_to_string.cpp │ │ │ └── uniform_type_to_string.h │ │ ├── opengl2/ │ │ │ ├── MouseController.h │ │ │ ├── RotateWidget.h │ │ │ ├── TranslateWidget.h │ │ │ ├── draw_beach_ball.cpp │ │ │ ├── draw_beach_ball.h │ │ │ ├── draw_floor.cpp │ │ │ ├── draw_floor.h │ │ │ ├── draw_mesh.cpp │ │ │ ├── draw_mesh.h │ │ │ ├── draw_point.cpp │ │ │ ├── draw_point.h │ │ │ ├── draw_rectangular_marquee.cpp │ │ │ ├── draw_rectangular_marquee.h │ │ │ ├── draw_skeleton_3d.cpp │ │ │ ├── draw_skeleton_3d.h │ │ │ ├── draw_skeleton_vector_graphics.cpp │ │ │ ├── draw_skeleton_vector_graphics.h │ │ │ ├── flare_textures.h │ │ │ ├── gl.h │ │ │ ├── glext.h │ │ │ ├── glu.h │ │ │ ├── lens_flare.cpp │ │ │ ├── lens_flare.h │ │ │ ├── model_proj_viewport.cpp │ │ │ ├── model_proj_viewport.h │ │ │ ├── print_gl_get.cpp │ │ │ ├── print_gl_get.h │ │ │ ├── project.cpp │ │ │ ├── project.h │ │ │ ├── render_to_tga.cpp │ │ │ ├── render_to_tga.h │ │ │ ├── right_axis.cpp │ │ │ ├── right_axis.h │ │ │ ├── shine_textures.h │ │ │ ├── sort_triangles.cpp │ │ │ ├── sort_triangles.h │ │ │ ├── texture_from_tga.cpp │ │ │ ├── texture_from_tga.h │ │ │ ├── tga.cpp │ │ │ ├── tga.h │ │ │ ├── unproject.cpp │ │ │ ├── unproject.h │ │ │ ├── unproject_to_zero_plane.cpp │ │ │ ├── unproject_to_zero_plane.h │ │ │ ├── up_axis.cpp │ │ │ ├── up_axis.h │ │ │ ├── view_axis.cpp │ │ │ └── view_axis.h │ │ ├── orient_outward.cpp │ │ ├── orient_outward.h │ │ ├── orientable_patches.cpp │ │ ├── orientable_patches.h │ │ ├── orth.cpp │ │ ├── orth.h │ │ ├── ortho.cpp │ │ ├── ortho.h │ │ ├── outer_element.cpp │ │ ├── outer_element.h │ │ ├── outer_facet.cpp │ │ ├── outer_facet.h │ │ ├── parallel_for.h │ │ ├── parallel_transport_angles.cpp │ │ ├── parallel_transport_angles.h │ │ ├── partition.cpp │ │ ├── partition.h │ │ ├── parula.cpp │ │ ├── parula.h │ │ ├── path_to_executable.cpp │ │ ├── path_to_executable.h │ │ ├── pathinfo.cpp │ │ ├── pathinfo.h │ │ ├── per_corner_normals.cpp │ │ ├── per_corner_normals.h │ │ ├── per_edge_normals.cpp │ │ ├── per_edge_normals.h │ │ ├── per_face_normals.cpp │ │ ├── per_face_normals.h │ │ ├── per_vertex_attribute_smoothing.cpp │ │ ├── per_vertex_attribute_smoothing.h │ │ ├── per_vertex_normals.cpp │ │ ├── per_vertex_normals.h │ │ ├── per_vertex_point_to_plane_quadrics.cpp │ │ ├── per_vertex_point_to_plane_quadrics.h │ │ ├── piecewise_constant_winding_number.cpp │ │ ├── piecewise_constant_winding_number.h │ │ ├── planarize_quad_mesh.cpp │ │ ├── planarize_quad_mesh.h │ │ ├── ply.h │ │ ├── png/ │ │ │ ├── readPNG.cpp │ │ │ ├── readPNG.h │ │ │ ├── render_to_png.cpp │ │ │ ├── render_to_png.h │ │ │ ├── render_to_png_async.cpp │ │ │ ├── render_to_png_async.h │ │ │ ├── texture_from_file.cpp │ │ │ ├── texture_from_file.h │ │ │ ├── texture_from_png.cpp │ │ │ ├── texture_from_png.h │ │ │ ├── writePNG.cpp │ │ │ └── writePNG.h │ │ ├── point_in_circle.cpp │ │ ├── point_in_circle.h │ │ ├── point_in_poly.cpp │ │ ├── point_in_poly.h │ │ ├── point_mesh_squared_distance.cpp │ │ ├── point_mesh_squared_distance.h │ │ ├── point_simplex_squared_distance.cpp │ │ ├── point_simplex_squared_distance.h │ │ ├── polar_dec.cpp │ │ ├── polar_dec.h │ │ ├── polar_svd.cpp │ │ ├── polar_svd.h │ │ ├── polar_svd3x3.cpp │ │ ├── polar_svd3x3.h │ │ ├── polygon_mesh_to_triangle_mesh.cpp │ │ ├── polygon_mesh_to_triangle_mesh.h │ │ ├── polyroots.cpp │ │ ├── polyroots.h │ │ ├── polyvector_field_comb_from_matchings_and_cuts.cpp │ │ ├── polyvector_field_comb_from_matchings_and_cuts.h │ │ ├── polyvector_field_cut_mesh_with_singularities.cpp │ │ ├── polyvector_field_cut_mesh_with_singularities.h │ │ ├── polyvector_field_matchings.cpp │ │ ├── polyvector_field_matchings.h │ │ ├── polyvector_field_poisson_reconstruction.cpp │ │ ├── polyvector_field_poisson_reconstruction.h │ │ ├── polyvector_field_singularities_from_matchings.cpp │ │ ├── polyvector_field_singularities_from_matchings.h │ │ ├── principal_curvature.cpp │ │ ├── principal_curvature.h │ │ ├── print_gl_get.cpp │ │ ├── print_gl_get.h │ │ ├── print_ijv.cpp │ │ ├── print_ijv.h │ │ ├── print_program_info_log.cpp │ │ ├── print_program_info_log.h │ │ ├── print_shader_info_log.cpp │ │ ├── print_shader_info_log.h │ │ ├── print_vector.cpp │ │ ├── print_vector.h │ │ ├── procrustes.cpp │ │ ├── procrustes.h │ │ ├── project.cpp │ │ ├── project.h │ │ ├── project_isometrically_to_plane.cpp │ │ ├── project_isometrically_to_plane.h │ │ ├── project_to_line.cpp │ │ ├── project_to_line.h │ │ ├── project_to_line_segment.cpp │ │ ├── project_to_line_segment.h │ │ ├── pseudonormal_test.cpp │ │ ├── pseudonormal_test.h │ │ ├── qslim.cpp │ │ ├── qslim.h │ │ ├── qslim_optimal_collapse_edge_callbacks.cpp │ │ ├── qslim_optimal_collapse_edge_callbacks.h │ │ ├── quad_planarity.cpp │ │ ├── quad_planarity.h │ │ ├── quadric_binary_plus_operator.cpp │ │ ├── quadric_binary_plus_operator.h │ │ ├── quat_conjugate.cpp │ │ ├── quat_conjugate.h │ │ ├── quat_mult.cpp │ │ ├── quat_mult.h │ │ ├── quat_to_axis_angle.cpp │ │ ├── quat_to_axis_angle.h │ │ ├── quat_to_mat.cpp │ │ ├── quat_to_mat.h │ │ ├── quats_to_column.cpp │ │ ├── quats_to_column.h │ │ ├── ramer_douglas_peucker.cpp │ │ ├── ramer_douglas_peucker.h │ │ ├── random_dir.cpp │ │ ├── random_dir.h │ │ ├── random_points_on_mesh.cpp │ │ ├── random_points_on_mesh.h │ │ ├── random_quaternion.cpp │ │ ├── random_quaternion.h │ │ ├── randperm.cpp │ │ ├── randperm.h │ │ ├── ray_box_intersect.cpp │ │ ├── ray_box_intersect.h │ │ ├── ray_mesh_intersect.cpp │ │ ├── ray_mesh_intersect.h │ │ ├── ray_sphere_intersect.cpp │ │ ├── ray_sphere_intersect.h │ │ ├── raytri.c │ │ ├── readBF.cpp │ │ ├── readBF.h │ │ ├── readCSV.cpp │ │ ├── readCSV.h │ │ ├── readDMAT.cpp │ │ ├── readDMAT.h │ │ ├── readMESH.cpp │ │ ├── readMESH.h │ │ ├── readNODE.cpp │ │ ├── readNODE.h │ │ ├── readOBJ.cpp │ │ ├── readOBJ.h │ │ ├── readOFF.cpp │ │ ├── readOFF.h │ │ ├── readPLY.cpp │ │ ├── readPLY.h │ │ ├── readSTL.cpp │ │ ├── readSTL.h │ │ ├── readTGF.cpp │ │ ├── readTGF.h │ │ ├── readWRL.cpp │ │ ├── readWRL.h │ │ ├── read_triangle_mesh.cpp │ │ ├── read_triangle_mesh.h │ │ ├── redux.h │ │ ├── remove_duplicate_vertices.cpp │ │ ├── remove_duplicate_vertices.h │ │ ├── remove_duplicates.cpp │ │ ├── remove_duplicates.h │ │ ├── remove_unreferenced.cpp │ │ ├── remove_unreferenced.h │ │ ├── render_to_tga.cpp │ │ ├── render_to_tga.h │ │ ├── reorder.cpp │ │ ├── reorder.h │ │ ├── repdiag.cpp │ │ ├── repdiag.h │ │ ├── repmat.cpp │ │ ├── repmat.h │ │ ├── report_gl_error.cpp │ │ ├── report_gl_error.h │ │ ├── resolve_duplicated_faces.cpp │ │ ├── resolve_duplicated_faces.h │ │ ├── rgb_to_hsv.cpp │ │ ├── rgb_to_hsv.h │ │ ├── right_axis.cpp │ │ ├── right_axis.h │ │ ├── rotate_by_quat.cpp │ │ ├── rotate_by_quat.h │ │ ├── rotate_vectors.cpp │ │ ├── rotate_vectors.h │ │ ├── rotation_matrix_from_directions.cpp │ │ ├── rotation_matrix_from_directions.h │ │ ├── round.cpp │ │ ├── round.h │ │ ├── rows_to_matrix.cpp │ │ ├── rows_to_matrix.h │ │ ├── sample_edges.cpp │ │ ├── sample_edges.h │ │ ├── seam_edges.cpp │ │ ├── seam_edges.h │ │ ├── segment_segment_intersect.cpp │ │ ├── segment_segment_intersect.h │ │ ├── serialize.h │ │ ├── setdiff.cpp │ │ ├── setdiff.h │ │ ├── setunion.cpp │ │ ├── setunion.h │ │ ├── setxor.cpp │ │ ├── setxor.h │ │ ├── shine_textures.h │ │ ├── shortest_edge_and_midpoint.cpp │ │ ├── shortest_edge_and_midpoint.h │ │ ├── signed_distance.cpp │ │ ├── signed_distance.h │ │ ├── simplify_polyhedron.cpp │ │ ├── simplify_polyhedron.h │ │ ├── slice.cpp │ │ ├── slice.h │ │ ├── slice_into.cpp │ │ ├── slice_into.h │ │ ├── slice_mask.cpp │ │ ├── slice_mask.h │ │ ├── slice_tets.cpp │ │ ├── slice_tets.h │ │ ├── slim.cpp │ │ ├── slim.h │ │ ├── snap_points.cpp │ │ ├── snap_points.h │ │ ├── snap_to_canonical_view_quat.cpp │ │ ├── snap_to_canonical_view_quat.h │ │ ├── snap_to_fixed_up.cpp │ │ ├── snap_to_fixed_up.h │ │ ├── sort.cpp │ │ ├── sort.h │ │ ├── sort_angles.cpp │ │ ├── sort_angles.h │ │ ├── sort_triangles.cpp │ │ ├── sort_triangles.h │ │ ├── sort_vectors_ccw.cpp │ │ ├── sort_vectors_ccw.h │ │ ├── sortrows.cpp │ │ ├── sortrows.h │ │ ├── sparse.cpp │ │ ├── sparse.h │ │ ├── speye.cpp │ │ ├── speye.h │ │ ├── squared_edge_lengths.cpp │ │ ├── squared_edge_lengths.h │ │ ├── stdin_to_temp.cpp │ │ ├── stdin_to_temp.h │ │ ├── straighten_seams.cpp │ │ ├── straighten_seams.h │ │ ├── streamlines.cpp │ │ ├── streamlines.h │ │ ├── sum.cpp │ │ ├── sum.h │ │ ├── svd3x3/ │ │ │ ├── arap.cpp │ │ │ ├── arap.h │ │ │ ├── arap_dof.cpp │ │ │ ├── arap_dof.h │ │ │ ├── fit_rotations.cpp │ │ │ ├── fit_rotations.h │ │ │ ├── polar_svd3x3.cpp │ │ │ ├── polar_svd3x3.h │ │ │ ├── svd3x3.cpp │ │ │ ├── svd3x3.h │ │ │ ├── svd3x3_avx.cpp │ │ │ ├── svd3x3_avx.h │ │ │ ├── svd3x3_sse.cpp │ │ │ └── svd3x3_sse.h │ │ ├── svd3x3.cpp │ │ ├── svd3x3.h │ │ ├── svd3x3_avx.cpp │ │ ├── svd3x3_avx.h │ │ ├── svd3x3_sse.cpp │ │ ├── svd3x3_sse.h │ │ ├── swept_volume_bounding_box.cpp │ │ ├── swept_volume_bounding_box.h │ │ ├── swept_volume_signed_distance.cpp │ │ ├── swept_volume_signed_distance.h │ │ ├── tetgen/ │ │ │ ├── README │ │ │ ├── cdt.cpp │ │ │ ├── cdt.h │ │ │ ├── mesh_to_tetgenio.cpp │ │ │ ├── mesh_to_tetgenio.h │ │ │ ├── mesh_with_skeleton.cpp │ │ │ ├── mesh_with_skeleton.h │ │ │ ├── read_into_tetgenio.cpp │ │ │ ├── read_into_tetgenio.h │ │ │ ├── tetgenio_to_tetmesh.cpp │ │ │ ├── tetgenio_to_tetmesh.h │ │ │ ├── tetrahedralize.cpp │ │ │ └── tetrahedralize.h │ │ ├── texture_from_tga.cpp │ │ ├── texture_from_tga.h │ │ ├── tga.cpp │ │ ├── tga.h │ │ ├── trackball.cpp │ │ ├── trackball.h │ │ ├── transpose_blocks.cpp │ │ ├── transpose_blocks.h │ │ ├── triangle/ │ │ │ ├── cdt.cpp │ │ │ ├── cdt.h │ │ │ ├── triangulate.cpp │ │ │ └── triangulate.h │ │ ├── triangle_fan.cpp │ │ ├── triangle_fan.h │ │ ├── triangle_triangle_adjacency.cpp │ │ ├── triangle_triangle_adjacency.h │ │ ├── triangles_from_strip.cpp │ │ ├── triangles_from_strip.h │ │ ├── two_axis_valuator_fixed_up.cpp │ │ ├── two_axis_valuator_fixed_up.h │ │ ├── uniform_type_to_string.cpp │ │ ├── uniform_type_to_string.h │ │ ├── uniformly_sample_two_manifold.cpp │ │ ├── uniformly_sample_two_manifold.h │ │ ├── unique.cpp │ │ ├── unique.h │ │ ├── unique_edge_map.cpp │ │ ├── unique_edge_map.h │ │ ├── unique_simplices.cpp │ │ ├── unique_simplices.h │ │ ├── unproject.cpp │ │ ├── unproject.h │ │ ├── unproject_in_mesh.cpp │ │ ├── unproject_in_mesh.h │ │ ├── unproject_onto_mesh.cpp │ │ ├── unproject_onto_mesh.h │ │ ├── unproject_ray.cpp │ │ ├── unproject_ray.h │ │ ├── unproject_to_zero_plane.cpp │ │ ├── unproject_to_zero_plane.h │ │ ├── unzip_corners.cpp │ │ ├── unzip_corners.h │ │ ├── up_axis.cpp │ │ ├── up_axis.h │ │ ├── upsample.cpp │ │ ├── upsample.h │ │ ├── vector_area_matrix.cpp │ │ ├── vector_area_matrix.h │ │ ├── verbose.h │ │ ├── vertex_triangle_adjacency.cpp │ │ ├── vertex_triangle_adjacency.h │ │ ├── view_axis.cpp │ │ ├── view_axis.h │ │ ├── viewer/ │ │ │ ├── OpenGL_shader.cpp │ │ │ ├── OpenGL_shader.h │ │ │ ├── OpenGL_state.cpp │ │ │ ├── OpenGL_state.h │ │ │ ├── TODOs.txt │ │ │ ├── TextRenderer.cpp │ │ │ ├── TextRenderer.h │ │ │ ├── TextRenderer_fonts.cpp │ │ │ ├── TextRenderer_fonts.h │ │ │ ├── Viewer.cpp │ │ │ ├── Viewer.h │ │ │ ├── ViewerCore.cpp │ │ │ ├── ViewerCore.h │ │ │ ├── ViewerData.cpp │ │ │ ├── ViewerData.h │ │ │ └── ViewerPlugin.h │ │ ├── volume.cpp │ │ ├── volume.h │ │ ├── voxel_grid.cpp │ │ ├── voxel_grid.h │ │ ├── winding_number.cpp │ │ ├── winding_number.h │ │ ├── writeBF.cpp │ │ ├── writeBF.h │ │ ├── writeDMAT.cpp │ │ ├── writeDMAT.h │ │ ├── writeMESH.cpp │ │ ├── writeMESH.h │ │ ├── writeOBJ.cpp │ │ ├── writeOBJ.h │ │ ├── writeOFF.cpp │ │ ├── writeOFF.h │ │ ├── writePLY.cpp │ │ ├── writePLY.h │ │ ├── writeSTL.cpp │ │ ├── writeSTL.h │ │ ├── writeTGF.cpp │ │ ├── writeTGF.h │ │ ├── writeWRL.cpp │ │ ├── writeWRL.h │ │ ├── write_triangle_mesh.cpp │ │ ├── write_triangle_mesh.h │ │ └── xml/ │ │ ├── README │ │ ├── ReAntTweakBarXMLSerialization.h │ │ ├── XMLSerializable.h │ │ ├── serialization_test.cpp │ │ ├── serialization_test.skip │ │ ├── serialize_xml.cpp │ │ ├── serialize_xml.h │ │ ├── writeDAE.cpp │ │ ├── writeDAE.h │ │ ├── write_triangle_mesh.cpp │ │ └── write_triangle_mesh.h │ ├── libs.pri │ └── quadretopology/ │ ├── patterns/ │ │ ├── patterns/ │ │ │ ├── OpenMesh/ │ │ │ │ └── Core/ │ │ │ │ ├── Geometry/ │ │ │ │ │ ├── Config.hh │ │ │ │ │ ├── LoopSchemeMaskT.hh │ │ │ │ │ ├── MathDefs.hh │ │ │ │ │ ├── NormalConeT.cc │ │ │ │ │ ├── NormalConeT.hh │ │ │ │ │ ├── Plane3d.hh │ │ │ │ │ ├── QuadricT.hh │ │ │ │ │ ├── VectorT.hh │ │ │ │ │ └── VectorT_inc.hh │ │ │ │ ├── IO/ │ │ │ │ │ ├── BinaryHelper.cc │ │ │ │ │ ├── BinaryHelper.hh │ │ │ │ │ ├── IOInstances.hh │ │ │ │ │ ├── IOManager.cc │ │ │ │ │ ├── IOManager.hh │ │ │ │ │ ├── MeshIO.hh │ │ │ │ │ ├── OFFFormat.hh │ │ │ │ │ ├── OMFormat.cc │ │ │ │ │ ├── OMFormat.hh │ │ │ │ │ ├── OMFormatT.cc │ │ │ │ │ ├── Options.hh │ │ │ │ │ ├── SR_binary.hh │ │ │ │ │ ├── SR_binary_spec.hh │ │ │ │ │ ├── SR_binary_vector_of_bool.inl │ │ │ │ │ ├── SR_binary_vector_of_fundamentals.inl │ │ │ │ │ ├── SR_binary_vector_of_string.inl │ │ │ │ │ ├── SR_rbo.hh │ │ │ │ │ ├── SR_store.hh │ │ │ │ │ ├── SR_types.hh │ │ │ │ │ ├── StoreRestore.hh │ │ │ │ │ ├── exporter/ │ │ │ │ │ │ ├── BaseExporter.hh │ │ │ │ │ │ └── ExporterT.hh │ │ │ │ │ ├── importer/ │ │ │ │ │ │ ├── BaseImporter.hh │ │ │ │ │ │ └── ImporterT.hh │ │ │ │ │ ├── reader/ │ │ │ │ │ │ ├── BaseReader.cc │ │ │ │ │ │ ├── BaseReader.hh │ │ │ │ │ │ ├── OBJReader.cc │ │ │ │ │ │ ├── OBJReader.hh │ │ │ │ │ │ ├── OFFReader.cc │ │ │ │ │ │ ├── OFFReader.hh │ │ │ │ │ │ ├── OMReader.cc │ │ │ │ │ │ ├── OMReader.hh │ │ │ │ │ │ ├── PLYReader.cc │ │ │ │ │ │ ├── PLYReader.hh │ │ │ │ │ │ ├── STLReader.cc │ │ │ │ │ │ └── STLReader.hh │ │ │ │ │ └── writer/ │ │ │ │ │ ├── BaseWriter.cc │ │ │ │ │ ├── BaseWriter.hh │ │ │ │ │ ├── OBJWriter.cc │ │ │ │ │ ├── OBJWriter.hh │ │ │ │ │ ├── OFFWriter.cc │ │ │ │ │ ├── OFFWriter.hh │ │ │ │ │ ├── OMWriter.cc │ │ │ │ │ ├── OMWriter.hh │ │ │ │ │ ├── PLYWriter.cc │ │ │ │ │ ├── PLYWriter.hh │ │ │ │ │ ├── STLWriter.cc │ │ │ │ │ ├── STLWriter.hh │ │ │ │ │ ├── VTKWriter.cc │ │ │ │ │ └── VTKWriter.hh │ │ │ │ ├── Mesh/ │ │ │ │ │ ├── ArrayItems.hh │ │ │ │ │ ├── ArrayKernel.cc │ │ │ │ │ ├── ArrayKernel.hh │ │ │ │ │ ├── ArrayKernelT.cc │ │ │ │ │ ├── AttribKernelT.hh │ │ │ │ │ ├── Attributes.hh │ │ │ │ │ ├── BaseKernel.cc │ │ │ │ │ ├── BaseKernel.hh │ │ │ │ │ ├── BaseMesh.hh │ │ │ │ │ ├── Casts.hh │ │ │ │ │ ├── CirculatorsT.hh │ │ │ │ │ ├── FinalMeshItemsT.hh │ │ │ │ │ ├── Handles.hh │ │ │ │ │ ├── IteratorsT.hh │ │ │ │ │ ├── PolyConnectivity.cc │ │ │ │ │ ├── PolyConnectivity.hh │ │ │ │ │ ├── PolyMeshT.cc │ │ │ │ │ ├── PolyMeshT.hh │ │ │ │ │ ├── PolyMesh_ArrayKernelT.hh │ │ │ │ │ ├── Status.hh │ │ │ │ │ ├── Traits.hh │ │ │ │ │ ├── TriConnectivity.cc │ │ │ │ │ ├── TriConnectivity.hh │ │ │ │ │ ├── TriMeshT.cc │ │ │ │ │ ├── TriMeshT.hh │ │ │ │ │ └── TriMesh_ArrayKernelT.hh │ │ │ │ ├── System/ │ │ │ │ │ ├── OpenMeshDLLMacros.hh │ │ │ │ │ ├── compiler.hh │ │ │ │ │ ├── config.h │ │ │ │ │ ├── config.hh │ │ │ │ │ ├── mostream.hh │ │ │ │ │ ├── omstream.cc │ │ │ │ │ └── omstream.hh │ │ │ │ └── Utils/ │ │ │ │ ├── AutoPropertyHandleT.hh │ │ │ │ ├── BaseProperty.cc │ │ │ │ ├── BaseProperty.hh │ │ │ │ ├── Endian.cc │ │ │ │ ├── Endian.hh │ │ │ │ ├── GenProg.hh │ │ │ │ ├── Noncopyable.hh │ │ │ │ ├── Property.hh │ │ │ │ ├── PropertyContainer.hh │ │ │ │ ├── PropertyManager.hh │ │ │ │ ├── RandomNumberGenerator.cc │ │ │ │ ├── RandomNumberGenerator.hh │ │ │ │ ├── SingletonT.cc │ │ │ │ ├── SingletonT.hh │ │ │ │ ├── color_cast.hh │ │ │ │ ├── vector_cast.hh │ │ │ │ └── vector_traits.hh │ │ │ ├── Patch.cpp │ │ │ ├── Patch.h │ │ │ ├── determine_geometry.cpp │ │ │ ├── determine_geometry.h │ │ │ ├── generate_patch.cpp │ │ │ ├── generate_patch.h │ │ │ ├── kt84/ │ │ │ │ ├── AutoDeleter.h │ │ │ │ ├── BaryCoordT.h │ │ │ │ ├── Clock.h │ │ │ │ ├── Matrix11ToScalar.h │ │ │ │ ├── MaxSelector.h │ │ │ │ ├── Memento.h │ │ │ │ ├── MinSelector.h │ │ │ │ ├── PriorityElement.h │ │ │ │ ├── RangeAdaptor.h │ │ │ │ ├── ReversedRange.h │ │ │ │ ├── ScopeExit.hh │ │ │ │ ├── Timer.hh │ │ │ │ ├── adjacent_pairs.h │ │ │ │ ├── container_cast.h │ │ │ │ ├── container_util.h │ │ │ │ ├── discrete_distribution.h │ │ │ │ ├── eigen_def.h │ │ │ │ ├── eigen_util.h │ │ │ │ ├── geometry/ │ │ │ │ │ ├── Camera.h │ │ │ │ │ ├── CameraFree.h │ │ │ │ │ ├── CameraUpright.h │ │ │ │ │ ├── PointNormal.h │ │ │ │ │ └── PolylineT.h │ │ │ │ ├── glut_util.h │ │ │ │ ├── graphics/ │ │ │ │ │ ├── DisplayList.h │ │ │ │ │ ├── FramebufferObject.h │ │ │ │ │ ├── ParamName2.1.inl │ │ │ │ │ ├── ParamName2.1.txt │ │ │ │ │ ├── ParamName3.3.inl │ │ │ │ │ ├── ParamName3.3.txt │ │ │ │ │ ├── ParamName4.inl │ │ │ │ │ ├── ParamName4.txt │ │ │ │ │ ├── ProgramObject.h │ │ │ │ │ ├── RenderbufferObject.h │ │ │ │ │ ├── ShaderObject.h │ │ │ │ │ ├── TextureObjectT.h │ │ │ │ │ ├── gen_ParamName.py │ │ │ │ │ ├── graphics_util.h │ │ │ │ │ └── phong_tessellation.h │ │ │ │ ├── loop_util.h │ │ │ │ ├── math/ │ │ │ │ │ ├── BinomialCoefficient.h │ │ │ │ │ ├── FiniteDifferentiator.h │ │ │ │ │ ├── GeneralizedMLS.h │ │ │ │ │ ├── HermiteRBF.h │ │ │ │ │ ├── MLS.h │ │ │ │ │ ├── PolynomialBasisGen.h │ │ │ │ │ ├── RBF.h │ │ │ │ │ ├── RBFKernel.h │ │ │ │ │ └── interpolant_test.cpp │ │ │ │ ├── multi_array.h │ │ │ │ ├── myassert.h │ │ │ │ ├── openmesh/ │ │ │ │ │ ├── DerivedPtrHolder.h │ │ │ │ │ ├── FaceBaryCoordT.h │ │ │ │ │ ├── append_quad_strip.h │ │ │ │ │ ├── base/ │ │ │ │ │ │ ├── BoundingBox.h │ │ │ │ │ │ ├── CenterOfMass.h │ │ │ │ │ │ ├── CotanWeight.h │ │ │ │ │ │ ├── DebugInfo.h │ │ │ │ │ │ ├── EdgeLength.h │ │ │ │ │ │ ├── ExpMap.h │ │ │ │ │ │ ├── FaceArea.h │ │ │ │ │ │ ├── Geodesic.h │ │ │ │ │ │ ├── GeodesicLoop_incomplete.h │ │ │ │ │ │ ├── Gradient.h │ │ │ │ │ │ ├── KdTree.h │ │ │ │ │ │ ├── LaplaceDirect.h │ │ │ │ │ │ ├── LaplaceIterative.h │ │ │ │ │ │ ├── NormalCurvature.h │ │ │ │ │ │ ├── NormalVariation.h │ │ │ │ │ │ ├── SurfaceTopology.h │ │ │ │ │ │ ├── Utility.h │ │ │ │ │ │ └── geodesic/ │ │ │ │ │ │ ├── geodesic_algorithm_base.h │ │ │ │ │ │ ├── geodesic_algorithm_dijkstra.h │ │ │ │ │ │ ├── geodesic_algorithm_dijkstra_alternative.h │ │ │ │ │ │ ├── geodesic_algorithm_exact.h │ │ │ │ │ │ ├── geodesic_algorithm_exact_elements.h │ │ │ │ │ │ ├── geodesic_algorithm_graph_base.h │ │ │ │ │ │ ├── geodesic_algorithm_subdivision.h │ │ │ │ │ │ ├── geodesic_constants_and_simple_functions.h │ │ │ │ │ │ ├── geodesic_matlab_api.h │ │ │ │ │ │ ├── geodesic_memory.h │ │ │ │ │ │ ├── geodesic_mesh.h │ │ │ │ │ │ └── geodesic_mesh_elements.h │ │ │ │ │ ├── combine_meshes.h │ │ │ │ │ ├── debug_writeSVG.h │ │ │ │ │ ├── delete_isolated_vertices.h │ │ │ │ │ ├── edgeloop.h │ │ │ │ │ ├── flip_faces.h │ │ │ │ │ ├── get_connected_components.h │ │ │ │ │ ├── merge_nearby_vertices.h │ │ │ │ │ ├── read_obj_soup.h │ │ │ │ │ ├── simple_svg_1.0.0.hpp │ │ │ │ │ ├── symmetrize.hh │ │ │ │ │ └── vector_convert.h │ │ │ │ ├── push_back_util.h │ │ │ │ ├── safe_istream.h │ │ │ │ ├── triangle_util.h │ │ │ │ ├── tw_util.h │ │ │ │ ├── ubuntu_workaround.h │ │ │ │ ├── util.h │ │ │ │ └── zenity_util.h │ │ │ ├── lp_solve_5.5/ │ │ │ │ ├── README.txt │ │ │ │ ├── bfp/ │ │ │ │ │ ├── bfp_LUSOL/ │ │ │ │ │ │ ├── LUSOL/ │ │ │ │ │ │ │ ├── LUSOL-overview.txt │ │ │ │ │ │ │ ├── LUSOL_LGPL.txt │ │ │ │ │ │ │ ├── LUSOL_Overview.txt │ │ │ │ │ │ │ ├── LUSOL_README.txt │ │ │ │ │ │ │ ├── Row-based L0.txt │ │ │ │ │ │ │ ├── Victoria1850.RUA │ │ │ │ │ │ │ ├── bfile3.txt │ │ │ │ │ │ │ ├── hbio.c │ │ │ │ │ │ │ ├── hbio.h │ │ │ │ │ │ │ ├── lusol.c │ │ │ │ │ │ │ ├── lusol.h │ │ │ │ │ │ │ ├── lusol1.c │ │ │ │ │ │ │ ├── lusol2.c │ │ │ │ │ │ │ ├── lusol6a.c │ │ │ │ │ │ │ ├── lusol6l0.c │ │ │ │ │ │ │ ├── lusol6u.c │ │ │ │ │ │ │ ├── lusol7a.c │ │ │ │ │ │ │ ├── lusol8a.c │ │ │ │ │ │ │ ├── lusolio.c │ │ │ │ │ │ │ ├── lusolio.h │ │ │ │ │ │ │ ├── lusolmain.c │ │ │ │ │ │ │ ├── lusolmain.h │ │ │ │ │ │ │ ├── mmio.c │ │ │ │ │ │ │ ├── mmio.h │ │ │ │ │ │ │ ├── myblas.c │ │ │ │ │ │ │ ├── myblas.h │ │ │ │ │ │ │ ├── sherman5.mtx │ │ │ │ │ │ │ ├── sherman5_rhs1.mtx │ │ │ │ │ │ │ ├── sparselib.c │ │ │ │ │ │ │ └── sparselib.h │ │ │ │ │ │ ├── bfp_LUSOL.c │ │ │ │ │ │ ├── bfp_LUSOL.h │ │ │ │ │ │ ├── lp_LUSOL.c │ │ │ │ │ │ └── lp_LUSOL.h │ │ │ │ │ ├── lp_BFP.h │ │ │ │ │ ├── lp_BFP1.c │ │ │ │ │ └── lp_BFP2.c │ │ │ │ ├── c │ │ │ │ ├── colamd/ │ │ │ │ │ ├── colamd.c │ │ │ │ │ └── colamd.h │ │ │ │ ├── config.log │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── declare.h │ │ │ │ ├── fortify.c │ │ │ │ ├── fortify.h │ │ │ │ ├── ini.c │ │ │ │ ├── ini.h │ │ │ │ ├── lp_Hash.c │ │ │ │ ├── lp_Hash.h │ │ │ │ ├── lp_MDO.c │ │ │ │ ├── lp_MDO.h │ │ │ │ ├── lp_MPS.c │ │ │ │ ├── lp_MPS.h │ │ │ │ ├── lp_SOS.c │ │ │ │ ├── lp_SOS.h │ │ │ │ ├── lp_bit.h │ │ │ │ ├── lp_crash.c │ │ │ │ ├── lp_crash.h │ │ │ │ ├── lp_explicit.h │ │ │ │ ├── lp_fortify.h │ │ │ │ ├── lp_lib.c │ │ │ │ ├── lp_lib.h │ │ │ │ ├── lp_matrix.c │ │ │ │ ├── lp_matrix.h │ │ │ │ ├── lp_mipbb.c │ │ │ │ ├── lp_mipbb.h │ │ │ │ ├── lp_params.c │ │ │ │ ├── lp_presolve.c │ │ │ │ ├── lp_presolve.h │ │ │ │ ├── lp_price.c │ │ │ │ ├── lp_price.h │ │ │ │ ├── lp_pricePSE.c │ │ │ │ ├── lp_pricePSE.h │ │ │ │ ├── lp_report.c │ │ │ │ ├── lp_report.h │ │ │ │ ├── lp_rlp.c │ │ │ │ ├── lp_rlp.h │ │ │ │ ├── lp_rlp.l │ │ │ │ ├── lp_rlp.y │ │ │ │ ├── lp_scale.c │ │ │ │ ├── lp_scale.h │ │ │ │ ├── lp_simplex.c │ │ │ │ ├── lp_simplex.h │ │ │ │ ├── lp_solve.def │ │ │ │ ├── lp_types.h │ │ │ │ ├── lp_utils.c │ │ │ │ ├── lp_utils.h │ │ │ │ ├── lp_wlp.c │ │ │ │ ├── lp_wlp.h │ │ │ │ ├── lpkit.h │ │ │ │ ├── lpsolve.h │ │ │ │ ├── shared/ │ │ │ │ │ ├── commonlib.c │ │ │ │ │ ├── commonlib.h │ │ │ │ │ ├── mmio.c │ │ │ │ │ ├── mmio.h │ │ │ │ │ ├── myblas.c │ │ │ │ │ └── myblas.h │ │ │ │ ├── ufortify.h │ │ │ │ ├── yacc_read.c │ │ │ │ └── yacc_read.h │ │ │ └── patchgen/ │ │ │ ├── ILP.h │ │ │ ├── PatchParam.h │ │ │ ├── PatchVertexTag.h │ │ │ ├── PatchVertexTraits.h │ │ │ ├── Pattern.h │ │ │ ├── Pattern_2_0.h │ │ │ ├── Pattern_2_1.h │ │ │ ├── Pattern_3_0.h │ │ │ ├── Pattern_3_1.h │ │ │ ├── Pattern_3_2.h │ │ │ ├── Pattern_3_3.h │ │ │ ├── Pattern_4_0.h │ │ │ ├── Pattern_4_1.h │ │ │ ├── Pattern_4_2.h │ │ │ ├── Pattern_4_3.h │ │ │ ├── Pattern_4_4.h │ │ │ ├── Pattern_5_0.h │ │ │ ├── Pattern_5_1.h │ │ │ ├── Pattern_5_2.h │ │ │ ├── Pattern_5_3.h │ │ │ ├── Pattern_5_4.h │ │ │ ├── Pattern_6_0.h │ │ │ ├── Pattern_6_1.h │ │ │ ├── Pattern_6_2.h │ │ │ ├── Pattern_6_3.h │ │ │ ├── Pattern_all.h │ │ │ ├── Permutation.h │ │ │ ├── add_padding.h │ │ │ ├── adjust_parameter.cpp │ │ │ ├── decl.h │ │ │ ├── generate_subtopology.h │ │ │ ├── generate_topology.h │ │ │ ├── get_boundary_geometry.cpp │ │ │ ├── get_constraint_matrix.cpp │ │ │ ├── get_constraint_rhs.cpp │ │ │ ├── get_default_parameter.cpp │ │ │ ├── get_param_str.cpp │ │ │ ├── get_variable.cpp │ │ │ ├── get_variable_indicators.cpp │ │ │ └── switch_pattern.cpp │ │ └── patterns.pri │ ├── quadretopology/ │ │ ├── includes/ │ │ │ ├── qr_charts.cpp │ │ │ ├── qr_charts.h │ │ │ ├── qr_convert.cpp │ │ │ ├── qr_convert.h │ │ │ ├── qr_ilp.cpp │ │ │ ├── qr_ilp.h │ │ │ ├── qr_mapping.cpp │ │ │ ├── qr_mapping.h │ │ │ ├── qr_parameters.h │ │ │ ├── qr_patterns.cpp │ │ │ ├── qr_patterns.h │ │ │ ├── qr_utils.cpp │ │ │ └── qr_utils.h │ │ ├── quadretopology.cpp │ │ └── quadretopology.h │ └── quadretopology.pri ├── quadwild/ │ ├── basic_setup.txt │ ├── basic_setup_mechanical.txt │ ├── basic_setup_organic.txt │ ├── functions.cpp │ ├── functions.h │ ├── quadwild.cpp │ ├── quadwild.pro │ ├── quadwild_mechanical.command │ └── quadwild_organic.command └── scripts/ ├── organize_folders_300_mechanical.command └── organize_folders_300_organic.command