├── .gitignore ├── LICENSE ├── README.md ├── UE4.24 └── IGLMeshProcessingProject │ ├── Config │ ├── DefaultEditor.ini │ ├── DefaultEngine.ini │ └── DefaultGame.ini │ ├── IGLMeshProcessing.uproject │ ├── Plugins │ └── MeshProcessingPlugin │ │ ├── MeshProcessingPlugin.uplugin │ │ ├── Resources │ │ └── Icon128.png │ │ ├── Source │ │ └── MeshProcessingPlugin │ │ │ ├── MeshProcessingPlugin.Build.cs │ │ │ ├── Private │ │ │ ├── MeshProcessingPlugin.cpp │ │ │ ├── MeshProcessingPluginCommands.cpp │ │ │ ├── MeshProcessingPluginEdMode.cpp │ │ │ ├── MeshProcessingPluginEdModeToolkit.cpp │ │ │ ├── MeshProcessingPluginStyle.cpp │ │ │ └── Tools │ │ │ │ ├── IGLIncludes.h │ │ │ │ ├── IGLSmoothingTool.cpp │ │ │ │ ├── IGLUtil.h │ │ │ │ ├── MeshExportTool.cpp │ │ │ │ └── MeshProcessingTool.cpp │ │ │ └── Public │ │ │ ├── MeshProcessingPlugin.h │ │ │ ├── MeshProcessingPluginCommands.h │ │ │ ├── MeshProcessingPluginEdMode.h │ │ │ ├── MeshProcessingPluginEdModeToolkit.h │ │ │ ├── MeshProcessingPluginStyle.h │ │ │ └── Tools │ │ │ ├── IGLSmoothingTool.h │ │ │ ├── MeshExportTool.h │ │ │ ├── MeshProcessingTool.h │ │ │ └── OBJWriter.h │ │ └── ThirdParty │ │ ├── eigen │ │ ├── .gitignore │ │ ├── .hgeol │ │ ├── CMakeLists.txt │ │ ├── COPYING.BSD │ │ ├── COPYING.GPL │ │ ├── COPYING.LGPL │ │ ├── COPYING.MINPACK │ │ ├── COPYING.MPL2 │ │ ├── COPYING.README │ │ ├── CTestConfig.cmake │ │ ├── CTestCustom.cmake.in │ │ ├── Eigen │ │ │ ├── Cholesky │ │ │ ├── CholmodSupport │ │ │ ├── Core │ │ │ ├── Dense │ │ │ ├── Eigen │ │ │ ├── Eigenvalues │ │ │ ├── Geometry │ │ │ ├── Householder │ │ │ ├── IterativeLinearSolvers │ │ │ ├── Jacobi │ │ │ ├── KLUSupport │ │ │ ├── LU │ │ │ ├── MetisSupport │ │ │ ├── OrderingMethods │ │ │ ├── PaStiXSupport │ │ │ ├── PardisoSupport │ │ │ ├── QR │ │ │ ├── QtAlignedMalloc │ │ │ ├── SPQRSupport │ │ │ ├── SVD │ │ │ ├── Sparse │ │ │ ├── SparseCholesky │ │ │ ├── SparseCore │ │ │ ├── SparseLU │ │ │ ├── SparseQR │ │ │ ├── StdDeque │ │ │ ├── StdList │ │ │ ├── StdVector │ │ │ ├── SuperLUSupport │ │ │ ├── UmfPackSupport │ │ │ └── src │ │ │ │ ├── Cholesky │ │ │ │ ├── LDLT.h │ │ │ │ ├── LLT.h │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ ├── CholmodSupport │ │ │ │ └── CholmodSupport.h │ │ │ │ ├── Core │ │ │ │ ├── ArithmeticSequence.h │ │ │ │ ├── Array.h │ │ │ │ ├── ArrayBase.h │ │ │ │ ├── ArrayWrapper.h │ │ │ │ ├── Assign.h │ │ │ │ ├── AssignEvaluator.h │ │ │ │ ├── Assign_MKL.h │ │ │ │ ├── BandMatrix.h │ │ │ │ ├── Block.h │ │ │ │ ├── BooleanRedux.h │ │ │ │ ├── CommaInitializer.h │ │ │ │ ├── ConditionEstimator.h │ │ │ │ ├── CoreEvaluators.h │ │ │ │ ├── CoreIterators.h │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ ├── DenseBase.h │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ ├── DenseStorage.h │ │ │ │ ├── Diagonal.h │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ ├── DiagonalProduct.h │ │ │ │ ├── Dot.h │ │ │ │ ├── EigenBase.h │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ ├── Fuzzy.h │ │ │ │ ├── GeneralProduct.h │ │ │ │ ├── GenericPacketMath.h │ │ │ │ ├── GlobalFunctions.h │ │ │ │ ├── IO.h │ │ │ │ ├── IndexedView.h │ │ │ │ ├── Inverse.h │ │ │ │ ├── Map.h │ │ │ │ ├── MapBase.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ ├── Matrix.h │ │ │ │ ├── MatrixBase.h │ │ │ │ ├── NestByValue.h │ │ │ │ ├── NoAlias.h │ │ │ │ ├── NumTraits.h │ │ │ │ ├── PartialReduxEvaluator.h │ │ │ │ ├── PermutationMatrix.h │ │ │ │ ├── PlainObjectBase.h │ │ │ │ ├── Product.h │ │ │ │ ├── ProductEvaluators.h │ │ │ │ ├── Random.h │ │ │ │ ├── Redux.h │ │ │ │ ├── Ref.h │ │ │ │ ├── Replicate.h │ │ │ │ ├── Reshaped.h │ │ │ │ ├── ReturnByValue.h │ │ │ │ ├── Reverse.h │ │ │ │ ├── Select.h │ │ │ │ ├── SelfAdjointView.h │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ ├── Solve.h │ │ │ │ ├── SolveTriangular.h │ │ │ │ ├── SolverBase.h │ │ │ │ ├── StableNorm.h │ │ │ │ ├── StlIterators.h │ │ │ │ ├── Stride.h │ │ │ │ ├── Swap.h │ │ │ │ ├── Transpose.h │ │ │ │ ├── Transpositions.h │ │ │ │ ├── TriangularMatrix.h │ │ │ │ ├── VectorBlock.h │ │ │ │ ├── VectorwiseOp.h │ │ │ │ ├── Visitor.h │ │ │ │ ├── arch │ │ │ │ │ ├── AVX │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── CUDA │ │ │ │ │ │ └── Complex.h │ │ │ │ │ ├── Default │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ ├── Settings.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── GPU │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── HIP │ │ │ │ │ │ └── hcc │ │ │ │ │ │ │ └── math_constants.h │ │ │ │ │ ├── MSA │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── NEON │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── SSE │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── SYCL │ │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ └── ZVector │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── functors │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ ├── products │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ └── util │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ ├── ConfigureVectorization.h │ │ │ │ │ ├── Constants.h │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ │ ├── IntegralConstant.h │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ ├── Macros.h │ │ │ │ │ ├── Memory.h │ │ │ │ │ ├── Meta.h │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ ├── ReshapedHelper.h │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ ├── SymbolicIndex.h │ │ │ │ │ └── XprHelper.h │ │ │ │ ├── Eigenvalues │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ ├── ComplexSchur.h │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ ├── EigenSolver.h │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ ├── RealQZ.h │ │ │ │ ├── RealSchur.h │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ └── Tridiagonalization.h │ │ │ │ ├── Geometry │ │ │ │ ├── AlignedBox.h │ │ │ │ ├── AngleAxis.h │ │ │ │ ├── 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 │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ ├── Householder │ │ │ │ ├── BlockHouseholder.h │ │ │ │ ├── Householder.h │ │ │ │ └── HouseholderSequence.h │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ ├── BiCGSTAB.h │ │ │ │ ├── ConjugateGradient.h │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ ├── IncompleteLUT.h │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ └── SolveWithGuess.h │ │ │ │ ├── Jacobi │ │ │ │ └── Jacobi.h │ │ │ │ ├── KLUSupport │ │ │ │ └── KLUSupport.h │ │ │ │ ├── LU │ │ │ │ ├── Determinant.h │ │ │ │ ├── FullPivLU.h │ │ │ │ ├── InverseImpl.h │ │ │ │ ├── PartialPivLU.h │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ └── arch │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ ├── MetisSupport │ │ │ │ └── MetisSupport.h │ │ │ │ ├── OrderingMethods │ │ │ │ ├── Amd.h │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ └── Ordering.h │ │ │ │ ├── PaStiXSupport │ │ │ │ └── PaStiXSupport.h │ │ │ │ ├── PardisoSupport │ │ │ │ └── PardisoSupport.h │ │ │ │ ├── QR │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ ├── HouseholderQR.h │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ ├── SPQRSupport │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ ├── SVD │ │ │ │ ├── BDCSVD.h │ │ │ │ ├── JacobiSVD.h │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ ├── SVDBase.h │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ ├── SparseCholesky │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ ├── SparseCore │ │ │ │ ├── AmbiVector.h │ │ │ │ ├── CompressedStorage.h │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ ├── SparseAssign.h │ │ │ │ ├── SparseBlock.h │ │ │ │ ├── SparseColEtree.h │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ ├── SparseDot.h │ │ │ │ ├── SparseFuzzy.h │ │ │ │ ├── SparseMap.h │ │ │ │ ├── SparseMatrix.h │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ ├── SparsePermutation.h │ │ │ │ ├── SparseProduct.h │ │ │ │ ├── SparseRedux.h │ │ │ │ ├── SparseRef.h │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ ├── SparseSolverBase.h │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ ├── SparseTranspose.h │ │ │ │ ├── SparseTriangularView.h │ │ │ │ ├── SparseUtil.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── SparseView.h │ │ │ │ └── TriangularSolver.h │ │ │ │ ├── SparseLU │ │ │ │ ├── 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 │ │ │ │ └── SparseQR.h │ │ │ │ ├── StlSupport │ │ │ │ ├── StdDeque.h │ │ │ │ ├── StdList.h │ │ │ │ ├── StdVector.h │ │ │ │ └── details.h │ │ │ │ ├── SuperLUSupport │ │ │ │ └── SuperLUSupport.h │ │ │ │ ├── UmfPackSupport │ │ │ │ └── UmfPackSupport.h │ │ │ │ ├── misc │ │ │ │ ├── Image.h │ │ │ │ ├── Kernel.h │ │ │ │ ├── RealSvd2x2.h │ │ │ │ ├── blas.h │ │ │ │ ├── lapack.h │ │ │ │ ├── lapacke.h │ │ │ │ └── lapacke_mangling.h │ │ │ │ └── plugins │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ ├── BlockMethods.h │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ ├── IndexedViewMethods.h │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ ├── MatrixCwiseUnaryOps.h │ │ │ │ └── ReshapedMethods.h │ │ ├── INSTALL │ │ ├── README.md │ │ ├── eigen3.pc.in │ │ └── signature_of_eigen3_matrix_library │ │ └── libigl │ │ ├── LICENSE.GPL │ │ ├── LICENSE.MPL2 │ │ ├── README.md │ │ └── include │ │ └── igl │ │ ├── AABB.cpp │ │ ├── AABB.h │ │ ├── ARAPEnergyType.h │ │ ├── AtA_cached.cpp │ │ ├── AtA_cached.h │ │ ├── C_STR.h │ │ ├── Camera.h │ │ ├── EPS.cpp │ │ ├── EPS.h │ │ ├── HalfEdgeIterator.cpp │ │ ├── HalfEdgeIterator.h │ │ ├── Hit.h │ │ ├── IO │ │ ├── IndexComparison.h │ │ ├── LinSpaced.h │ │ ├── MappingEnergyType.h │ │ ├── MeshBooleanType.h │ │ ├── NormalType.h │ │ ├── ONE.h │ │ ├── PI.h │ │ ├── REDRUM.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 │ │ ├── accumarray.cpp │ │ ├── accumarray.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 │ │ ├── angular_distance.cpp │ │ ├── angular_distance.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.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 │ │ ├── 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 │ │ ├── circulation.cpp │ │ ├── circulation.h │ │ ├── circumradius.cpp │ │ ├── circumradius.h │ │ ├── collapse_edge.cpp │ │ ├── collapse_edge.h │ │ ├── collapse_small_triangles.cpp │ │ ├── collapse_small_triangles.h │ │ ├── colon.cpp │ │ ├── colon.h │ │ ├── colormap.cpp │ │ ├── colormap.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 │ │ ├── compute_frame_field_bisectors.cpp │ │ ├── compute_frame_field_bisectors.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 │ │ │ ├── convex_hull.cpp │ │ │ ├── convex_hull.h │ │ │ ├── delaunay_triangulation.cpp │ │ │ ├── delaunay_triangulation.h │ │ │ ├── extract_cells.cpp │ │ │ ├── extract_cells.h │ │ │ ├── extract_feature.cpp │ │ │ ├── extract_feature.h │ │ │ ├── fast_winding_number.cpp │ │ │ ├── fast_winding_number.h │ │ │ ├── half_space_box.cpp │ │ │ ├── half_space_box.h │ │ │ ├── hausdorff.cpp │ │ │ ├── hausdorff.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 │ │ │ ├── list_to_matrix.cpp │ │ │ ├── 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_areas.cpp │ │ │ ├── point_areas.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 │ │ │ ├── slice_mask.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 │ │ │ ├── unique_rows.cpp │ │ │ ├── wire_mesh.cpp │ │ │ └── wire_mesh.h │ │ ├── comiso │ │ │ ├── frame_field.cpp │ │ │ ├── frame_field.h │ │ │ ├── miq.cpp │ │ │ ├── miq.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 │ │ ├── offset_surface.cpp │ │ ├── offset_surface.h │ │ ├── opengl2 │ │ │ ├── render_to_tga.cpp │ │ │ ├── render_to_tga.h │ │ │ ├── texture_from_tga.cpp │ │ │ ├── texture_from_tga.h │ │ │ ├── tga.cpp │ │ │ └── tga.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 │ │ ├── cotmatrix_intrinsic.cpp │ │ ├── cotmatrix_intrinsic.h │ │ ├── count.cpp │ │ ├── count.h │ │ ├── covariance_scatter_matrix.cpp │ │ ├── covariance_scatter_matrix.h │ │ ├── cross.cpp │ │ ├── cross.h │ │ ├── cross_field_mismatch.cpp │ │ ├── cross_field_mismatch.h │ │ ├── crouzeix_raviart_cotmatrix.cpp │ │ ├── crouzeix_raviart_cotmatrix.h │ │ ├── crouzeix_raviart_massmatrix.cpp │ │ ├── crouzeix_raviart_massmatrix.h │ │ ├── cumprod.cpp │ │ ├── cumprod.h │ │ ├── cumsum.cpp │ │ ├── cumsum.h │ │ ├── cut_mesh.cpp │ │ ├── cut_mesh.h │ │ ├── cut_mesh_from_singularities.cpp │ │ ├── cut_mesh_from_singularities.h │ │ ├── cut_to_disk.cpp │ │ ├── cut_to_disk.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 │ │ ├── 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 │ │ ├── ears.cpp │ │ ├── ears.h │ │ ├── edge_collapse_is_valid.cpp │ │ ├── edge_collapse_is_valid.h │ │ ├── edge_exists_near.cpp │ │ ├── edge_exists_near.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 │ │ ├── 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 │ │ ├── shape_diameter_function.cpp │ │ ├── shape_diameter_function.h │ │ ├── unproject_in_mesh.cpp │ │ ├── unproject_in_mesh.h │ │ ├── unproject_onto_mesh.cpp │ │ └── unproject_onto_mesh.h │ │ ├── euler_characteristic.cpp │ │ ├── euler_characteristic.h │ │ ├── exact_geodesic.cpp │ │ ├── exact_geodesic.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 │ │ ├── fast_winding_number.cpp │ │ ├── fast_winding_number.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_rotations.cpp │ │ ├── fit_rotations.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 │ │ ├── gaussian_curvature.cpp │ │ ├── gaussian_curvature.h │ │ ├── get_seconds.cpp │ │ ├── get_seconds.h │ │ ├── get_seconds_hires.cpp │ │ ├── get_seconds_hires.h │ │ ├── grad.cpp │ │ ├── grad.h │ │ ├── grad_intrinsic.cpp │ │ ├── grad_intrinsic.h │ │ ├── grid.cpp │ │ ├── grid.h │ │ ├── grid_search.cpp │ │ ├── grid_search.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 │ │ ├── heat_geodesics.cpp │ │ ├── heat_geodesics.h │ │ ├── hessian.cpp │ │ ├── hessian.h │ │ ├── hessian_energy.cpp │ │ ├── hessian_energy.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 │ │ ├── inradius.cpp │ │ ├── inradius.h │ │ ├── internal_angles.cpp │ │ ├── internal_angles.h │ │ ├── intersect.cpp │ │ ├── intersect.h │ │ ├── intrinsic_delaunay_cotmatrix.cpp │ │ ├── intrinsic_delaunay_cotmatrix.h │ │ ├── intrinsic_delaunay_triangulation.cpp │ │ ├── intrinsic_delaunay_triangulation.h │ │ ├── invert_diag.cpp │ │ ├── invert_diag.h │ │ ├── is_border_vertex.cpp │ │ ├── is_border_vertex.h │ │ ├── is_boundary_edge.cpp │ │ ├── is_boundary_edge.h │ │ ├── is_delaunay.cpp │ │ ├── is_delaunay.h │ │ ├── is_dir.cpp │ │ ├── is_dir.h │ │ ├── is_edge_manifold.cpp │ │ ├── is_edge_manifold.h │ │ ├── is_file.cpp │ │ ├── is_file.h │ │ ├── is_intrinsic_delaunay.cpp │ │ ├── is_intrinsic_delaunay.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 │ │ ├── isolines.cpp │ │ ├── isolines.h │ │ ├── jet.cpp │ │ ├── jet.h │ │ ├── knn.cpp │ │ ├── knn.h │ │ ├── launch_medit.cpp │ │ ├── launch_medit.h │ │ ├── lbs_matrix.cpp │ │ ├── lbs_matrix.h │ │ ├── lexicographic_triangulation.cpp │ │ ├── lexicographic_triangulation.h │ │ ├── limit_faces.cpp │ │ ├── limit_faces.h │ │ ├── line_field_mismatch.cpp │ │ ├── line_field_mismatch.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 │ │ ├── local_basis.cpp │ │ ├── local_basis.h │ │ ├── look_at.cpp │ │ ├── look_at.h │ │ ├── loop.cpp │ │ ├── loop.h │ │ ├── lscm.cpp │ │ ├── lscm.h │ │ ├── map_vertices_to_circle.cpp │ │ ├── map_vertices_to_circle.h │ │ ├── mapping_energy_with_jacobians.cpp │ │ ├── mapping_energy_with_jacobians.h │ │ ├── marching_tets.cpp │ │ ├── marching_tets.h │ │ ├── massmatrix.cpp │ │ ├── massmatrix.h │ │ ├── massmatrix_intrinsic.cpp │ │ ├── massmatrix_intrinsic.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 │ │ ├── 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 │ │ ├── octree.cpp │ │ ├── octree.h │ │ ├── on_boundary.cpp │ │ ├── on_boundary.h │ │ ├── opengl │ │ ├── MeshGL.cpp │ │ ├── MeshGL.h │ │ ├── ViewerCore.cpp │ │ ├── ViewerCore.h │ │ ├── ViewerData.cpp │ │ ├── ViewerData.h │ │ ├── bind_vertex_attrib_array.cpp │ │ ├── bind_vertex_attrib_array.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.h │ │ ├── gl_type_size.cpp │ │ ├── gl_type_size.h │ │ ├── glfw │ │ │ ├── Viewer.cpp │ │ │ ├── Viewer.h │ │ │ ├── ViewerPlugin.h │ │ │ ├── background_window.cpp │ │ │ ├── background_window.h │ │ │ ├── imgui │ │ │ │ ├── ImGuiHelpers.h │ │ │ │ ├── ImGuiMenu.cpp │ │ │ │ ├── ImGuiMenu.h │ │ │ │ └── ImGuiTraits.h │ │ │ ├── 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 │ │ ├── vertex_array.cpp │ │ └── vertex_array.h │ │ ├── orient_outward.cpp │ │ ├── orient_outward.h │ │ ├── orientable_patches.cpp │ │ ├── orientable_patches.h │ │ ├── oriented_facets.cpp │ │ ├── oriented_facets.h │ │ ├── orth.cpp │ │ ├── orth.h │ │ ├── ortho.cpp │ │ ├── ortho.h │ │ ├── outer_element.cpp │ │ ├── outer_element.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 │ │ ├── pinv.cpp │ │ ├── pinv.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 │ │ ├── predicates │ │ ├── predicates.cpp │ │ └── predicates.h │ │ ├── principal_curvature.cpp │ │ ├── principal_curvature.h │ │ ├── print_ijv.cpp │ │ ├── print_ijv.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 │ │ ├── pso.cpp │ │ ├── pso.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 │ │ ├── random_search.cpp │ │ ├── random_search.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 │ │ ├── readMSH.cpp │ │ ├── readMSH.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 │ │ ├── remesh_along_isoline.cpp │ │ ├── remesh_along_isoline.h │ │ ├── remove_duplicate_vertices.cpp │ │ ├── remove_duplicate_vertices.h │ │ ├── remove_duplicates.cpp │ │ ├── remove_duplicates.h │ │ ├── remove_unreferenced.cpp │ │ ├── remove_unreferenced.h │ │ ├── reorder.cpp │ │ ├── reorder.h │ │ ├── repdiag.cpp │ │ ├── repdiag.h │ │ ├── repmat.cpp │ │ ├── repmat.h │ │ ├── resolve_duplicated_faces.cpp │ │ ├── resolve_duplicated_faces.h │ │ ├── rgb_to_hsv.cpp │ │ ├── rgb_to_hsv.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 │ │ ├── scaf.cpp │ │ ├── scaf.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 │ │ ├── shape_diameter_function.cpp │ │ ├── shape_diameter_function.h │ │ ├── shapeup.cpp │ │ ├── shapeup.h │ │ ├── shortest_edge_and_midpoint.cpp │ │ ├── shortest_edge_and_midpoint.h │ │ ├── signed_angle.cpp │ │ ├── signed_angle.h │ │ ├── signed_distance.cpp │ │ ├── signed_distance.h │ │ ├── simplify_polyhedron.cpp │ │ ├── simplify_polyhedron.h │ │ ├── slice.cpp │ │ ├── slice.h │ │ ├── slice_cached.cpp │ │ ├── slice_cached.h │ │ ├── slice_into.cpp │ │ ├── slice_into.h │ │ ├── slice_mask.cpp │ │ ├── slice_mask.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 │ │ ├── solid_angle.cpp │ │ ├── solid_angle.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 │ │ ├── sparse_cached.cpp │ │ ├── sparse_cached.h │ │ ├── sparse_voxel_grid.cpp │ │ ├── sparse_voxel_grid.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 │ │ ├── sum.cpp │ │ ├── sum.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 │ │ ├── tan_half_angle.cpp │ │ ├── tan_half_angle.h │ │ ├── tet_tet_adjacency.cpp │ │ ├── tet_tet_adjacency.h │ │ ├── topological_hole_fill.cpp │ │ ├── topological_hole_fill.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 │ │ ├── triangulated_grid.cpp │ │ ├── triangulated_grid.h │ │ ├── two_axis_valuator_fixed_up.cpp │ │ ├── two_axis_valuator_fixed_up.h │ │ ├── uniformly_sample_two_manifold.cpp │ │ ├── uniformly_sample_two_manifold.h │ │ ├── unique.cpp │ │ ├── unique.h │ │ ├── unique_edge_map.cpp │ │ ├── unique_edge_map.h │ │ ├── unique_rows.cpp │ │ ├── unique_rows.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 │ │ ├── unzip_corners.cpp │ │ ├── unzip_corners.h │ │ ├── upsample.cpp │ │ ├── upsample.h │ │ ├── vector_area_matrix.cpp │ │ ├── vector_area_matrix.h │ │ ├── verbose.h │ │ ├── vertex_components.cpp │ │ ├── vertex_components.h │ │ ├── vertex_triangle_adjacency.cpp │ │ ├── vertex_triangle_adjacency.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 │ │ ├── ReAntTweakBarXMLSerialization.h │ │ ├── XMLSerializable.h │ │ ├── serialization_test.skip │ │ ├── serialize_xml.cpp │ │ ├── serialize_xml.h │ │ ├── writeDAE.cpp │ │ ├── writeDAE.h │ │ ├── write_triangle_mesh.cpp │ │ └── write_triangle_mesh.h │ └── Source │ ├── IGLDemo.Target.cs │ ├── IGLDemo │ ├── IGLDemo.Build.cs │ ├── IGLDemo.cpp │ ├── IGLDemo.h │ ├── IGLDemoGameModeBase.cpp │ └── IGLDemoGameModeBase.h │ └── IGLDemoEditor.Target.cs └── UE4.26 ├── CommandLineGeometryTest ├── CommandLineGeometryTest.Build.cs ├── CommandLineGeometryTest.Target.cs └── Private │ ├── CommandLineGeometryTest.cpp │ ├── CommandLineGeometryTest.h │ ├── DynamicMeshOBJReader.h │ ├── DynamicMeshOBJWriter.h │ └── tinyobj │ ├── LICENSE │ ├── README.md │ ├── tiny_obj_loader.cpp │ └── tiny_obj_loader.h ├── IGLMeshProcessingProject ├── Config │ ├── DefaultEditor.ini │ ├── DefaultEngine.ini │ └── DefaultGame.ini ├── IGLMeshProcessing.uproject ├── Plugins │ └── MeshProcessingPlugin │ │ ├── MeshProcessingPlugin.uplugin │ │ ├── Resources │ │ └── Icon128.png │ │ ├── Source │ │ └── MeshProcessingPlugin │ │ │ ├── MeshProcessingPlugin.Build.cs │ │ │ ├── Private │ │ │ ├── MeshProcessingPlugin.cpp │ │ │ ├── MeshProcessingPluginCommands.cpp │ │ │ ├── MeshProcessingPluginEdMode.cpp │ │ │ ├── MeshProcessingPluginEdModeToolkit.cpp │ │ │ ├── MeshProcessingPluginStyle.cpp │ │ │ └── Tools │ │ │ │ ├── IGLIncludes.h │ │ │ │ ├── IGLSmoothingTool.cpp │ │ │ │ ├── IGLUtil.h │ │ │ │ ├── MeshExportTool.cpp │ │ │ │ └── MeshProcessingTool.cpp │ │ │ └── Public │ │ │ ├── MeshProcessingPlugin.h │ │ │ ├── MeshProcessingPluginCommands.h │ │ │ ├── MeshProcessingPluginEdMode.h │ │ │ ├── MeshProcessingPluginEdModeToolkit.h │ │ │ ├── MeshProcessingPluginStyle.h │ │ │ └── Tools │ │ │ ├── IGLSmoothingTool.h │ │ │ ├── MeshExportTool.h │ │ │ ├── MeshProcessingTool.h │ │ │ └── OBJWriter.h │ │ └── ThirdParty │ │ ├── eigen │ │ ├── .gitignore │ │ ├── .hgeol │ │ ├── CMakeLists.txt │ │ ├── COPYING.BSD │ │ ├── COPYING.GPL │ │ ├── COPYING.LGPL │ │ ├── COPYING.MINPACK │ │ ├── COPYING.MPL2 │ │ ├── COPYING.README │ │ ├── CTestConfig.cmake │ │ ├── CTestCustom.cmake.in │ │ ├── Eigen │ │ │ ├── Cholesky │ │ │ ├── CholmodSupport │ │ │ ├── Core │ │ │ ├── Dense │ │ │ ├── Eigen │ │ │ ├── Eigenvalues │ │ │ ├── Geometry │ │ │ ├── Householder │ │ │ ├── IterativeLinearSolvers │ │ │ ├── Jacobi │ │ │ ├── KLUSupport │ │ │ ├── LU │ │ │ ├── MetisSupport │ │ │ ├── OrderingMethods │ │ │ ├── PaStiXSupport │ │ │ ├── PardisoSupport │ │ │ ├── QR │ │ │ ├── QtAlignedMalloc │ │ │ ├── SPQRSupport │ │ │ ├── SVD │ │ │ ├── Sparse │ │ │ ├── SparseCholesky │ │ │ ├── SparseCore │ │ │ ├── SparseLU │ │ │ ├── SparseQR │ │ │ ├── StdDeque │ │ │ ├── StdList │ │ │ ├── StdVector │ │ │ ├── SuperLUSupport │ │ │ ├── UmfPackSupport │ │ │ └── src │ │ │ │ ├── Cholesky │ │ │ │ ├── LDLT.h │ │ │ │ ├── LLT.h │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ ├── CholmodSupport │ │ │ │ └── CholmodSupport.h │ │ │ │ ├── Core │ │ │ │ ├── ArithmeticSequence.h │ │ │ │ ├── Array.h │ │ │ │ ├── ArrayBase.h │ │ │ │ ├── ArrayWrapper.h │ │ │ │ ├── Assign.h │ │ │ │ ├── AssignEvaluator.h │ │ │ │ ├── Assign_MKL.h │ │ │ │ ├── BandMatrix.h │ │ │ │ ├── Block.h │ │ │ │ ├── BooleanRedux.h │ │ │ │ ├── CommaInitializer.h │ │ │ │ ├── ConditionEstimator.h │ │ │ │ ├── CoreEvaluators.h │ │ │ │ ├── CoreIterators.h │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ ├── DenseBase.h │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ ├── DenseStorage.h │ │ │ │ ├── Diagonal.h │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ ├── DiagonalProduct.h │ │ │ │ ├── Dot.h │ │ │ │ ├── EigenBase.h │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ ├── Fuzzy.h │ │ │ │ ├── GeneralProduct.h │ │ │ │ ├── GenericPacketMath.h │ │ │ │ ├── GlobalFunctions.h │ │ │ │ ├── IO.h │ │ │ │ ├── IndexedView.h │ │ │ │ ├── Inverse.h │ │ │ │ ├── Map.h │ │ │ │ ├── MapBase.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ ├── Matrix.h │ │ │ │ ├── MatrixBase.h │ │ │ │ ├── NestByValue.h │ │ │ │ ├── NoAlias.h │ │ │ │ ├── NumTraits.h │ │ │ │ ├── PartialReduxEvaluator.h │ │ │ │ ├── PermutationMatrix.h │ │ │ │ ├── PlainObjectBase.h │ │ │ │ ├── Product.h │ │ │ │ ├── ProductEvaluators.h │ │ │ │ ├── Random.h │ │ │ │ ├── Redux.h │ │ │ │ ├── Ref.h │ │ │ │ ├── Replicate.h │ │ │ │ ├── Reshaped.h │ │ │ │ ├── ReturnByValue.h │ │ │ │ ├── Reverse.h │ │ │ │ ├── Select.h │ │ │ │ ├── SelfAdjointView.h │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ ├── Solve.h │ │ │ │ ├── SolveTriangular.h │ │ │ │ ├── SolverBase.h │ │ │ │ ├── StableNorm.h │ │ │ │ ├── StlIterators.h │ │ │ │ ├── Stride.h │ │ │ │ ├── Swap.h │ │ │ │ ├── Transpose.h │ │ │ │ ├── Transpositions.h │ │ │ │ ├── TriangularMatrix.h │ │ │ │ ├── VectorBlock.h │ │ │ │ ├── VectorwiseOp.h │ │ │ │ ├── Visitor.h │ │ │ │ ├── arch │ │ │ │ │ ├── AVX │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── CUDA │ │ │ │ │ │ └── Complex.h │ │ │ │ │ ├── Default │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ ├── Settings.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── GPU │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── HIP │ │ │ │ │ │ └── hcc │ │ │ │ │ │ │ └── math_constants.h │ │ │ │ │ ├── MSA │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── NEON │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── SSE │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ ├── SYCL │ │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ └── ZVector │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── functors │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ ├── products │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ └── util │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ ├── ConfigureVectorization.h │ │ │ │ │ ├── Constants.h │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ │ ├── IntegralConstant.h │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ ├── Macros.h │ │ │ │ │ ├── Memory.h │ │ │ │ │ ├── Meta.h │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ ├── ReshapedHelper.h │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ ├── SymbolicIndex.h │ │ │ │ │ └── XprHelper.h │ │ │ │ ├── Eigenvalues │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ ├── ComplexSchur.h │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ ├── EigenSolver.h │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ ├── RealQZ.h │ │ │ │ ├── RealSchur.h │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ └── Tridiagonalization.h │ │ │ │ ├── Geometry │ │ │ │ ├── AlignedBox.h │ │ │ │ ├── AngleAxis.h │ │ │ │ ├── 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 │ │ │ │ │ └── Geometry_SSE.h │ │ │ │ ├── Householder │ │ │ │ ├── BlockHouseholder.h │ │ │ │ ├── Householder.h │ │ │ │ └── HouseholderSequence.h │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ ├── BiCGSTAB.h │ │ │ │ ├── ConjugateGradient.h │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ ├── IncompleteLUT.h │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ └── SolveWithGuess.h │ │ │ │ ├── Jacobi │ │ │ │ └── Jacobi.h │ │ │ │ ├── KLUSupport │ │ │ │ └── KLUSupport.h │ │ │ │ ├── LU │ │ │ │ ├── Determinant.h │ │ │ │ ├── FullPivLU.h │ │ │ │ ├── InverseImpl.h │ │ │ │ ├── PartialPivLU.h │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ └── arch │ │ │ │ │ └── Inverse_SSE.h │ │ │ │ ├── MetisSupport │ │ │ │ └── MetisSupport.h │ │ │ │ ├── OrderingMethods │ │ │ │ ├── Amd.h │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ └── Ordering.h │ │ │ │ ├── PaStiXSupport │ │ │ │ └── PaStiXSupport.h │ │ │ │ ├── PardisoSupport │ │ │ │ └── PardisoSupport.h │ │ │ │ ├── QR │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ ├── HouseholderQR.h │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ ├── SPQRSupport │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ ├── SVD │ │ │ │ ├── BDCSVD.h │ │ │ │ ├── JacobiSVD.h │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ ├── SVDBase.h │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ ├── SparseCholesky │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ ├── SparseCore │ │ │ │ ├── AmbiVector.h │ │ │ │ ├── CompressedStorage.h │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ ├── SparseAssign.h │ │ │ │ ├── SparseBlock.h │ │ │ │ ├── SparseColEtree.h │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ ├── SparseDot.h │ │ │ │ ├── SparseFuzzy.h │ │ │ │ ├── SparseMap.h │ │ │ │ ├── SparseMatrix.h │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ ├── SparsePermutation.h │ │ │ │ ├── SparseProduct.h │ │ │ │ ├── SparseRedux.h │ │ │ │ ├── SparseRef.h │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ ├── SparseSolverBase.h │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ ├── SparseTranspose.h │ │ │ │ ├── SparseTriangularView.h │ │ │ │ ├── SparseUtil.h │ │ │ │ ├── SparseVector.h │ │ │ │ ├── SparseView.h │ │ │ │ └── TriangularSolver.h │ │ │ │ ├── SparseLU │ │ │ │ ├── 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 │ │ │ │ └── SparseQR.h │ │ │ │ ├── StlSupport │ │ │ │ ├── StdDeque.h │ │ │ │ ├── StdList.h │ │ │ │ ├── StdVector.h │ │ │ │ └── details.h │ │ │ │ ├── SuperLUSupport │ │ │ │ └── SuperLUSupport.h │ │ │ │ ├── UmfPackSupport │ │ │ │ └── UmfPackSupport.h │ │ │ │ ├── misc │ │ │ │ ├── Image.h │ │ │ │ ├── Kernel.h │ │ │ │ ├── RealSvd2x2.h │ │ │ │ ├── blas.h │ │ │ │ ├── lapack.h │ │ │ │ ├── lapacke.h │ │ │ │ └── lapacke_mangling.h │ │ │ │ └── plugins │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ ├── BlockMethods.h │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ ├── IndexedViewMethods.h │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ ├── MatrixCwiseUnaryOps.h │ │ │ │ └── ReshapedMethods.h │ │ ├── INSTALL │ │ ├── README.md │ │ ├── eigen3.pc.in │ │ └── signature_of_eigen3_matrix_library │ │ └── libigl │ │ ├── LICENSE.GPL │ │ ├── LICENSE.MPL2 │ │ ├── README.md │ │ └── include │ │ └── igl │ │ ├── AABB.cpp │ │ ├── AABB.h │ │ ├── ARAPEnergyType.h │ │ ├── AtA_cached.cpp │ │ ├── AtA_cached.h │ │ ├── C_STR.h │ │ ├── Camera.h │ │ ├── EPS.cpp │ │ ├── EPS.h │ │ ├── HalfEdgeIterator.cpp │ │ ├── HalfEdgeIterator.h │ │ ├── Hit.h │ │ ├── IO │ │ ├── IndexComparison.h │ │ ├── LinSpaced.h │ │ ├── MappingEnergyType.h │ │ ├── MeshBooleanType.h │ │ ├── NormalType.h │ │ ├── ONE.h │ │ ├── PI.h │ │ ├── REDRUM.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 │ │ ├── accumarray.cpp │ │ ├── accumarray.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 │ │ ├── angular_distance.cpp │ │ ├── angular_distance.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.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 │ │ ├── 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 │ │ ├── circulation.cpp │ │ ├── circulation.h │ │ ├── circumradius.cpp │ │ ├── circumradius.h │ │ ├── collapse_edge.cpp │ │ ├── collapse_edge.h │ │ ├── collapse_small_triangles.cpp │ │ ├── collapse_small_triangles.h │ │ ├── colon.cpp │ │ ├── colon.h │ │ ├── colormap.cpp │ │ ├── colormap.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 │ │ ├── compute_frame_field_bisectors.cpp │ │ ├── compute_frame_field_bisectors.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 │ │ │ ├── convex_hull.cpp │ │ │ ├── convex_hull.h │ │ │ ├── delaunay_triangulation.cpp │ │ │ ├── delaunay_triangulation.h │ │ │ ├── extract_cells.cpp │ │ │ ├── extract_cells.h │ │ │ ├── extract_feature.cpp │ │ │ ├── extract_feature.h │ │ │ ├── fast_winding_number.cpp │ │ │ ├── fast_winding_number.h │ │ │ ├── half_space_box.cpp │ │ │ ├── half_space_box.h │ │ │ ├── hausdorff.cpp │ │ │ ├── hausdorff.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 │ │ │ ├── list_to_matrix.cpp │ │ │ ├── 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_areas.cpp │ │ │ ├── point_areas.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 │ │ │ ├── slice_mask.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 │ │ │ ├── unique_rows.cpp │ │ │ ├── wire_mesh.cpp │ │ │ └── wire_mesh.h │ │ ├── comiso │ │ │ ├── frame_field.cpp │ │ │ ├── frame_field.h │ │ │ ├── miq.cpp │ │ │ ├── miq.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 │ │ ├── offset_surface.cpp │ │ ├── offset_surface.h │ │ ├── opengl2 │ │ │ ├── render_to_tga.cpp │ │ │ ├── render_to_tga.h │ │ │ ├── texture_from_tga.cpp │ │ │ ├── texture_from_tga.h │ │ │ ├── tga.cpp │ │ │ └── tga.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 │ │ ├── cotmatrix_intrinsic.cpp │ │ ├── cotmatrix_intrinsic.h │ │ ├── count.cpp │ │ ├── count.h │ │ ├── covariance_scatter_matrix.cpp │ │ ├── covariance_scatter_matrix.h │ │ ├── cross.cpp │ │ ├── cross.h │ │ ├── cross_field_mismatch.cpp │ │ ├── cross_field_mismatch.h │ │ ├── crouzeix_raviart_cotmatrix.cpp │ │ ├── crouzeix_raviart_cotmatrix.h │ │ ├── crouzeix_raviart_massmatrix.cpp │ │ ├── crouzeix_raviart_massmatrix.h │ │ ├── cumprod.cpp │ │ ├── cumprod.h │ │ ├── cumsum.cpp │ │ ├── cumsum.h │ │ ├── cut_mesh.cpp │ │ ├── cut_mesh.h │ │ ├── cut_mesh_from_singularities.cpp │ │ ├── cut_mesh_from_singularities.h │ │ ├── cut_to_disk.cpp │ │ ├── cut_to_disk.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 │ │ ├── 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 │ │ ├── ears.cpp │ │ ├── ears.h │ │ ├── edge_collapse_is_valid.cpp │ │ ├── edge_collapse_is_valid.h │ │ ├── edge_exists_near.cpp │ │ ├── edge_exists_near.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 │ │ ├── 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 │ │ ├── shape_diameter_function.cpp │ │ ├── shape_diameter_function.h │ │ ├── unproject_in_mesh.cpp │ │ ├── unproject_in_mesh.h │ │ ├── unproject_onto_mesh.cpp │ │ └── unproject_onto_mesh.h │ │ ├── euler_characteristic.cpp │ │ ├── euler_characteristic.h │ │ ├── exact_geodesic.cpp │ │ ├── exact_geodesic.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 │ │ ├── fast_winding_number.cpp │ │ ├── fast_winding_number.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_rotations.cpp │ │ ├── fit_rotations.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 │ │ ├── gaussian_curvature.cpp │ │ ├── gaussian_curvature.h │ │ ├── get_seconds.cpp │ │ ├── get_seconds.h │ │ ├── get_seconds_hires.cpp │ │ ├── get_seconds_hires.h │ │ ├── grad.cpp │ │ ├── grad.h │ │ ├── grad_intrinsic.cpp │ │ ├── grad_intrinsic.h │ │ ├── grid.cpp │ │ ├── grid.h │ │ ├── grid_search.cpp │ │ ├── grid_search.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 │ │ ├── heat_geodesics.cpp │ │ ├── heat_geodesics.h │ │ ├── hessian.cpp │ │ ├── hessian.h │ │ ├── hessian_energy.cpp │ │ ├── hessian_energy.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 │ │ ├── inradius.cpp │ │ ├── inradius.h │ │ ├── internal_angles.cpp │ │ ├── internal_angles.h │ │ ├── intersect.cpp │ │ ├── intersect.h │ │ ├── intrinsic_delaunay_cotmatrix.cpp │ │ ├── intrinsic_delaunay_cotmatrix.h │ │ ├── intrinsic_delaunay_triangulation.cpp │ │ ├── intrinsic_delaunay_triangulation.h │ │ ├── invert_diag.cpp │ │ ├── invert_diag.h │ │ ├── is_border_vertex.cpp │ │ ├── is_border_vertex.h │ │ ├── is_boundary_edge.cpp │ │ ├── is_boundary_edge.h │ │ ├── is_delaunay.cpp │ │ ├── is_delaunay.h │ │ ├── is_dir.cpp │ │ ├── is_dir.h │ │ ├── is_edge_manifold.cpp │ │ ├── is_edge_manifold.h │ │ ├── is_file.cpp │ │ ├── is_file.h │ │ ├── is_intrinsic_delaunay.cpp │ │ ├── is_intrinsic_delaunay.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 │ │ ├── isolines.cpp │ │ ├── isolines.h │ │ ├── jet.cpp │ │ ├── jet.h │ │ ├── knn.cpp │ │ ├── knn.h │ │ ├── launch_medit.cpp │ │ ├── launch_medit.h │ │ ├── lbs_matrix.cpp │ │ ├── lbs_matrix.h │ │ ├── lexicographic_triangulation.cpp │ │ ├── lexicographic_triangulation.h │ │ ├── limit_faces.cpp │ │ ├── limit_faces.h │ │ ├── line_field_mismatch.cpp │ │ ├── line_field_mismatch.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 │ │ ├── local_basis.cpp │ │ ├── local_basis.h │ │ ├── look_at.cpp │ │ ├── look_at.h │ │ ├── loop.cpp │ │ ├── loop.h │ │ ├── lscm.cpp │ │ ├── lscm.h │ │ ├── map_vertices_to_circle.cpp │ │ ├── map_vertices_to_circle.h │ │ ├── mapping_energy_with_jacobians.cpp │ │ ├── mapping_energy_with_jacobians.h │ │ ├── marching_tets.cpp │ │ ├── marching_tets.h │ │ ├── massmatrix.cpp │ │ ├── massmatrix.h │ │ ├── massmatrix_intrinsic.cpp │ │ ├── massmatrix_intrinsic.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 │ │ ├── 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 │ │ ├── octree.cpp │ │ ├── octree.h │ │ ├── on_boundary.cpp │ │ ├── on_boundary.h │ │ ├── opengl │ │ ├── MeshGL.cpp │ │ ├── MeshGL.h │ │ ├── ViewerCore.cpp │ │ ├── ViewerCore.h │ │ ├── ViewerData.cpp │ │ ├── ViewerData.h │ │ ├── bind_vertex_attrib_array.cpp │ │ ├── bind_vertex_attrib_array.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.h │ │ ├── gl_type_size.cpp │ │ ├── gl_type_size.h │ │ ├── glfw │ │ │ ├── Viewer.cpp │ │ │ ├── Viewer.h │ │ │ ├── ViewerPlugin.h │ │ │ ├── background_window.cpp │ │ │ ├── background_window.h │ │ │ ├── imgui │ │ │ │ ├── ImGuiHelpers.h │ │ │ │ ├── ImGuiMenu.cpp │ │ │ │ ├── ImGuiMenu.h │ │ │ │ └── ImGuiTraits.h │ │ │ ├── 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 │ │ ├── vertex_array.cpp │ │ └── vertex_array.h │ │ ├── orient_outward.cpp │ │ ├── orient_outward.h │ │ ├── orientable_patches.cpp │ │ ├── orientable_patches.h │ │ ├── oriented_facets.cpp │ │ ├── oriented_facets.h │ │ ├── orth.cpp │ │ ├── orth.h │ │ ├── ortho.cpp │ │ ├── ortho.h │ │ ├── outer_element.cpp │ │ ├── outer_element.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 │ │ ├── pinv.cpp │ │ ├── pinv.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 │ │ ├── predicates │ │ ├── predicates.cpp │ │ └── predicates.h │ │ ├── principal_curvature.cpp │ │ ├── principal_curvature.h │ │ ├── print_ijv.cpp │ │ ├── print_ijv.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 │ │ ├── pso.cpp │ │ ├── pso.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 │ │ ├── random_search.cpp │ │ ├── random_search.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 │ │ ├── readMSH.cpp │ │ ├── readMSH.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 │ │ ├── remesh_along_isoline.cpp │ │ ├── remesh_along_isoline.h │ │ ├── remove_duplicate_vertices.cpp │ │ ├── remove_duplicate_vertices.h │ │ ├── remove_duplicates.cpp │ │ ├── remove_duplicates.h │ │ ├── remove_unreferenced.cpp │ │ ├── remove_unreferenced.h │ │ ├── reorder.cpp │ │ ├── reorder.h │ │ ├── repdiag.cpp │ │ ├── repdiag.h │ │ ├── repmat.cpp │ │ ├── repmat.h │ │ ├── resolve_duplicated_faces.cpp │ │ ├── resolve_duplicated_faces.h │ │ ├── rgb_to_hsv.cpp │ │ ├── rgb_to_hsv.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 │ │ ├── scaf.cpp │ │ ├── scaf.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 │ │ ├── shape_diameter_function.cpp │ │ ├── shape_diameter_function.h │ │ ├── shapeup.cpp │ │ ├── shapeup.h │ │ ├── shortest_edge_and_midpoint.cpp │ │ ├── shortest_edge_and_midpoint.h │ │ ├── signed_angle.cpp │ │ ├── signed_angle.h │ │ ├── signed_distance.cpp │ │ ├── signed_distance.h │ │ ├── simplify_polyhedron.cpp │ │ ├── simplify_polyhedron.h │ │ ├── slice.cpp │ │ ├── slice.h │ │ ├── slice_cached.cpp │ │ ├── slice_cached.h │ │ ├── slice_into.cpp │ │ ├── slice_into.h │ │ ├── slice_mask.cpp │ │ ├── slice_mask.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 │ │ ├── solid_angle.cpp │ │ ├── solid_angle.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 │ │ ├── sparse_cached.cpp │ │ ├── sparse_cached.h │ │ ├── sparse_voxel_grid.cpp │ │ ├── sparse_voxel_grid.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 │ │ ├── sum.cpp │ │ ├── sum.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 │ │ ├── tan_half_angle.cpp │ │ ├── tan_half_angle.h │ │ ├── tet_tet_adjacency.cpp │ │ ├── tet_tet_adjacency.h │ │ ├── topological_hole_fill.cpp │ │ ├── topological_hole_fill.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 │ │ ├── triangulated_grid.cpp │ │ ├── triangulated_grid.h │ │ ├── two_axis_valuator_fixed_up.cpp │ │ ├── two_axis_valuator_fixed_up.h │ │ ├── uniformly_sample_two_manifold.cpp │ │ ├── uniformly_sample_two_manifold.h │ │ ├── unique.cpp │ │ ├── unique.h │ │ ├── unique_edge_map.cpp │ │ ├── unique_edge_map.h │ │ ├── unique_rows.cpp │ │ ├── unique_rows.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 │ │ ├── unzip_corners.cpp │ │ ├── unzip_corners.h │ │ ├── upsample.cpp │ │ ├── upsample.h │ │ ├── vector_area_matrix.cpp │ │ ├── vector_area_matrix.h │ │ ├── verbose.h │ │ ├── vertex_components.cpp │ │ ├── vertex_components.h │ │ ├── vertex_triangle_adjacency.cpp │ │ ├── vertex_triangle_adjacency.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 │ │ ├── ReAntTweakBarXMLSerialization.h │ │ ├── XMLSerializable.h │ │ ├── serialization_test.skip │ │ ├── serialize_xml.cpp │ │ ├── serialize_xml.h │ │ ├── writeDAE.cpp │ │ ├── writeDAE.h │ │ ├── write_triangle_mesh.cpp │ │ └── write_triangle_mesh.h └── Source │ ├── IGLDemo.Target.cs │ ├── IGLDemo │ ├── IGLDemo.Build.cs │ ├── IGLDemo.cpp │ ├── IGLDemo.h │ ├── IGLDemoGameModeBase.cpp │ └── IGLDemoGameModeBase.h │ └── IGLDemoEditor.Target.cs └── RuntimeGeometryDemo ├── Config ├── DefaultEditor.ini ├── DefaultEditorPerProjectUserSettings.ini ├── DefaultEngine.ini ├── DefaultGame.ini └── DefaultInput.ini ├── Content ├── AA_RuntimeGeometryTest.umap ├── BP_ApplyBooleanButton.uasset ├── BP_ApplySimplifyButton.uasset ├── BP_ApplySolidifyButton.uasset ├── BP_MagnaSphere.uasset ├── BP_Projectile.uasset ├── BP_RotatoSphere.uasset ├── BP_ShootableBlock_PMC.uasset ├── BP_ShootableBlock_SDMC.uasset ├── Mannequin │ ├── Animations │ │ ├── ThirdPersonIdle.uasset │ │ ├── ThirdPersonJump_End.uasset │ │ ├── ThirdPersonJump_Loop.uasset │ │ ├── ThirdPersonJump_Start.uasset │ │ ├── ThirdPersonRun.uasset │ │ ├── ThirdPersonWalk.uasset │ │ ├── ThirdPerson_AnimBP.uasset │ │ ├── ThirdPerson_IdleRun_2D.uasset │ │ └── ThirdPerson_Jump.uasset │ └── Character │ │ ├── Materials │ │ ├── M_UE4Man_Body.uasset │ │ ├── M_UE4Man_ChestLogo.uasset │ │ └── MaterialLayers │ │ │ ├── ML_GlossyBlack_Latex_UE4.uasset │ │ │ ├── ML_Plastic_Shiny_Beige.uasset │ │ │ ├── ML_Plastic_Shiny_Beige_LOGO.uasset │ │ │ ├── ML_SoftMetal_UE4.uasset │ │ │ ├── T_ML_Aluminum01.uasset │ │ │ ├── T_ML_Aluminum01_N.uasset │ │ │ ├── T_ML_Rubber_Blue_01_D.uasset │ │ │ └── T_ML_Rubber_Blue_01_N.uasset │ │ ├── Mesh │ │ ├── SK_Mannequin.uasset │ │ ├── SK_Mannequin_PhysicsAsset.uasset │ │ └── UE4_Mannequin_Skeleton.uasset │ │ └── Textures │ │ ├── UE4Man_Logo_N.uasset │ │ ├── UE4_LOGO_CARD.uasset │ │ ├── UE4_Mannequin_MAT_MASKA.uasset │ │ └── UE4_Mannequin__normals.uasset ├── Materials │ ├── M_BlueMaterial.uasset │ ├── M_FloorMaterial.uasset │ ├── M_GreenMaterial.uasset │ ├── M_RedMaterial.uasset │ ├── M_Translucent.uasset │ └── M_VertexColorMaterial.uasset ├── SM_Box.uasset ├── SM_ButtonBox.uasset ├── SM_Floor.uasset ├── SM_SmallSphere.uasset └── ThirdPersonCPP │ └── Blueprints │ └── ThirdPersonCharacter.uasset ├── Plugins └── RuntimeGeometryUtils │ ├── Content │ ├── BlueMaterial.uasset │ └── RedMaterial.uasset │ ├── Resources │ └── Icon128.png │ ├── RuntimeGeometryUtils.uplugin │ └── Source │ └── RuntimeGeometryUtils │ ├── Private │ ├── DynamicMeshBaseActor.cpp │ ├── DynamicMeshOBJReader.cpp │ ├── DynamicMeshOBJWriter.cpp │ ├── DynamicPMCActor.cpp │ ├── DynamicSDMCActor.cpp │ ├── DynamicSMCActor.cpp │ ├── MeshComponentRuntimeUtils.cpp │ ├── RuntimeGeometryUtilsModule.cpp │ └── tinyobj │ │ ├── LICENSE │ │ ├── README.md │ │ ├── tiny_obj_loader.cpp │ │ └── tiny_obj_loader.h │ ├── Public │ ├── DynamicMeshBaseActor.h │ ├── DynamicMeshOBJReader.h │ ├── DynamicMeshOBJWriter.h │ ├── DynamicPMCActor.h │ ├── DynamicSDMCActor.h │ ├── DynamicSMCActor.h │ ├── MeshComponentRuntimeUtils.h │ └── RuntimeGeometryUtilsModule.h │ └── RuntimeGeometryUtils.Build.cs ├── RuntimeGeometryDemo.uproject └── Source ├── RuntimeGeometryDemo.Target.cs ├── RuntimeGeometryDemo ├── RuntimeGeometryDemo.Build.cs ├── RuntimeGeometryDemo.cpp ├── RuntimeGeometryDemo.h ├── RuntimeGeometryDemoCharacter.cpp ├── RuntimeGeometryDemoCharacter.h ├── RuntimeGeometryDemoGameMode.cpp └── RuntimeGeometryDemoGameMode.h └── RuntimeGeometryDemoEditor.Target.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/README.md -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Config/DefaultGame.ini -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/IGLMeshProcessing.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/IGLMeshProcessing.uproject -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/MeshProcessingPlugin.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/MeshProcessingPlugin.uplugin -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/Resources/Icon128.png -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/.gitignore -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/.hgeol -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.BSD -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.GPL -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.LGPL -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.MINPACK -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.README -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CTestConfig.cmake -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CTestCustom.cmake.in -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/CholmodSupport -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Core -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Dense -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Eigen -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Householder -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/KLUSupport -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/LU -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/MetisSupport -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/OrderingMethods -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/PardisoSupport -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/QR -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SVD -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Sparse -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseCholesky -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdList -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdVector -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/INSTALL -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/README.md -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/eigen3.pc.in -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/LICENSE.GPL -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/LICENSE.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/LICENSE.MPL2 -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/README.md -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/AABB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/AABB.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/AABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/AABB.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/C_STR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/C_STR.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Camera.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/EPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/EPS.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/EPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/EPS.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Hit.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/IO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/IO -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ONE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ONE.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/PI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/PI.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/REDRUM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/REDRUM.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/STR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/STR.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Timer.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Viewport.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ZERO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ZERO.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/all.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/all.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any_of.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any_of.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any_of.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap_dof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap_dof.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap_rhs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap_rhs.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/basename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/basename.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bbw.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bbw.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bfs.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bfs.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cat.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cat.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ceil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ceil.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ceil.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/centroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/centroid.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colon.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colon.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colormap.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/combine.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/count.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/count.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cross.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cross.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumprod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumprod.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumsum.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumsum.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cut_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cut_mesh.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cylinder.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/decimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/decimate.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dfs.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dfs.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/diag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/diag.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/diag.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dijkstra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dijkstra.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dirname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dirname.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot_row.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dqs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dqs.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dqs.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ears.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ears.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ears.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ears.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/edges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/edges.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/edges.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/eigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/eigs.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/eigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/eigs.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/find.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/find.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/floor.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/floor.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/for_each.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/frustum.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grad.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grad.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grid.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grid.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/harmonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/harmonic.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/hessian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/hessian.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/histc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/histc.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/histc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/histc.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/inradius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/inradius.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_dir.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_dir.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_file.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_stl.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_stl.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isdiag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isdiag.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isdiag.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ismember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ismember.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isolines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isolines.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/jet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/jet.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/jet.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/knn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/knn.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/knn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/knn.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/linprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/linprog.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/look_at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/look_at.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/loop.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/loop.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/lscm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/lscm.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/lscm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/lscm.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mat_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mat_max.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mat_min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mat_min.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max_size.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/median.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/median.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/median.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min_size.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mod.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mod.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mode.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mode.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mvc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mvc.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mvc.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/nchoosek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/nchoosek.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/null.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/null.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/octree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/octree.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/octree.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/orth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/orth.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/orth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/orth.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ortho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ortho.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ortho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ortho.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/parula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/parula.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/parula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/parula.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pathinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pathinfo.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pinv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pinv.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pinv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pinv.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ply.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/project.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/project.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pso.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pso.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/qslim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/qslim.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/qslim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/qslim.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/randperm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/randperm.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/raytri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/raytri.c -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readBF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readBF.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readBF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readBF.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readCSV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readCSV.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readDMAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readDMAT.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readMESH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readMESH.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readMSH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readMSH.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readNODE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readNODE.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readOBJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readOBJ.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readOFF.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readPLY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readPLY.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readSTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readSTL.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readTGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readTGF.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readWRL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readWRL.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/redux.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/reorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/reorder.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/repdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/repdiag.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/repmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/repmat.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/repmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/repmat.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/round.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/round.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/round.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/scaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/scaf.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/scaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/scaf.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/setdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/setdiff.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/setunion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/setunion.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/setxor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/setxor.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/setxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/setxor.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/shapeup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/shapeup.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slice.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slice.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slim.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slim.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sort.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sort.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sortrows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sortrows.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sparse.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sparse.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/speye.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/speye.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/speye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/speye.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sum.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sum.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/svd3x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/svd3x3.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/svd3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/svd3x3.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/unique.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/unique.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/unique.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/upsample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/upsample.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/verbose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/verbose.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/volume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/volume.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/volume.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeBF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeBF.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeOBJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeOBJ.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeOFF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeOFF.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writePLY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writePLY.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeSTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeSTL.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeTGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeTGF.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeWRL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/writeWRL.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Source/IGLDemo.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Source/IGLDemo.Target.cs -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.Build.cs -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Source/IGLDemo/IGLDemoGameModeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Source/IGLDemo/IGLDemoGameModeBase.cpp -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Source/IGLDemo/IGLDemoGameModeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Source/IGLDemo/IGLDemoGameModeBase.h -------------------------------------------------------------------------------- /UE4.24/IGLMeshProcessingProject/Source/IGLDemoEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.24/IGLMeshProcessingProject/Source/IGLDemoEditor.Target.cs -------------------------------------------------------------------------------- /UE4.26/CommandLineGeometryTest/CommandLineGeometryTest.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/CommandLineGeometryTest/CommandLineGeometryTest.Build.cs -------------------------------------------------------------------------------- /UE4.26/CommandLineGeometryTest/CommandLineGeometryTest.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/CommandLineGeometryTest/CommandLineGeometryTest.Target.cs -------------------------------------------------------------------------------- /UE4.26/CommandLineGeometryTest/Private/CommandLineGeometryTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/CommandLineGeometryTest/Private/CommandLineGeometryTest.cpp -------------------------------------------------------------------------------- /UE4.26/CommandLineGeometryTest/Private/CommandLineGeometryTest.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "CoreMinimal.h" 4 | 5 | -------------------------------------------------------------------------------- /UE4.26/CommandLineGeometryTest/Private/DynamicMeshOBJReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/CommandLineGeometryTest/Private/DynamicMeshOBJReader.h -------------------------------------------------------------------------------- /UE4.26/CommandLineGeometryTest/Private/DynamicMeshOBJWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/CommandLineGeometryTest/Private/DynamicMeshOBJWriter.h -------------------------------------------------------------------------------- /UE4.26/CommandLineGeometryTest/Private/tinyobj/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/CommandLineGeometryTest/Private/tinyobj/LICENSE -------------------------------------------------------------------------------- /UE4.26/CommandLineGeometryTest/Private/tinyobj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/CommandLineGeometryTest/Private/tinyobj/README.md -------------------------------------------------------------------------------- /UE4.26/CommandLineGeometryTest/Private/tinyobj/tiny_obj_loader.cpp: -------------------------------------------------------------------------------- 1 | #define TINYOBJLOADER_IMPLEMENTATION 2 | #include "tiny_obj_loader.h" 3 | -------------------------------------------------------------------------------- /UE4.26/CommandLineGeometryTest/Private/tinyobj/tiny_obj_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/CommandLineGeometryTest/Private/tinyobj/tiny_obj_loader.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Config/DefaultGame.ini -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/IGLMeshProcessing.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/IGLMeshProcessing.uproject -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/MeshProcessingPlugin.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/MeshProcessingPlugin.uplugin -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/Resources/Icon128.png -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/.gitignore -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/.hgeol -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.BSD -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.GPL -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.LGPL -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.MINPACK -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/COPYING.README -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CTestConfig.cmake -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/CTestCustom.cmake.in -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/CholmodSupport -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Core -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Dense -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Eigen -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Householder -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/KLUSupport -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/LU -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/MetisSupport -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/OrderingMethods -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/PardisoSupport -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/QR -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SVD -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/Sparse -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseCholesky -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdList -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/StdVector -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/INSTALL -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/README.md -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/eigen/eigen3.pc.in -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/LICENSE.GPL -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/LICENSE.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/LICENSE.MPL2 -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/README.md -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/AABB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/AABB.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/AABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/AABB.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/C_STR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/C_STR.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Camera.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/EPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/EPS.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/EPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/EPS.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Hit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Hit.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/IO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/IO -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ONE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ONE.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/PI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/PI.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/REDRUM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/REDRUM.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/STR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/STR.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Timer.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/Viewport.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ZERO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ZERO.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/all.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/all.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/all.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any_of.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any_of.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/any_of.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap_dof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap_dof.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap_rhs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/arap_rhs.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/basename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/basename.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bbw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bbw.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bbw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bbw.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bfs.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/bfs.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cat.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cat.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ceil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ceil.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ceil.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/centroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/centroid.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colon.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colon.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/colormap.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/combine.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/count.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/count.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/count.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cross.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cross.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cross.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumprod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumprod.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumsum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumsum.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cumsum.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cut_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cut_mesh.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/cylinder.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/decimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/decimate.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dfs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dfs.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dfs.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/diag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/diag.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/diag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/diag.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dijkstra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dijkstra.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dirname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dirname.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dot_row.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dqs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dqs.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/dqs.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ears.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ears.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ears.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ears.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/edges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/edges.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/edges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/edges.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/eigs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/eigs.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/eigs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/eigs.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/find.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/find.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/find.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/find.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/floor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/floor.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/floor.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/for_each.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/for_each.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/frustum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/frustum.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grad.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grad.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grid.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/grid.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/harmonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/harmonic.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/hessian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/hessian.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/histc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/histc.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/histc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/histc.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/inradius.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/inradius.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_dir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_dir.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_dir.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_file.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_stl.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/is_stl.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isdiag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isdiag.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isdiag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isdiag.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ismember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ismember.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isolines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/isolines.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/jet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/jet.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/jet.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/knn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/knn.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/knn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/knn.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/linprog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/linprog.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/look_at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/look_at.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/loop.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/loop.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/lscm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/lscm.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/lscm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/lscm.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mat_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mat_max.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mat_min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mat_min.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/max_size.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/median.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/median.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/median.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/median.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/min_size.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mod.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mod.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mode.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mode.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mvc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mvc.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/mvc.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/nchoosek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/nchoosek.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/null.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/null.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/octree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/octree.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/octree.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/orth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/orth.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/orth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/orth.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ortho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ortho.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ortho.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ortho.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/parula.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/parula.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/parula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/parula.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pinv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pinv.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pinv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pinv.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/ply.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pso.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/pso.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/qslim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/qslim.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/raytri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/raytri.c -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readBF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/readBF.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/redux.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/repmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/repmat.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/round.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/scaf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/scaf.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/scaf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/scaf.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/setxor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/setxor.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slice.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slim.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/slim.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sort.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sort.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sparse.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/speye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/speye.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sum.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/sum.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/svd3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/svd3x3.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/unique.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/unique.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Plugins/MeshProcessingPlugin/ThirdParty/libigl/include/igl/volume.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Source/IGLDemo.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Source/IGLDemo.Target.cs -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.Build.cs -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Source/IGLDemo/IGLDemo.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Source/IGLDemo/IGLDemoGameModeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Source/IGLDemo/IGLDemoGameModeBase.cpp -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Source/IGLDemo/IGLDemoGameModeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Source/IGLDemo/IGLDemoGameModeBase.h -------------------------------------------------------------------------------- /UE4.26/IGLMeshProcessingProject/Source/IGLDemoEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/IGLMeshProcessingProject/Source/IGLDemoEditor.Target.cs -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Config/DefaultEditor.ini -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Config/DefaultEditorPerProjectUserSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Config/DefaultEditorPerProjectUserSettings.ini -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Config/DefaultGame.ini -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Config/DefaultInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Config/DefaultInput.ini -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/AA_RuntimeGeometryTest.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/AA_RuntimeGeometryTest.umap -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/BP_ApplyBooleanButton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/BP_ApplyBooleanButton.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/BP_ApplySimplifyButton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/BP_ApplySimplifyButton.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/BP_ApplySolidifyButton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/BP_ApplySolidifyButton.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/BP_MagnaSphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/BP_MagnaSphere.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/BP_Projectile.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/BP_Projectile.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/BP_RotatoSphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/BP_RotatoSphere.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/BP_ShootableBlock_PMC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/BP_ShootableBlock_PMC.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/BP_ShootableBlock_SDMC.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/BP_ShootableBlock_SDMC.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonIdle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonIdle.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonJump_End.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonJump_End.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonJump_Loop.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonJump_Loop.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonJump_Start.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonJump_Start.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonRun.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonRun.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonWalk.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPersonWalk.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPerson_AnimBP.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPerson_AnimBP.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPerson_IdleRun_2D.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPerson_IdleRun_2D.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPerson_Jump.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Animations/ThirdPerson_Jump.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Materials/M_UE4Man_Body.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Materials/M_UE4Man_Body.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Materials/M_UE4Man_ChestLogo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Materials/M_UE4Man_ChestLogo.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Mesh/SK_Mannequin.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Mesh/SK_Mannequin.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Mesh/SK_Mannequin_PhysicsAsset.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Mesh/SK_Mannequin_PhysicsAsset.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Mesh/UE4_Mannequin_Skeleton.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Mesh/UE4_Mannequin_Skeleton.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Textures/UE4Man_Logo_N.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Textures/UE4Man_Logo_N.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Textures/UE4_LOGO_CARD.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Textures/UE4_LOGO_CARD.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Textures/UE4_Mannequin_MAT_MASKA.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Textures/UE4_Mannequin_MAT_MASKA.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Textures/UE4_Mannequin__normals.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Mannequin/Character/Textures/UE4_Mannequin__normals.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Materials/M_BlueMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Materials/M_BlueMaterial.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Materials/M_FloorMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Materials/M_FloorMaterial.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Materials/M_GreenMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Materials/M_GreenMaterial.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Materials/M_RedMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Materials/M_RedMaterial.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Materials/M_Translucent.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Materials/M_Translucent.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/Materials/M_VertexColorMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/Materials/M_VertexColorMaterial.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/SM_Box.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/SM_Box.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/SM_ButtonBox.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/SM_ButtonBox.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/SM_Floor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/SM_Floor.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/SM_SmallSphere.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/SM_SmallSphere.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Content/ThirdPersonCPP/Blueprints/ThirdPersonCharacter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Content/ThirdPersonCPP/Blueprints/ThirdPersonCharacter.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Plugins/RuntimeGeometryUtils/Content/BlueMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Plugins/RuntimeGeometryUtils/Content/BlueMaterial.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Plugins/RuntimeGeometryUtils/Content/RedMaterial.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Plugins/RuntimeGeometryUtils/Content/RedMaterial.uasset -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Plugins/RuntimeGeometryUtils/Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Plugins/RuntimeGeometryUtils/Resources/Icon128.png -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Plugins/RuntimeGeometryUtils/RuntimeGeometryUtils.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Plugins/RuntimeGeometryUtils/RuntimeGeometryUtils.uplugin -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Plugins/RuntimeGeometryUtils/Source/RuntimeGeometryUtils/Private/tinyobj/tiny_obj_loader.cpp: -------------------------------------------------------------------------------- 1 | #define TINYOBJLOADER_IMPLEMENTATION 2 | #include "tiny_obj_loader.h" 3 | -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/RuntimeGeometryDemo.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/RuntimeGeometryDemo.uproject -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo.Target.cs -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemo.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemo.Build.cs -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemo.cpp -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemo.h -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemoCharacter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemoCharacter.cpp -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemoCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemoCharacter.h -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemoGameMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemoGameMode.cpp -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemoGameMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemo/RuntimeGeometryDemoGameMode.h -------------------------------------------------------------------------------- /UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemoEditor.Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gradientspace/UnrealMeshProcessingTools/HEAD/UE4.26/RuntimeGeometryDemo/Source/RuntimeGeometryDemoEditor.Target.cs --------------------------------------------------------------------------------