├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README_HYLC.md ├── README_arcsim ├── conf ├── crumple-pnas.json ├── crumple.json ├── cylinder.json └── sphere-annotated.json ├── dependencies ├── alglib │ ├── .gitignore │ ├── CMakeLists.txt │ └── cpp │ │ ├── gpl2.txt │ │ ├── gpl3.txt │ │ ├── manual.cpp.html │ │ ├── src │ │ ├── alglibinternal.cpp │ │ ├── alglibinternal.h │ │ ├── alglibmisc.cpp │ │ ├── alglibmisc.h │ │ ├── ap.cpp │ │ ├── ap.h │ │ ├── dataanalysis.cpp │ │ ├── dataanalysis.h │ │ ├── diffequations.cpp │ │ ├── diffequations.h │ │ ├── fasttransforms.cpp │ │ ├── fasttransforms.h │ │ ├── integration.cpp │ │ ├── integration.h │ │ ├── interpolation.cpp │ │ ├── interpolation.h │ │ ├── linalg.cpp │ │ ├── linalg.h │ │ ├── optimization.cpp │ │ ├── optimization.h │ │ ├── solvers.cpp │ │ ├── solvers.h │ │ ├── specialfunctions.cpp │ │ ├── specialfunctions.h │ │ ├── statistics.cpp │ │ ├── statistics.h │ │ └── stdafx.h │ │ └── tests │ │ ├── test_c.cpp │ │ └── test_i.cpp ├── eigen │ ├── .hg_archival.txt │ ├── .hgeol │ ├── .hgignore │ ├── CMakeLists.txt │ ├── COPYING.BSD │ ├── COPYING.GPL │ ├── COPYING.LGPL │ ├── COPYING.MINPACK │ ├── COPYING.MPL2 │ ├── COPYING.README │ ├── CTestConfig.cmake │ ├── CTestCustom.cmake.in │ ├── Eigen │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.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 │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CUDA │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── Default │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ └── Settings.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.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 │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.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 │ │ │ ├── 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 │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ ├── INSTALL │ ├── README.md │ ├── bench │ │ ├── BenchSparseUtil.h │ │ ├── BenchTimer.h │ │ ├── BenchUtil.h │ │ ├── README.txt │ │ ├── analyze-blocking-sizes.cpp │ │ ├── basicbench.cxxlist │ │ ├── basicbenchmark.cpp │ │ ├── basicbenchmark.h │ │ ├── benchBlasGemm.cpp │ │ ├── benchCholesky.cpp │ │ ├── benchEigenSolver.cpp │ │ ├── benchFFT.cpp │ │ ├── benchGeometry.cpp │ │ ├── benchVecAdd.cpp │ │ ├── bench_gemm.cpp │ │ ├── bench_multi_compilers.sh │ │ ├── bench_norm.cpp │ │ ├── bench_reverse.cpp │ │ ├── bench_sum.cpp │ │ ├── bench_unrolling │ │ ├── benchmark-blocking-sizes.cpp │ │ ├── benchmark.cpp │ │ ├── benchmarkSlice.cpp │ │ ├── benchmarkX.cpp │ │ ├── benchmarkXcwise.cpp │ │ ├── benchmark_suite │ │ ├── btl │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── actions │ │ │ │ ├── action_aat_product.hh │ │ │ │ ├── action_ata_product.hh │ │ │ │ ├── action_atv_product.hh │ │ │ │ ├── action_axpby.hh │ │ │ │ ├── action_axpy.hh │ │ │ │ ├── action_cholesky.hh │ │ │ │ ├── action_ger.hh │ │ │ │ ├── action_hessenberg.hh │ │ │ │ ├── action_lu_decomp.hh │ │ │ │ ├── action_lu_solve.hh │ │ │ │ ├── action_matrix_matrix_product.hh │ │ │ │ ├── action_matrix_matrix_product_bis.hh │ │ │ │ ├── action_matrix_vector_product.hh │ │ │ │ ├── action_partial_lu.hh │ │ │ │ ├── action_rot.hh │ │ │ │ ├── action_symv.hh │ │ │ │ ├── action_syr2.hh │ │ │ │ ├── action_trisolve.hh │ │ │ │ ├── action_trisolve_matrix.hh │ │ │ │ ├── action_trmm.hh │ │ │ │ └── basic_actions.hh │ │ │ ├── cmake │ │ │ │ ├── FindACML.cmake │ │ │ │ ├── FindATLAS.cmake │ │ │ │ ├── FindBLAZE.cmake │ │ │ │ ├── FindBlitz.cmake │ │ │ │ ├── FindCBLAS.cmake │ │ │ │ ├── FindGMM.cmake │ │ │ │ ├── FindMKL.cmake │ │ │ │ ├── FindMTL4.cmake │ │ │ │ ├── FindOPENBLAS.cmake │ │ │ │ ├── FindPackageHandleStandardArgs.cmake │ │ │ │ ├── FindTvmet.cmake │ │ │ │ └── MacroOptionalAddSubdirectory.cmake │ │ │ ├── data │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── action_settings.txt │ │ │ │ ├── gnuplot_common_settings.hh │ │ │ │ ├── go_mean │ │ │ │ ├── mean.cxx │ │ │ │ ├── mk_gnuplot_script.sh │ │ │ │ ├── mk_mean_script.sh │ │ │ │ ├── mk_new_gnuplot.sh │ │ │ │ ├── perlib_plot_settings.txt │ │ │ │ ├── regularize.cxx │ │ │ │ ├── smooth.cxx │ │ │ │ └── smooth_all.sh │ │ │ ├── generic_bench │ │ │ │ ├── bench.hh │ │ │ │ ├── bench_parameter.hh │ │ │ │ ├── btl.hh │ │ │ │ ├── init │ │ │ │ │ ├── init_function.hh │ │ │ │ │ ├── init_matrix.hh │ │ │ │ │ └── init_vector.hh │ │ │ │ ├── static │ │ │ │ │ ├── bench_static.hh │ │ │ │ │ ├── intel_bench_fixed_size.hh │ │ │ │ │ └── static_size_generator.hh │ │ │ │ ├── timers │ │ │ │ │ ├── STL_perf_analyzer.hh │ │ │ │ │ ├── STL_timer.hh │ │ │ │ │ ├── mixed_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer.hh │ │ │ │ │ ├── portable_perf_analyzer_old.hh │ │ │ │ │ ├── portable_timer.hh │ │ │ │ │ ├── x86_perf_analyzer.hh │ │ │ │ │ └── x86_timer.hh │ │ │ │ └── utils │ │ │ │ │ ├── size_lin_log.hh │ │ │ │ │ ├── size_log.hh │ │ │ │ │ ├── utilities.h │ │ │ │ │ └── xy_file.hh │ │ │ └── libs │ │ │ │ ├── BLAS │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blas.h │ │ │ │ ├── blas_interface.hh │ │ │ │ ├── blas_interface_impl.hh │ │ │ │ ├── c_interface_base.h │ │ │ │ └── main.cpp │ │ │ │ ├── STL │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── STL_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blaze │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blaze_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── blitz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── blitz_LU_solve_interface.hh │ │ │ │ ├── blitz_interface.hh │ │ │ │ ├── btl_blitz.cpp │ │ │ │ ├── btl_tiny_blitz.cpp │ │ │ │ └── tiny_blitz_interface.hh │ │ │ │ ├── eigen2 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen2.cpp │ │ │ │ ├── eigen2_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── eigen3 │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── btl_tiny_eigen3.cpp │ │ │ │ ├── eigen3_interface.hh │ │ │ │ ├── main_adv.cpp │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ └── main_vecmat.cpp │ │ │ │ ├── gmm │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gmm_LU_solve_interface.hh │ │ │ │ ├── gmm_interface.hh │ │ │ │ └── main.cpp │ │ │ │ ├── mtl4 │ │ │ │ ├── .kdbgrc.main │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ ├── mtl4_LU_solve_interface.hh │ │ │ │ └── mtl4_interface.hh │ │ │ │ ├── tensors │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main_linear.cpp │ │ │ │ ├── main_matmat.cpp │ │ │ │ ├── main_vecmat.cpp │ │ │ │ └── tensor_interface.hh │ │ │ │ ├── tvmet │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── tvmet_interface.hh │ │ │ │ └── ublas │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ublas_interface.hh │ │ ├── check_cache_queries.cpp │ │ ├── dense_solvers.cpp │ │ ├── eig33.cpp │ │ ├── geometry.cpp │ │ ├── perf_monitoring │ │ │ └── gemm │ │ │ │ ├── changesets.txt │ │ │ │ ├── gemm.cpp │ │ │ │ ├── gemm_settings.txt │ │ │ │ ├── lazy_gemm.cpp │ │ │ │ ├── lazy_gemm_settings.txt │ │ │ │ ├── make_plot.sh │ │ │ │ └── run.sh │ │ ├── product_threshold.cpp │ │ ├── quat_slerp.cpp │ │ ├── quatmul.cpp │ │ ├── sparse_cholesky.cpp │ │ ├── sparse_dense_product.cpp │ │ ├── sparse_lu.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_randomsetter.cpp │ │ ├── sparse_setter.cpp │ │ ├── sparse_transpose.cpp │ │ ├── sparse_trisolver.cpp │ │ ├── spbench │ │ │ ├── CMakeLists.txt │ │ │ ├── sp_solver.cpp │ │ │ ├── spbench.dtd │ │ │ ├── spbenchsolver.cpp │ │ │ ├── spbenchsolver.h │ │ │ ├── spbenchstyle.h │ │ │ └── test_sparseLU.cpp │ │ ├── spmv.cpp │ │ ├── tensors │ │ │ ├── README │ │ │ ├── benchmark.h │ │ │ ├── benchmark_main.cc │ │ │ ├── contraction_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks.h │ │ │ ├── tensor_benchmarks_cpu.cc │ │ │ ├── tensor_benchmarks_fp16_gpu.cu │ │ │ ├── tensor_benchmarks_gpu.cu │ │ │ └── tensor_benchmarks_sycl.cc │ │ └── vdw_new.cpp │ ├── blas │ │ ├── BandTriangularSolver.h │ │ ├── CMakeLists.txt │ │ ├── GeneralRank1Update.h │ │ ├── PackedSelfadjointProduct.h │ │ ├── PackedTriangularMatrixVector.h │ │ ├── PackedTriangularSolverVector.h │ │ ├── README.txt │ │ ├── Rank2Update.h │ │ ├── common.h │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── double.cpp │ │ ├── f2c │ │ │ ├── chbmv.c │ │ │ ├── chpmv.c │ │ │ ├── complexdots.c │ │ │ ├── ctbmv.c │ │ │ ├── d_cnjg.c │ │ │ ├── datatypes.h │ │ │ ├── drotm.c │ │ │ ├── drotmg.c │ │ │ ├── dsbmv.c │ │ │ ├── dspmv.c │ │ │ ├── dtbmv.c │ │ │ ├── lsame.c │ │ │ ├── r_cnjg.c │ │ │ ├── srotm.c │ │ │ ├── srotmg.c │ │ │ ├── ssbmv.c │ │ │ ├── sspmv.c │ │ │ ├── stbmv.c │ │ │ ├── zhbmv.c │ │ │ ├── zhpmv.c │ │ │ └── ztbmv.c │ │ ├── fortran │ │ │ └── complexdots.f │ │ ├── level1_cplx_impl.h │ │ ├── level1_impl.h │ │ ├── level1_real_impl.h │ │ ├── level2_cplx_impl.h │ │ ├── level2_impl.h │ │ ├── level2_real_impl.h │ │ ├── level3_impl.h │ │ ├── single.cpp │ │ ├── testing │ │ │ ├── CMakeLists.txt │ │ │ ├── cblat1.f │ │ │ ├── cblat2.dat │ │ │ ├── cblat2.f │ │ │ ├── cblat3.dat │ │ │ ├── cblat3.f │ │ │ ├── dblat1.f │ │ │ ├── dblat2.dat │ │ │ ├── dblat2.f │ │ │ ├── dblat3.dat │ │ │ ├── dblat3.f │ │ │ ├── runblastest.sh │ │ │ ├── sblat1.f │ │ │ ├── sblat2.dat │ │ │ ├── sblat2.f │ │ │ ├── sblat3.dat │ │ │ ├── sblat3.f │ │ │ ├── zblat1.f │ │ │ ├── zblat2.dat │ │ │ ├── zblat2.f │ │ │ ├── zblat3.dat │ │ │ └── zblat3.f │ │ └── xerbla.cpp │ ├── cmake │ │ ├── Eigen3Config.cmake.in │ │ ├── Eigen3ConfigLegacy.cmake.in │ │ ├── EigenConfigureTesting.cmake │ │ ├── EigenDetermineOSVersion.cmake │ │ ├── EigenDetermineVSServicePack.cmake │ │ ├── EigenTesting.cmake │ │ ├── EigenUninstall.cmake │ │ ├── FindAdolc.cmake │ │ ├── FindBLAS.cmake │ │ ├── FindBLASEXT.cmake │ │ ├── FindCholmod.cmake │ │ ├── FindComputeCpp.cmake │ │ ├── FindEigen2.cmake │ │ ├── FindEigen3.cmake │ │ ├── FindFFTW.cmake │ │ ├── FindGLEW.cmake │ │ ├── FindGMP.cmake │ │ ├── FindGSL.cmake │ │ ├── FindGoogleHash.cmake │ │ ├── FindHWLOC.cmake │ │ ├── FindLAPACK.cmake │ │ ├── FindMPFR.cmake │ │ ├── FindMetis.cmake │ │ ├── FindPTSCOTCH.cmake │ │ ├── FindPastix.cmake │ │ ├── FindSPQR.cmake │ │ ├── FindScotch.cmake │ │ ├── FindStandardMathLibrary.cmake │ │ ├── FindSuperLU.cmake │ │ ├── FindUmfpack.cmake │ │ ├── RegexUtils.cmake │ │ ├── UseEigen3.cmake │ │ └── language_support.cmake │ ├── debug │ │ ├── gdb │ │ │ ├── __init__.py │ │ │ └── printers.py │ │ └── msvc │ │ │ ├── eigen.natvis │ │ │ └── eigen_autoexp_part.dat │ ├── demos │ │ ├── CMakeLists.txt │ │ ├── mandelbrot │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── mandelbrot.cpp │ │ │ └── mandelbrot.h │ │ ├── mix_eigen_and_c │ │ │ ├── README │ │ │ ├── binary_library.cpp │ │ │ ├── binary_library.h │ │ │ └── example.c │ │ └── opengl │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── camera.cpp │ │ │ ├── camera.h │ │ │ ├── gpuhelper.cpp │ │ │ ├── gpuhelper.h │ │ │ ├── icosphere.cpp │ │ │ ├── icosphere.h │ │ │ ├── quaternion_demo.cpp │ │ │ ├── quaternion_demo.h │ │ │ ├── trackball.cpp │ │ │ └── trackball.h │ ├── doc │ │ ├── A05_PortingFrom2To3.dox │ │ ├── AsciiQuickReference.txt │ │ ├── B01_Experimental.dox │ │ ├── CMakeLists.txt │ │ ├── ClassHierarchy.dox │ │ ├── CoeffwiseMathFunctionsTable.dox │ │ ├── CustomizingEigen_CustomScalar.dox │ │ ├── CustomizingEigen_InheritingMatrix.dox │ │ ├── CustomizingEigen_NullaryExpr.dox │ │ ├── CustomizingEigen_Plugins.dox │ │ ├── DenseDecompositionBenchmark.dox │ │ ├── Doxyfile.in │ │ ├── Eigen_Silly_Professor_64x64.png │ │ ├── FixedSizeVectorizable.dox │ │ ├── FunctionsTakingEigenTypes.dox │ │ ├── HiPerformance.dox │ │ ├── InplaceDecomposition.dox │ │ ├── InsideEigenExample.dox │ │ ├── LeastSquares.dox │ │ ├── Manual.dox │ │ ├── MatrixfreeSolverExample.dox │ │ ├── NewExpressionType.dox │ │ ├── Overview.dox │ │ ├── PassingByValue.dox │ │ ├── Pitfalls.dox │ │ ├── PreprocessorDirectives.dox │ │ ├── QuickReference.dox │ │ ├── QuickStartGuide.dox │ │ ├── SparseLinearSystems.dox │ │ ├── SparseQuickReference.dox │ │ ├── StlContainers.dox │ │ ├── StorageOrders.dox │ │ ├── StructHavingEigenMembers.dox │ │ ├── TemplateKeyword.dox │ │ ├── TopicAliasing.dox │ │ ├── TopicAssertions.dox │ │ ├── TopicCMakeGuide.dox │ │ ├── TopicEigenExpressionTemplates.dox │ │ ├── TopicLazyEvaluation.dox │ │ ├── TopicLinearAlgebraDecompositions.dox │ │ ├── TopicMultithreading.dox │ │ ├── TopicResizing.dox │ │ ├── TopicScalarTypes.dox │ │ ├── TopicVectorization.dox │ │ ├── TutorialAdvancedInitialization.dox │ │ ├── TutorialArrayClass.dox │ │ ├── TutorialBlockOperations.dox │ │ ├── TutorialGeometry.dox │ │ ├── TutorialLinearAlgebra.dox │ │ ├── TutorialMapClass.dox │ │ ├── TutorialMatrixArithmetic.dox │ │ ├── TutorialMatrixClass.dox │ │ ├── TutorialReductionsVisitorsBroadcasting.dox │ │ ├── TutorialReshapeSlicing.dox │ │ ├── TutorialSparse.dox │ │ ├── TutorialSparse_example_details.dox │ │ ├── UnalignedArrayAssert.dox │ │ ├── UsingBlasLapackBackends.dox │ │ ├── UsingIntelMKL.dox │ │ ├── UsingNVCC.dox │ │ ├── WrongStackAlignment.dox │ │ ├── eigen_navtree_hacks.js │ │ ├── eigendoxy.css │ │ ├── eigendoxy_footer.html.in │ │ ├── eigendoxy_header.html.in │ │ ├── eigendoxy_layout.xml.in │ │ ├── eigendoxy_tabs.css │ │ ├── examples │ │ │ ├── .krazy │ │ │ ├── CMakeLists.txt │ │ │ ├── CustomizingEigen_Inheritance.cpp │ │ │ ├── Cwise_erf.cpp │ │ │ ├── Cwise_erfc.cpp │ │ │ ├── Cwise_lgamma.cpp │ │ │ ├── DenseBase_middleCols_int.cpp │ │ │ ├── DenseBase_middleRows_int.cpp │ │ │ ├── DenseBase_template_int_middleCols.cpp │ │ │ ├── DenseBase_template_int_middleRows.cpp │ │ │ ├── QuickStart_example.cpp │ │ │ ├── QuickStart_example2_dynamic.cpp │ │ │ ├── QuickStart_example2_fixed.cpp │ │ │ ├── TemplateKeyword_flexible.cpp │ │ │ ├── TemplateKeyword_simple.cpp │ │ │ ├── TutorialInplaceLU.cpp │ │ │ ├── TutorialLinAlgComputeTwice.cpp │ │ │ ├── TutorialLinAlgExComputeSolveError.cpp │ │ │ ├── TutorialLinAlgExSolveColPivHouseholderQR.cpp │ │ │ ├── TutorialLinAlgExSolveLDLT.cpp │ │ │ ├── TutorialLinAlgInverseDeterminant.cpp │ │ │ ├── TutorialLinAlgRankRevealing.cpp │ │ │ ├── TutorialLinAlgSVDSolve.cpp │ │ │ ├── TutorialLinAlgSelfAdjointEigenSolver.cpp │ │ │ ├── TutorialLinAlgSetThreshold.cpp │ │ │ ├── Tutorial_ArrayClass_accessors.cpp │ │ │ ├── Tutorial_ArrayClass_addition.cpp │ │ │ ├── Tutorial_ArrayClass_cwise_other.cpp │ │ │ ├── Tutorial_ArrayClass_interop.cpp │ │ │ ├── Tutorial_ArrayClass_interop_matrix.cpp │ │ │ ├── Tutorial_ArrayClass_mult.cpp │ │ │ ├── Tutorial_BlockOperations_block_assignment.cpp │ │ │ ├── Tutorial_BlockOperations_colrow.cpp │ │ │ ├── Tutorial_BlockOperations_corner.cpp │ │ │ ├── Tutorial_BlockOperations_print_block.cpp │ │ │ ├── Tutorial_BlockOperations_vector.cpp │ │ │ ├── Tutorial_PartialLU_solve.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_1nn.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_colwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_maxnorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_bool.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_norm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_reductions_operatornorm.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_rowwise.cpp │ │ │ ├── Tutorial_ReductionsVisitorsBroadcasting_visitors.cpp │ │ │ ├── Tutorial_simple_example_dynamic_size.cpp │ │ │ ├── Tutorial_simple_example_fixed_size.cpp │ │ │ ├── class_Block.cpp │ │ │ ├── class_CwiseBinaryOp.cpp │ │ │ ├── class_CwiseUnaryOp.cpp │ │ │ ├── class_CwiseUnaryOp_ptrfun.cpp │ │ │ ├── class_FixedBlock.cpp │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ ├── class_VectorBlock.cpp │ │ │ ├── function_taking_eigenbase.cpp │ │ │ ├── function_taking_ref.cpp │ │ │ ├── make_circulant.cpp │ │ │ ├── make_circulant.cpp.entry │ │ │ ├── make_circulant.cpp.evaluator │ │ │ ├── make_circulant.cpp.expression │ │ │ ├── make_circulant.cpp.main │ │ │ ├── make_circulant.cpp.preamble │ │ │ ├── make_circulant.cpp.traits │ │ │ ├── make_circulant2.cpp │ │ │ ├── matrixfree_cg.cpp │ │ │ ├── nullary_indexing.cpp │ │ │ ├── tut_arithmetic_add_sub.cpp │ │ │ ├── tut_arithmetic_dot_cross.cpp │ │ │ ├── tut_arithmetic_matrix_mul.cpp │ │ │ ├── tut_arithmetic_redux_basic.cpp │ │ │ ├── tut_arithmetic_scalar_mul_div.cpp │ │ │ ├── tut_matrix_coefficient_accessors.cpp │ │ │ ├── tut_matrix_resize.cpp │ │ │ └── tut_matrix_resize_fixed_size.cpp │ │ ├── ftv2node.png │ │ ├── ftv2pnode.png │ │ ├── snippets │ │ │ ├── .krazy │ │ │ ├── AngleAxis_mimic_euler.cpp │ │ │ ├── BiCGSTAB_simple.cpp │ │ │ ├── BiCGSTAB_step_by_step.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── ColPivHouseholderQR_solve.cpp │ │ │ ├── ComplexEigenSolver_compute.cpp │ │ │ ├── ComplexEigenSolver_eigenvalues.cpp │ │ │ ├── ComplexEigenSolver_eigenvectors.cpp │ │ │ ├── ComplexSchur_compute.cpp │ │ │ ├── ComplexSchur_matrixT.cpp │ │ │ ├── ComplexSchur_matrixU.cpp │ │ │ ├── Cwise_abs.cpp │ │ │ ├── Cwise_abs2.cpp │ │ │ ├── Cwise_acos.cpp │ │ │ ├── Cwise_arg.cpp │ │ │ ├── Cwise_array_power_array.cpp │ │ │ ├── Cwise_asin.cpp │ │ │ ├── Cwise_atan.cpp │ │ │ ├── Cwise_boolean_and.cpp │ │ │ ├── Cwise_boolean_not.cpp │ │ │ ├── Cwise_boolean_or.cpp │ │ │ ├── Cwise_boolean_xor.cpp │ │ │ ├── Cwise_ceil.cpp │ │ │ ├── Cwise_cos.cpp │ │ │ ├── Cwise_cosh.cpp │ │ │ ├── Cwise_cube.cpp │ │ │ ├── Cwise_equal_equal.cpp │ │ │ ├── Cwise_exp.cpp │ │ │ ├── Cwise_floor.cpp │ │ │ ├── Cwise_greater.cpp │ │ │ ├── Cwise_greater_equal.cpp │ │ │ ├── Cwise_inverse.cpp │ │ │ ├── Cwise_isFinite.cpp │ │ │ ├── Cwise_isInf.cpp │ │ │ ├── Cwise_isNaN.cpp │ │ │ ├── Cwise_less.cpp │ │ │ ├── Cwise_less_equal.cpp │ │ │ ├── Cwise_log.cpp │ │ │ ├── Cwise_log10.cpp │ │ │ ├── Cwise_max.cpp │ │ │ ├── Cwise_min.cpp │ │ │ ├── Cwise_minus.cpp │ │ │ ├── Cwise_minus_equal.cpp │ │ │ ├── Cwise_not_equal.cpp │ │ │ ├── Cwise_plus.cpp │ │ │ ├── Cwise_plus_equal.cpp │ │ │ ├── Cwise_pow.cpp │ │ │ ├── Cwise_product.cpp │ │ │ ├── Cwise_quotient.cpp │ │ │ ├── Cwise_round.cpp │ │ │ ├── Cwise_scalar_power_array.cpp │ │ │ ├── Cwise_sign.cpp │ │ │ ├── Cwise_sin.cpp │ │ │ ├── Cwise_sinh.cpp │ │ │ ├── Cwise_slash_equal.cpp │ │ │ ├── Cwise_sqrt.cpp │ │ │ ├── Cwise_square.cpp │ │ │ ├── Cwise_tan.cpp │ │ │ ├── Cwise_tanh.cpp │ │ │ ├── Cwise_times_equal.cpp │ │ │ ├── DenseBase_LinSpaced.cpp │ │ │ ├── DenseBase_LinSpacedInt.cpp │ │ │ ├── DenseBase_LinSpaced_seq.cpp │ │ │ ├── DenseBase_setLinSpaced.cpp │ │ │ ├── DirectionWise_hnormalized.cpp │ │ │ ├── DirectionWise_replicate.cpp │ │ │ ├── DirectionWise_replicate_int.cpp │ │ │ ├── EigenSolver_EigenSolver_MatrixType.cpp │ │ │ ├── EigenSolver_compute.cpp │ │ │ ├── EigenSolver_eigenvalues.cpp │ │ │ ├── EigenSolver_eigenvectors.cpp │ │ │ ├── EigenSolver_pseudoEigenvectors.cpp │ │ │ ├── FullPivHouseholderQR_solve.cpp │ │ │ ├── FullPivLU_image.cpp │ │ │ ├── FullPivLU_kernel.cpp │ │ │ ├── FullPivLU_solve.cpp │ │ │ ├── GeneralizedEigenSolver.cpp │ │ │ ├── HessenbergDecomposition_compute.cpp │ │ │ ├── HessenbergDecomposition_matrixH.cpp │ │ │ ├── HessenbergDecomposition_packedMatrix.cpp │ │ │ ├── HouseholderQR_householderQ.cpp │ │ │ ├── HouseholderQR_solve.cpp │ │ │ ├── HouseholderSequence_HouseholderSequence.cpp │ │ │ ├── IOFormat.cpp │ │ │ ├── JacobiSVD_basic.cpp │ │ │ ├── Jacobi_makeGivens.cpp │ │ │ ├── Jacobi_makeJacobi.cpp │ │ │ ├── LLT_example.cpp │ │ │ ├── LLT_solve.cpp │ │ │ ├── LeastSquaresNormalEquations.cpp │ │ │ ├── LeastSquaresQR.cpp │ │ │ ├── Map_general_stride.cpp │ │ │ ├── Map_inner_stride.cpp │ │ │ ├── Map_outer_stride.cpp │ │ │ ├── Map_placement_new.cpp │ │ │ ├── Map_simple.cpp │ │ │ ├── MatrixBase_adjoint.cpp │ │ │ ├── MatrixBase_all.cpp │ │ │ ├── MatrixBase_applyOnTheLeft.cpp │ │ │ ├── MatrixBase_applyOnTheRight.cpp │ │ │ ├── MatrixBase_array.cpp │ │ │ ├── MatrixBase_array_const.cpp │ │ │ ├── MatrixBase_asDiagonal.cpp │ │ │ ├── MatrixBase_block_int_int.cpp │ │ │ ├── MatrixBase_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_bottomRows_int.cpp │ │ │ ├── MatrixBase_cast.cpp │ │ │ ├── MatrixBase_col.cpp │ │ │ ├── MatrixBase_colwise.cpp │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ ├── MatrixBase_cwiseEqual.cpp │ │ │ ├── MatrixBase_cwiseInverse.cpp │ │ │ ├── MatrixBase_cwiseMax.cpp │ │ │ ├── MatrixBase_cwiseMin.cpp │ │ │ ├── MatrixBase_cwiseNotEqual.cpp │ │ │ ├── MatrixBase_cwiseProduct.cpp │ │ │ ├── MatrixBase_cwiseQuotient.cpp │ │ │ ├── MatrixBase_cwiseSign.cpp │ │ │ ├── MatrixBase_cwiseSqrt.cpp │ │ │ ├── MatrixBase_diagonal.cpp │ │ │ ├── MatrixBase_diagonal_int.cpp │ │ │ ├── MatrixBase_diagonal_template_int.cpp │ │ │ ├── MatrixBase_eigenvalues.cpp │ │ │ ├── MatrixBase_end_int.cpp │ │ │ ├── MatrixBase_eval.cpp │ │ │ ├── MatrixBase_fixedBlock_int_int.cpp │ │ │ ├── MatrixBase_hnormalized.cpp │ │ │ ├── MatrixBase_homogeneous.cpp │ │ │ ├── MatrixBase_identity.cpp │ │ │ ├── MatrixBase_identity_int_int.cpp │ │ │ ├── MatrixBase_inverse.cpp │ │ │ ├── MatrixBase_isDiagonal.cpp │ │ │ ├── MatrixBase_isIdentity.cpp │ │ │ ├── MatrixBase_isOnes.cpp │ │ │ ├── MatrixBase_isOrthogonal.cpp │ │ │ ├── MatrixBase_isUnitary.cpp │ │ │ ├── MatrixBase_isZero.cpp │ │ │ ├── MatrixBase_leftCols_int.cpp │ │ │ ├── MatrixBase_noalias.cpp │ │ │ ├── MatrixBase_ones.cpp │ │ │ ├── MatrixBase_ones_int.cpp │ │ │ ├── MatrixBase_ones_int_int.cpp │ │ │ ├── MatrixBase_operatorNorm.cpp │ │ │ ├── MatrixBase_prod.cpp │ │ │ ├── MatrixBase_random.cpp │ │ │ ├── MatrixBase_random_int.cpp │ │ │ ├── MatrixBase_random_int_int.cpp │ │ │ ├── MatrixBase_replicate.cpp │ │ │ ├── MatrixBase_replicate_int_int.cpp │ │ │ ├── MatrixBase_reverse.cpp │ │ │ ├── MatrixBase_rightCols_int.cpp │ │ │ ├── MatrixBase_row.cpp │ │ │ ├── MatrixBase_rowwise.cpp │ │ │ ├── MatrixBase_segment_int_int.cpp │ │ │ ├── MatrixBase_select.cpp │ │ │ ├── MatrixBase_selfadjointView.cpp │ │ │ ├── MatrixBase_set.cpp │ │ │ ├── MatrixBase_setIdentity.cpp │ │ │ ├── MatrixBase_setOnes.cpp │ │ │ ├── MatrixBase_setRandom.cpp │ │ │ ├── MatrixBase_setZero.cpp │ │ │ ├── MatrixBase_start_int.cpp │ │ │ ├── MatrixBase_template_int_bottomRows.cpp │ │ │ ├── MatrixBase_template_int_end.cpp │ │ │ ├── MatrixBase_template_int_int_block_int_int_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_bottomRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner.cpp │ │ │ ├── MatrixBase_template_int_int_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_template_int_leftCols.cpp │ │ │ ├── MatrixBase_template_int_rightCols.cpp │ │ │ ├── MatrixBase_template_int_segment.cpp │ │ │ ├── MatrixBase_template_int_start.cpp │ │ │ ├── MatrixBase_template_int_topRows.cpp │ │ │ ├── MatrixBase_topLeftCorner_int_int.cpp │ │ │ ├── MatrixBase_topRightCorner_int_int.cpp │ │ │ ├── MatrixBase_topRows_int.cpp │ │ │ ├── MatrixBase_transpose.cpp │ │ │ ├── MatrixBase_triangularView.cpp │ │ │ ├── MatrixBase_zero.cpp │ │ │ ├── MatrixBase_zero_int.cpp │ │ │ ├── MatrixBase_zero_int_int.cpp │ │ │ ├── Matrix_Map_stride.cpp │ │ │ ├── Matrix_resize_NoChange_int.cpp │ │ │ ├── Matrix_resize_int.cpp │ │ │ ├── Matrix_resize_int_NoChange.cpp │ │ │ ├── Matrix_resize_int_int.cpp │ │ │ ├── Matrix_setConstant_int.cpp │ │ │ ├── Matrix_setConstant_int_int.cpp │ │ │ ├── Matrix_setIdentity_int_int.cpp │ │ │ ├── Matrix_setOnes_int.cpp │ │ │ ├── Matrix_setOnes_int_int.cpp │ │ │ ├── Matrix_setRandom_int.cpp │ │ │ ├── Matrix_setRandom_int_int.cpp │ │ │ ├── Matrix_setZero_int.cpp │ │ │ ├── Matrix_setZero_int_int.cpp │ │ │ ├── PartialPivLU_solve.cpp │ │ │ ├── PartialRedux_count.cpp │ │ │ ├── PartialRedux_maxCoeff.cpp │ │ │ ├── PartialRedux_minCoeff.cpp │ │ │ ├── PartialRedux_norm.cpp │ │ │ ├── PartialRedux_prod.cpp │ │ │ ├── PartialRedux_squaredNorm.cpp │ │ │ ├── PartialRedux_sum.cpp │ │ │ ├── RealQZ_compute.cpp │ │ │ ├── RealSchur_RealSchur_MatrixType.cpp │ │ │ ├── RealSchur_compute.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType.cpp │ │ │ ├── SelfAdjointEigenSolver_compute_MatrixType2.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvalues.cpp │ │ │ ├── SelfAdjointEigenSolver_eigenvectors.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorInverseSqrt.cpp │ │ │ ├── SelfAdjointEigenSolver_operatorSqrt.cpp │ │ │ ├── SelfAdjointView_eigenvalues.cpp │ │ │ ├── SelfAdjointView_operatorNorm.cpp │ │ │ ├── SparseMatrix_coeffs.cpp │ │ │ ├── TopicAliasing_block.cpp │ │ │ ├── TopicAliasing_block_correct.cpp │ │ │ ├── TopicAliasing_cwise.cpp │ │ │ ├── TopicAliasing_mult1.cpp │ │ │ ├── TopicAliasing_mult2.cpp │ │ │ ├── TopicAliasing_mult3.cpp │ │ │ ├── TopicAliasing_mult4.cpp │ │ │ ├── TopicAliasing_mult5.cpp │ │ │ ├── TopicStorageOrders_example.cpp │ │ │ ├── Triangular_solve.cpp │ │ │ ├── Tridiagonalization_Tridiagonalization_MatrixType.cpp │ │ │ ├── Tridiagonalization_compute.cpp │ │ │ ├── Tridiagonalization_decomposeInPlace.cpp │ │ │ ├── Tridiagonalization_diagonal.cpp │ │ │ ├── Tridiagonalization_householderCoefficients.cpp │ │ │ ├── Tridiagonalization_packedMatrix.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Block.cpp │ │ │ ├── Tutorial_AdvancedInitialization_CommaTemporary.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Join.cpp │ │ │ ├── Tutorial_AdvancedInitialization_LinSpaced.cpp │ │ │ ├── Tutorial_AdvancedInitialization_ThreeWays.cpp │ │ │ ├── Tutorial_AdvancedInitialization_Zero.cpp │ │ │ ├── Tutorial_Map_rowmajor.cpp │ │ │ ├── Tutorial_Map_using.cpp │ │ │ ├── Tutorial_ReshapeMat2Mat.cpp │ │ │ ├── Tutorial_ReshapeMat2Vec.cpp │ │ │ ├── Tutorial_SlicingCol.cpp │ │ │ ├── Tutorial_SlicingVec.cpp │ │ │ ├── Tutorial_commainit_01.cpp │ │ │ ├── Tutorial_commainit_01b.cpp │ │ │ ├── Tutorial_commainit_02.cpp │ │ │ ├── Tutorial_solve_matrix_inverse.cpp │ │ │ ├── Tutorial_solve_multiple_rhs.cpp │ │ │ ├── Tutorial_solve_reuse_decomposition.cpp │ │ │ ├── Tutorial_solve_singular.cpp │ │ │ ├── Tutorial_solve_triangular.cpp │ │ │ ├── Tutorial_solve_triangular_inplace.cpp │ │ │ ├── VectorwiseOp_homogeneous.cpp │ │ │ ├── Vectorwise_reverse.cpp │ │ │ ├── class_FullPivLU.cpp │ │ │ ├── compile_snippet.cpp.in │ │ │ ├── tut_arithmetic_redux_minmax.cpp │ │ │ ├── tut_arithmetic_transpose_aliasing.cpp │ │ │ ├── tut_arithmetic_transpose_conjugate.cpp │ │ │ ├── tut_arithmetic_transpose_inplace.cpp │ │ │ └── tut_matrix_assignment_resizing.cpp │ │ ├── special_examples │ │ │ ├── CMakeLists.txt │ │ │ ├── Tutorial_sparse_example.cpp │ │ │ ├── Tutorial_sparse_example_details.cpp │ │ │ └── random_cpp11.cpp │ │ └── tutorial.cpp │ ├── eigen3.pc.in │ ├── failtest │ │ ├── CMakeLists.txt │ │ ├── bdcsvd_int.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_0.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_1.cpp │ │ ├── block_nonconst_ctor_on_const_xpr_2.cpp │ │ ├── block_on_const_type_actually_const_0.cpp │ │ ├── block_on_const_type_actually_const_1.cpp │ │ ├── colpivqr_int.cpp │ │ ├── const_qualified_block_method_retval_0.cpp │ │ ├── const_qualified_block_method_retval_1.cpp │ │ ├── const_qualified_diagonal_method_retval.cpp │ │ ├── const_qualified_transpose_method_retval.cpp │ │ ├── cwiseunaryview_nonconst_ctor_on_const_xpr.cpp │ │ ├── cwiseunaryview_on_const_type_actually_const.cpp │ │ ├── diagonal_nonconst_ctor_on_const_xpr.cpp │ │ ├── diagonal_on_const_type_actually_const.cpp │ │ ├── eigensolver_cplx.cpp │ │ ├── eigensolver_int.cpp │ │ ├── failtest_sanity_check.cpp │ │ ├── fullpivlu_int.cpp │ │ ├── fullpivqr_int.cpp │ │ ├── jacobisvd_int.cpp │ │ ├── ldlt_int.cpp │ │ ├── llt_int.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_0.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_1.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_2.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_3.cpp │ │ ├── map_nonconst_ctor_on_const_ptr_4.cpp │ │ ├── map_on_const_type_actually_const_0.cpp │ │ ├── map_on_const_type_actually_const_1.cpp │ │ ├── partialpivlu_int.cpp │ │ ├── qr_int.cpp │ │ ├── ref_1.cpp │ │ ├── ref_2.cpp │ │ ├── ref_3.cpp │ │ ├── ref_4.cpp │ │ ├── ref_5.cpp │ │ ├── selfadjointview_nonconst_ctor_on_const_xpr.cpp │ │ ├── selfadjointview_on_const_type_actually_const.cpp │ │ ├── sparse_ref_1.cpp │ │ ├── sparse_ref_2.cpp │ │ ├── sparse_ref_3.cpp │ │ ├── sparse_ref_4.cpp │ │ ├── sparse_ref_5.cpp │ │ ├── sparse_storage_mismatch.cpp │ │ ├── swap_1.cpp │ │ ├── swap_2.cpp │ │ ├── ternary_1.cpp │ │ ├── ternary_2.cpp │ │ ├── transpose_nonconst_ctor_on_const_xpr.cpp │ │ ├── transpose_on_const_type_actually_const.cpp │ │ ├── triangularview_nonconst_ctor_on_const_xpr.cpp │ │ └── triangularview_on_const_type_actually_const.cpp │ ├── lapack │ │ ├── CMakeLists.txt │ │ ├── cholesky.cpp │ │ ├── clacgv.f │ │ ├── cladiv.f │ │ ├── clarf.f │ │ ├── clarfb.f │ │ ├── clarfg.f │ │ ├── clarft.f │ │ ├── complex_double.cpp │ │ ├── complex_single.cpp │ │ ├── dladiv.f │ │ ├── dlamch.f │ │ ├── dlapy2.f │ │ ├── dlapy3.f │ │ ├── dlarf.f │ │ ├── dlarfb.f │ │ ├── dlarfg.f │ │ ├── dlarft.f │ │ ├── double.cpp │ │ ├── dsecnd_NONE.f │ │ ├── eigenvalues.cpp │ │ ├── ilaclc.f │ │ ├── ilaclr.f │ │ ├── iladlc.f │ │ ├── iladlr.f │ │ ├── ilaslc.f │ │ ├── ilaslr.f │ │ ├── ilazlc.f │ │ ├── ilazlr.f │ │ ├── lapack_common.h │ │ ├── lu.cpp │ │ ├── second_NONE.f │ │ ├── single.cpp │ │ ├── sladiv.f │ │ ├── slamch.f │ │ ├── slapy2.f │ │ ├── slapy3.f │ │ ├── slarf.f │ │ ├── slarfb.f │ │ ├── slarfg.f │ │ ├── slarft.f │ │ ├── svd.cpp │ │ ├── zlacgv.f │ │ ├── zladiv.f │ │ ├── zlarf.f │ │ ├── zlarfb.f │ │ ├── zlarfg.f │ │ └── zlarft.f │ ├── scripts │ │ ├── CMakeLists.txt │ │ ├── buildtests.in │ │ ├── cdashtesting.cmake.in │ │ ├── check.in │ │ ├── debug.in │ │ ├── eigen_gen_credits.cpp │ │ ├── eigen_gen_docs │ │ ├── release.in │ │ └── relicense.py │ ├── signature_of_eigen3_matrix_library │ ├── test │ │ ├── CMakeLists.txt │ │ ├── adjoint.cpp │ │ ├── array.cpp │ │ ├── array_for_matrix.cpp │ │ ├── array_of_string.cpp │ │ ├── array_replicate.cpp │ │ ├── array_reverse.cpp │ │ ├── bandmatrix.cpp │ │ ├── basicstuff.cpp │ │ ├── bdcsvd.cpp │ │ ├── bicgstab.cpp │ │ ├── block.cpp │ │ ├── boostmultiprec.cpp │ │ ├── bug1213.cpp │ │ ├── bug1213.h │ │ ├── bug1213_main.cpp │ │ ├── cholesky.cpp │ │ ├── cholmod_support.cpp │ │ ├── commainitializer.cpp │ │ ├── conjugate_gradient.cpp │ │ ├── conservative_resize.cpp │ │ ├── constructor.cpp │ │ ├── corners.cpp │ │ ├── ctorleak.cpp │ │ ├── cuda_basic.cu │ │ ├── cuda_common.h │ │ ├── denseLM.cpp │ │ ├── dense_storage.cpp │ │ ├── determinant.cpp │ │ ├── diagonal.cpp │ │ ├── diagonalmatrices.cpp │ │ ├── dontalign.cpp │ │ ├── dynalloc.cpp │ │ ├── eigen2support.cpp │ │ ├── eigensolver_complex.cpp │ │ ├── eigensolver_generalized_real.cpp │ │ ├── eigensolver_generic.cpp │ │ ├── eigensolver_selfadjoint.cpp │ │ ├── evaluator_common.h │ │ ├── evaluators.cpp │ │ ├── exceptions.cpp │ │ ├── fastmath.cpp │ │ ├── first_aligned.cpp │ │ ├── geo_alignedbox.cpp │ │ ├── geo_eulerangles.cpp │ │ ├── geo_homogeneous.cpp │ │ ├── geo_hyperplane.cpp │ │ ├── geo_orthomethods.cpp │ │ ├── geo_parametrizedline.cpp │ │ ├── geo_quaternion.cpp │ │ ├── geo_transformations.cpp │ │ ├── half_float.cpp │ │ ├── hessenberg.cpp │ │ ├── householder.cpp │ │ ├── incomplete_cholesky.cpp │ │ ├── inplace_decomposition.cpp │ │ ├── integer_types.cpp │ │ ├── inverse.cpp │ │ ├── is_same_dense.cpp │ │ ├── jacobi.cpp │ │ ├── jacobisvd.cpp │ │ ├── linearstructure.cpp │ │ ├── lscg.cpp │ │ ├── lu.cpp │ │ ├── main.h │ │ ├── mapped_matrix.cpp │ │ ├── mapstaticmethods.cpp │ │ ├── mapstride.cpp │ │ ├── meta.cpp │ │ ├── metis_support.cpp │ │ ├── miscmatrices.cpp │ │ ├── mixingtypes.cpp │ │ ├── mpl2only.cpp │ │ ├── nesting_ops.cpp │ │ ├── nomalloc.cpp │ │ ├── nullary.cpp │ │ ├── numext.cpp │ │ ├── packetmath.cpp │ │ ├── pardiso_support.cpp │ │ ├── pastix_support.cpp │ │ ├── permutationmatrices.cpp │ │ ├── prec_inverse_4x4.cpp │ │ ├── product.h │ │ ├── product_extra.cpp │ │ ├── product_large.cpp │ │ ├── product_mmtr.cpp │ │ ├── product_notemporary.cpp │ │ ├── product_selfadjoint.cpp │ │ ├── product_small.cpp │ │ ├── product_symm.cpp │ │ ├── product_syrk.cpp │ │ ├── product_trmm.cpp │ │ ├── product_trmv.cpp │ │ ├── product_trsolve.cpp │ │ ├── qr.cpp │ │ ├── qr_colpivoting.cpp │ │ ├── qr_fullpivoting.cpp │ │ ├── qtvector.cpp │ │ ├── rand.cpp │ │ ├── real_qz.cpp │ │ ├── redux.cpp │ │ ├── ref.cpp │ │ ├── resize.cpp │ │ ├── rvalue_types.cpp │ │ ├── schur_complex.cpp │ │ ├── schur_real.cpp │ │ ├── selfadjoint.cpp │ │ ├── simplicial_cholesky.cpp │ │ ├── sizeof.cpp │ │ ├── sizeoverflow.cpp │ │ ├── smallvectors.cpp │ │ ├── sparse.h │ │ ├── sparseLM.cpp │ │ ├── sparse_basic.cpp │ │ ├── sparse_block.cpp │ │ ├── sparse_permutations.cpp │ │ ├── sparse_product.cpp │ │ ├── sparse_ref.cpp │ │ ├── sparse_solver.h │ │ ├── sparse_solvers.cpp │ │ ├── sparse_vector.cpp │ │ ├── sparselu.cpp │ │ ├── sparseqr.cpp │ │ ├── special_numbers.cpp │ │ ├── spqr_support.cpp │ │ ├── stable_norm.cpp │ │ ├── stddeque.cpp │ │ ├── stddeque_overload.cpp │ │ ├── stdlist.cpp │ │ ├── stdlist_overload.cpp │ │ ├── stdvector.cpp │ │ ├── stdvector_overload.cpp │ │ ├── superlu_support.cpp │ │ ├── svd_common.h │ │ ├── svd_fill.h │ │ ├── swap.cpp │ │ ├── triangular.cpp │ │ ├── umeyama.cpp │ │ ├── umfpack_support.cpp │ │ ├── unalignedassert.cpp │ │ ├── unalignedcount.cpp │ │ ├── upperbidiagonalization.cpp │ │ ├── vectorization_logic.cpp │ │ ├── vectorwiseop.cpp │ │ ├── visitor.cpp │ │ └── zerosized.cpp │ └── unsupported │ │ ├── CMakeLists.txt │ │ ├── Eigen │ │ ├── AdolcForward │ │ ├── AlignedVector3 │ │ ├── ArpackSupport │ │ ├── AutoDiff │ │ ├── BVH │ │ ├── CMakeLists.txt │ │ ├── CXX11 │ │ │ ├── CMakeLists.txt │ │ │ ├── Tensor │ │ │ ├── TensorSymmetry │ │ │ ├── ThreadPool │ │ │ └── src │ │ │ │ ├── Tensor │ │ │ │ ├── README.md │ │ │ │ ├── Tensor.h │ │ │ │ ├── TensorArgMax.h │ │ │ │ ├── TensorAssign.h │ │ │ │ ├── TensorBase.h │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ ├── TensorChipping.h │ │ │ │ ├── TensorConcatenation.h │ │ │ │ ├── TensorContraction.h │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ ├── TensorConversion.h │ │ │ │ ├── TensorConvolution.h │ │ │ │ ├── TensorCostModel.h │ │ │ │ ├── TensorCustomOp.h │ │ │ │ ├── TensorDevice.h │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ ├── TensorDeviceSycl.h │ │ │ │ ├── TensorDeviceThreadPool.h │ │ │ │ ├── TensorDimensionList.h │ │ │ │ ├── TensorDimensions.h │ │ │ │ ├── TensorEvalTo.h │ │ │ │ ├── TensorEvaluator.h │ │ │ │ ├── TensorExecutor.h │ │ │ │ ├── TensorExpr.h │ │ │ │ ├── TensorFFT.h │ │ │ │ ├── TensorFixedSize.h │ │ │ │ ├── TensorForcedEval.h │ │ │ │ ├── TensorForwardDeclarations.h │ │ │ │ ├── TensorFunctors.h │ │ │ │ ├── TensorGenerator.h │ │ │ │ ├── TensorGlobalFunctions.h │ │ │ │ ├── TensorIO.h │ │ │ │ ├── TensorImagePatch.h │ │ │ │ ├── TensorIndexList.h │ │ │ │ ├── TensorInflation.h │ │ │ │ ├── TensorInitializer.h │ │ │ │ ├── TensorIntDiv.h │ │ │ │ ├── TensorLayoutSwap.h │ │ │ │ ├── TensorMacros.h │ │ │ │ ├── TensorMap.h │ │ │ │ ├── TensorMeta.h │ │ │ │ ├── TensorMorphing.h │ │ │ │ ├── TensorPadding.h │ │ │ │ ├── TensorPatch.h │ │ │ │ ├── TensorRandom.h │ │ │ │ ├── TensorReduction.h │ │ │ │ ├── TensorReductionCuda.h │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ ├── TensorRef.h │ │ │ │ ├── TensorReverse.h │ │ │ │ ├── TensorScan.h │ │ │ │ ├── TensorShuffling.h │ │ │ │ ├── TensorStorage.h │ │ │ │ ├── TensorStriding.h │ │ │ │ ├── TensorSycl.h │ │ │ │ ├── TensorSyclConvertToDeviceExpression.h │ │ │ │ ├── TensorSyclExprConstructor.h │ │ │ │ ├── TensorSyclExtractAccessor.h │ │ │ │ ├── TensorSyclExtractFunctors.h │ │ │ │ ├── TensorSyclLeafCount.h │ │ │ │ ├── TensorSyclPlaceHolderExpr.h │ │ │ │ ├── TensorSyclRun.h │ │ │ │ ├── TensorSyclTuple.h │ │ │ │ ├── TensorTraits.h │ │ │ │ ├── TensorUInt128.h │ │ │ │ └── TensorVolumePatch.h │ │ │ │ ├── TensorSymmetry │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ ├── StaticSymmetry.h │ │ │ │ ├── Symmetry.h │ │ │ │ └── util │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ ├── ThreadPool │ │ │ │ ├── EventCount.h │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ ├── RunQueue.h │ │ │ │ ├── SimpleThreadPool.h │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ ├── ThreadLocal.h │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ └── ThreadYield.h │ │ │ │ └── util │ │ │ │ ├── CXX11Meta.h │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ ├── EmulateArray.h │ │ │ │ ├── EmulateCXX11Meta.h │ │ │ │ └── MaxSizeVector.h │ │ ├── EulerAngles │ │ ├── FFT │ │ ├── IterativeSolvers │ │ ├── KroneckerProduct │ │ ├── LevenbergMarquardt │ │ ├── MPRealSupport │ │ ├── MatrixFunctions │ │ ├── MoreVectorization │ │ ├── NonLinearOptimization │ │ ├── NumericalDiff │ │ ├── OpenGLSupport │ │ ├── Polynomials │ │ ├── Skyline │ │ ├── SparseExtra │ │ ├── SpecialFunctions │ │ ├── Splines │ │ └── src │ │ │ ├── AutoDiff │ │ │ ├── AutoDiffJacobian.h │ │ │ ├── AutoDiffScalar.h │ │ │ └── AutoDiffVector.h │ │ │ ├── BVH │ │ │ ├── BVAlgorithms.h │ │ │ └── KdBVH.h │ │ │ ├── Eigenvalues │ │ │ └── ArpackSelfAdjointEigenSolver.h │ │ │ ├── EulerAngles │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.h │ │ │ └── EulerSystem.h │ │ │ ├── FFT │ │ │ ├── ei_fftw_impl.h │ │ │ └── ei_kissfft_impl.h │ │ │ ├── IterativeSolvers │ │ │ ├── ConstrainedConjGrad.h │ │ │ ├── DGMRES.h │ │ │ ├── GMRES.h │ │ │ ├── IncompleteLU.h │ │ │ ├── IterationController.h │ │ │ ├── MINRES.h │ │ │ └── Scaling.h │ │ │ ├── KroneckerProduct │ │ │ └── KroneckerTensorProduct.h │ │ │ ├── LevenbergMarquardt │ │ │ ├── CopyrightMINPACK.txt │ │ │ ├── LMcovar.h │ │ │ ├── LMonestep.h │ │ │ ├── LMpar.h │ │ │ ├── LMqrsolv.h │ │ │ └── LevenbergMarquardt.h │ │ │ ├── MatrixFunctions │ │ │ ├── MatrixExponential.h │ │ │ ├── MatrixFunction.h │ │ │ ├── MatrixLogarithm.h │ │ │ ├── MatrixPower.h │ │ │ ├── MatrixSquareRoot.h │ │ │ └── StemFunction.h │ │ │ ├── MoreVectorization │ │ │ └── MathFunctions.h │ │ │ ├── NonLinearOptimization │ │ │ ├── HybridNonLinearSolver.h │ │ │ ├── LevenbergMarquardt.h │ │ │ ├── chkder.h │ │ │ ├── covar.h │ │ │ ├── dogleg.h │ │ │ ├── fdjac1.h │ │ │ ├── lmpar.h │ │ │ ├── qrsolv.h │ │ │ ├── r1mpyq.h │ │ │ ├── r1updt.h │ │ │ └── rwupdt.h │ │ │ ├── NumericalDiff │ │ │ └── NumericalDiff.h │ │ │ ├── Polynomials │ │ │ ├── Companion.h │ │ │ ├── PolynomialSolver.h │ │ │ └── PolynomialUtils.h │ │ │ ├── Skyline │ │ │ ├── SkylineInplaceLU.h │ │ │ ├── SkylineMatrix.h │ │ │ ├── SkylineMatrixBase.h │ │ │ ├── SkylineProduct.h │ │ │ ├── SkylineStorage.h │ │ │ └── SkylineUtil.h │ │ │ ├── SparseExtra │ │ │ ├── BlockOfDynamicSparseMatrix.h │ │ │ ├── BlockSparseMatrix.h │ │ │ ├── DynamicSparseMatrix.h │ │ │ ├── MarketIO.h │ │ │ ├── MatrixMarketIterator.h │ │ │ └── RandomSetter.h │ │ │ ├── SpecialFunctions │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ ├── SpecialFunctionsHalf.h │ │ │ ├── SpecialFunctionsImpl.h │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ └── arch │ │ │ │ └── CUDA │ │ │ │ └── CudaSpecialFunctions.h │ │ │ └── Splines │ │ │ ├── Spline.h │ │ │ ├── SplineFitting.h │ │ │ └── SplineFwd.h │ │ ├── README.txt │ │ ├── bench │ │ └── bench_svd.cpp │ │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Overview.dox │ │ ├── eigendoxy_layout.xml.in │ │ ├── examples │ │ │ ├── BVH_Example.cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── EulerAngles.cpp │ │ │ ├── FFT.cpp │ │ │ ├── MatrixExponential.cpp │ │ │ ├── MatrixFunction.cpp │ │ │ ├── MatrixLogarithm.cpp │ │ │ ├── MatrixPower.cpp │ │ │ ├── MatrixPower_optimal.cpp │ │ │ ├── MatrixSine.cpp │ │ │ ├── MatrixSinh.cpp │ │ │ ├── MatrixSquareRoot.cpp │ │ │ ├── PolynomialSolver1.cpp │ │ │ └── PolynomialUtils1.cpp │ │ └── snippets │ │ │ └── CMakeLists.txt │ │ └── test │ │ ├── BVH.cpp │ │ ├── CMakeLists.txt │ │ ├── EulerAngles.cpp │ │ ├── FFT.cpp │ │ ├── FFTW.cpp │ │ ├── NonLinearOptimization.cpp │ │ ├── NumericalDiff.cpp │ │ ├── alignedvector3.cpp │ │ ├── autodiff.cpp │ │ ├── autodiff_scalar.cpp │ │ ├── cxx11_eventcount.cpp │ │ ├── cxx11_meta.cpp │ │ ├── cxx11_non_blocking_thread_pool.cpp │ │ ├── cxx11_runqueue.cpp │ │ ├── cxx11_tensor_argmax.cpp │ │ ├── cxx11_tensor_argmax_cuda.cu │ │ ├── cxx11_tensor_assign.cpp │ │ ├── cxx11_tensor_broadcast_sycl.cpp │ │ ├── cxx11_tensor_broadcasting.cpp │ │ ├── cxx11_tensor_cast_float16_cuda.cu │ │ ├── cxx11_tensor_casts.cpp │ │ ├── cxx11_tensor_chipping.cpp │ │ ├── cxx11_tensor_comparisons.cpp │ │ ├── cxx11_tensor_complex_cuda.cu │ │ ├── cxx11_tensor_complex_cwise_ops_cuda.cu │ │ ├── cxx11_tensor_concatenation.cpp │ │ ├── cxx11_tensor_const.cpp │ │ ├── cxx11_tensor_contract_cuda.cu │ │ ├── cxx11_tensor_contraction.cpp │ │ ├── cxx11_tensor_convolution.cpp │ │ ├── cxx11_tensor_cuda.cu │ │ ├── cxx11_tensor_custom_index.cpp │ │ ├── cxx11_tensor_custom_op.cpp │ │ ├── cxx11_tensor_device.cu │ │ ├── cxx11_tensor_device_sycl.cpp │ │ ├── cxx11_tensor_dimension.cpp │ │ ├── cxx11_tensor_empty.cpp │ │ ├── cxx11_tensor_expr.cpp │ │ ├── cxx11_tensor_fft.cpp │ │ ├── cxx11_tensor_fixed_size.cpp │ │ ├── cxx11_tensor_forced_eval.cpp │ │ ├── cxx11_tensor_forced_eval_sycl.cpp │ │ ├── cxx11_tensor_generator.cpp │ │ ├── cxx11_tensor_ifft.cpp │ │ ├── cxx11_tensor_image_patch.cpp │ │ ├── cxx11_tensor_index_list.cpp │ │ ├── cxx11_tensor_inflation.cpp │ │ ├── cxx11_tensor_intdiv.cpp │ │ ├── cxx11_tensor_io.cpp │ │ ├── cxx11_tensor_layout_swap.cpp │ │ ├── cxx11_tensor_lvalue.cpp │ │ ├── cxx11_tensor_map.cpp │ │ ├── cxx11_tensor_math.cpp │ │ ├── cxx11_tensor_mixed_indices.cpp │ │ ├── cxx11_tensor_morphing.cpp │ │ ├── cxx11_tensor_notification.cpp │ │ ├── cxx11_tensor_of_complex.cpp │ │ ├── cxx11_tensor_of_const_values.cpp │ │ ├── cxx11_tensor_of_float16_cuda.cu │ │ ├── cxx11_tensor_of_strings.cpp │ │ ├── cxx11_tensor_padding.cpp │ │ ├── cxx11_tensor_patch.cpp │ │ ├── cxx11_tensor_random.cpp │ │ ├── cxx11_tensor_random_cuda.cu │ │ ├── cxx11_tensor_reduction.cpp │ │ ├── cxx11_tensor_reduction_cuda.cu │ │ ├── cxx11_tensor_reduction_sycl.cpp │ │ ├── cxx11_tensor_ref.cpp │ │ ├── cxx11_tensor_reverse.cpp │ │ ├── cxx11_tensor_roundings.cpp │ │ ├── cxx11_tensor_scan.cpp │ │ ├── cxx11_tensor_scan_cuda.cu │ │ ├── cxx11_tensor_shuffling.cpp │ │ ├── cxx11_tensor_simple.cpp │ │ ├── cxx11_tensor_striding.cpp │ │ ├── cxx11_tensor_sugar.cpp │ │ ├── cxx11_tensor_sycl.cpp │ │ ├── cxx11_tensor_symmetry.cpp │ │ ├── cxx11_tensor_thread_pool.cpp │ │ ├── cxx11_tensor_uint128.cpp │ │ ├── cxx11_tensor_volume_patch.cpp │ │ ├── dgmres.cpp │ │ ├── forward_adolc.cpp │ │ ├── gmres.cpp │ │ ├── kronecker_product.cpp │ │ ├── levenberg_marquardt.cpp │ │ ├── matrix_exponential.cpp │ │ ├── matrix_function.cpp │ │ ├── matrix_functions.h │ │ ├── matrix_power.cpp │ │ ├── matrix_square_root.cpp │ │ ├── minres.cpp │ │ ├── mpreal │ │ └── mpreal.h │ │ ├── mpreal_support.cpp │ │ ├── openglsupport.cpp │ │ ├── polynomialsolver.cpp │ │ ├── polynomialutils.cpp │ │ ├── sparse_extra.cpp │ │ ├── special_functions.cpp │ │ └── splines.cpp ├── freeglut │ ├── .gitignore │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── README │ ├── README.android │ ├── README.blackberry │ ├── README.cmake │ ├── README.cygwin_mingw │ ├── README.mingw_cross │ ├── README.win32 │ ├── android │ │ ├── Android.mk │ │ └── README │ ├── android_toolchain.cmake │ ├── blackberry.toolchain.cmake │ ├── config.h.in │ ├── doc │ │ ├── download.html │ │ ├── freeglut.html │ │ ├── freeglut_logo.png │ │ ├── freeglut_user_interface.html │ │ ├── index.html │ │ ├── ogl_sm.png │ │ ├── progress.html │ │ └── structure.html │ ├── freeglut.pc.in │ ├── freeglut.rc.in │ ├── include │ │ └── GL │ │ │ ├── freeglut.h │ │ │ ├── freeglut_ext.h │ │ │ ├── freeglut_std.h │ │ │ └── glut.h │ ├── mingw_cross_toolchain.cmake │ ├── progs │ │ ├── demos │ │ │ ├── CallbackMaker │ │ │ │ └── CallbackMaker.c │ │ │ ├── Fractals │ │ │ │ ├── fractals.c │ │ │ │ └── fractals.dat │ │ │ ├── Fractals_random │ │ │ │ ├── fractals.dat │ │ │ │ └── fractals_random.c │ │ │ ├── Lorenz │ │ │ │ └── lorenz.c │ │ │ ├── One │ │ │ │ ├── objects.ico │ │ │ │ ├── one.c │ │ │ │ └── one.rc │ │ │ ├── Resizer │ │ │ │ └── Resizer.cpp │ │ │ ├── init_error_func │ │ │ │ └── init_error_func.c │ │ │ ├── multi-touch │ │ │ │ └── multi-touch.c │ │ │ ├── shapes │ │ │ │ ├── glmatrix.c │ │ │ │ ├── glmatrix.h │ │ │ │ └── shapes.c │ │ │ ├── smooth_opengl3 │ │ │ │ └── smooth_opengl3.c │ │ │ ├── spaceball │ │ │ │ ├── spaceball.c │ │ │ │ ├── vmath.c │ │ │ │ ├── vmath.h │ │ │ │ └── vmath.inl │ │ │ ├── subwin │ │ │ │ └── subwin.c │ │ │ └── timer │ │ │ │ └── timer.c │ │ └── test-shapes-gles1 │ │ │ ├── AndroidManifest.xml │ │ │ ├── CMakeLists.txt │ │ │ ├── android_toolchain.cmake │ │ │ ├── ndk │ │ │ ├── AndroidManifest.xml │ │ │ └── jni │ │ │ │ ├── Android.mk │ │ │ │ └── Application.mk │ │ │ └── test-shapes-gles1.c │ └── src │ │ ├── android │ │ ├── fg_cursor_android.c │ │ ├── fg_ext_android.c │ │ ├── fg_gamemode_android.c │ │ ├── fg_init_android.c │ │ ├── fg_input_devices_android.c │ │ ├── fg_internal_android.h │ │ ├── fg_joystick_android.c │ │ ├── fg_main_android.c │ │ ├── fg_main_android.h │ │ ├── fg_runtime_android.c │ │ ├── fg_spaceball_android.c │ │ ├── fg_state_android.c │ │ ├── fg_structure_android.c │ │ ├── fg_window_android.c │ │ └── native_app_glue │ │ │ ├── README │ │ │ ├── android_native_app_glue.c │ │ │ └── android_native_app_glue.h │ │ ├── blackberry │ │ ├── fg_init_blackberry.c │ │ ├── fg_internal_blackberry.h │ │ ├── fg_main_blackberry.c │ │ ├── fg_state_blackberry.c │ │ ├── fg_structure_blackberry.c │ │ └── fg_window_blackberry.c │ │ ├── egl │ │ ├── fg_display_egl.c │ │ ├── fg_ext_egl.c │ │ ├── fg_init_egl.c │ │ ├── fg_init_egl.h │ │ ├── fg_internal_egl.h │ │ ├── fg_state_egl.c │ │ ├── fg_state_egl.h │ │ ├── fg_structure_egl.c │ │ ├── fg_structure_egl.h │ │ ├── fg_window_egl.c │ │ └── fg_window_egl.h │ │ ├── fg_callbacks.c │ │ ├── fg_cursor.c │ │ ├── fg_display.c │ │ ├── fg_ext.c │ │ ├── fg_font.c │ │ ├── fg_font_data.c │ │ ├── fg_gamemode.c │ │ ├── fg_geometry.c │ │ ├── fg_gl2.c │ │ ├── fg_gl2.h │ │ ├── fg_init.c │ │ ├── fg_init.h │ │ ├── fg_input_devices.c │ │ ├── fg_internal.h │ │ ├── fg_joystick.c │ │ ├── fg_main.c │ │ ├── fg_menu.c │ │ ├── fg_misc.c │ │ ├── fg_overlay.c │ │ ├── fg_spaceball.c │ │ ├── fg_state.c │ │ ├── fg_stroke_mono_roman.c │ │ ├── fg_stroke_roman.c │ │ ├── fg_structure.c │ │ ├── fg_teapot.c │ │ ├── fg_teapot_data.h │ │ ├── fg_version.h │ │ ├── fg_version.h.in │ │ ├── fg_videoresize.c │ │ ├── fg_window.c │ │ ├── freeglutdll.def.in │ │ ├── gles_stubs.c │ │ ├── mswin │ │ ├── fg_cursor_mswin.c │ │ ├── fg_display_mswin.c │ │ ├── fg_ext_mswin.c │ │ ├── fg_gamemode_mswin.c │ │ ├── fg_init_mswin.c │ │ ├── fg_input_devices_mswin.c │ │ ├── fg_internal_mswin.h │ │ ├── fg_joystick_mswin.c │ │ ├── fg_main_mswin.c │ │ ├── fg_menu_mswin.c │ │ ├── fg_spaceball_mswin.c │ │ ├── fg_state_mswin.c │ │ ├── fg_structure_mswin.c │ │ └── fg_window_mswin.c │ │ ├── util │ │ ├── xparsegeometry_repl.c │ │ └── xparsegeometry_repl.h │ │ └── x11 │ │ ├── fg_cursor_x11.c │ │ ├── fg_display_x11_glx.c │ │ ├── fg_ext_x11.c │ │ ├── fg_gamemode_x11.c │ │ ├── fg_glutfont_definitions_x11.c │ │ ├── fg_init_x11.c │ │ ├── fg_input_devices_x11.c │ │ ├── fg_internal_x11.h │ │ ├── fg_internal_x11_glx.h │ │ ├── fg_joystick_x11.c │ │ ├── fg_main_x11.c │ │ ├── fg_menu_x11.c │ │ ├── fg_spaceball_x11.c │ │ ├── fg_state_x11.c │ │ ├── fg_state_x11_glx.c │ │ ├── fg_state_x11_glx.h │ │ ├── fg_structure_x11.c │ │ ├── fg_window_x11.c │ │ ├── fg_window_x11_glx.c │ │ ├── fg_window_x11_glx.h │ │ └── fg_xinput_x11.c ├── jsoncpp │ ├── .clang-format │ ├── .clang-tidy │ ├── .gitattributes │ ├── .github │ │ └── ISSUE_TEMPLATE │ │ │ ├── bug_report.md │ │ │ └── feature_request.md │ ├── .gitignore │ ├── .travis.yml │ ├── .travis_scripts │ │ ├── cmake_builder.sh │ │ ├── meson_builder.sh │ │ ├── run-clang-format.py │ │ ├── run-clang-format.sh │ │ ├── travis.before_install.linux.sh │ │ ├── travis.before_install.osx.sh │ │ ├── travis.install.linux.sh │ │ └── travis.install.osx.sh │ ├── AUTHORS │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── CMakeLists.txt.bk │ ├── CONTRIBUTING.md │ ├── CTestConfig.cmake │ ├── LICENSE │ ├── README.md │ ├── amalgamate.py │ ├── appveyor.yml │ ├── cmake │ │ └── JoinPaths.cmake │ ├── dev.makefile │ ├── devtools │ │ ├── __init__.py │ │ ├── agent_vmw7.json │ │ ├── agent_vmxp.json │ │ ├── antglob.py │ │ ├── batchbuild.py │ │ ├── fixeol.py │ │ ├── licenseupdater.py │ │ └── tarball.py │ ├── doc │ │ ├── doxyfile.in │ │ ├── footer.html │ │ ├── header.html │ │ ├── jsoncpp.dox │ │ ├── readme.txt │ │ ├── roadmap.dox │ │ └── web_doxyfile.in │ ├── doxybuild.py │ ├── example │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── readFromStream │ │ │ ├── errorFormat.json │ │ │ ├── readFromStream.cpp │ │ │ └── withComment.json │ │ ├── readFromString │ │ │ └── readFromString.cpp │ │ ├── streamWrite │ │ │ └── streamWrite.cpp │ │ └── stringWrite │ │ │ └── stringWrite.cpp │ ├── get_version.pl │ ├── include │ │ ├── CMakeLists.txt │ │ ├── PreventInBuildInstalls.cmake │ │ ├── PreventInSourceBuilds.cmake │ │ └── json │ │ │ ├── allocator.h │ │ │ ├── assertions.h │ │ │ ├── config.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── json_features.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ ├── version.h │ │ │ └── writer.h │ ├── jsoncpp-namespaced-targets.cmake │ ├── jsoncppConfig.cmake.in │ ├── meson.build │ ├── meson_options.txt │ ├── pkg-config │ │ └── jsoncpp.pc.in │ ├── reformat.sh │ ├── src │ │ ├── CMakeLists.txt │ │ ├── jsontestrunner │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── lib_json │ │ │ ├── CMakeLists.txt │ │ │ ├── json_reader.cpp │ │ │ ├── json_tool.h │ │ │ ├── json_value.cpp │ │ │ ├── json_valueiterator.inl │ │ │ └── json_writer.cpp │ │ └── test_lib_json │ │ │ ├── CMakeLists.txt │ │ │ ├── fuzz.cpp │ │ │ ├── fuzz.dict │ │ │ ├── fuzz.h │ │ │ ├── jsontest.cpp │ │ │ ├── jsontest.h │ │ │ └── main.cpp │ ├── test │ │ ├── cleantests.py │ │ ├── data │ │ │ ├── fail_invalid_quote.json │ │ │ ├── fail_test_array_01.json │ │ │ ├── fail_test_array_02.json │ │ │ ├── fail_test_object_01.json │ │ │ ├── fail_test_stack_limit.json │ │ │ ├── legacy_test_array_01.expected │ │ │ ├── legacy_test_array_01.json │ │ │ ├── legacy_test_array_02.expected │ │ │ ├── legacy_test_array_02.json │ │ │ ├── legacy_test_array_03.expected │ │ │ ├── legacy_test_array_03.json │ │ │ ├── legacy_test_array_04.expected │ │ │ ├── legacy_test_array_04.json │ │ │ ├── legacy_test_array_05.expected │ │ │ ├── legacy_test_array_05.json │ │ │ ├── legacy_test_array_06.expected │ │ │ ├── legacy_test_array_06.json │ │ │ ├── legacy_test_array_07.expected │ │ │ ├── legacy_test_array_07.json │ │ │ ├── legacy_test_basic_01.expected │ │ │ ├── legacy_test_basic_01.json │ │ │ ├── legacy_test_basic_02.expected │ │ │ ├── legacy_test_basic_02.json │ │ │ ├── legacy_test_basic_03.expected │ │ │ ├── legacy_test_basic_03.json │ │ │ ├── legacy_test_basic_04.expected │ │ │ ├── legacy_test_basic_04.json │ │ │ ├── legacy_test_basic_05.expected │ │ │ ├── legacy_test_basic_05.json │ │ │ ├── legacy_test_basic_06.expected │ │ │ ├── legacy_test_basic_06.json │ │ │ ├── legacy_test_basic_07.expected │ │ │ ├── legacy_test_basic_07.json │ │ │ ├── legacy_test_basic_08.expected │ │ │ ├── legacy_test_basic_08.json │ │ │ ├── legacy_test_basic_09.expected │ │ │ ├── legacy_test_basic_09.json │ │ │ ├── legacy_test_comment_00.expected │ │ │ ├── legacy_test_comment_00.json │ │ │ ├── legacy_test_comment_01.expected │ │ │ ├── legacy_test_comment_01.json │ │ │ ├── legacy_test_comment_02.expected │ │ │ ├── legacy_test_comment_02.json │ │ │ ├── legacy_test_complex_01.expected │ │ │ ├── legacy_test_complex_01.json │ │ │ ├── legacy_test_integer_01.expected │ │ │ ├── legacy_test_integer_01.json │ │ │ ├── legacy_test_integer_02.expected │ │ │ ├── legacy_test_integer_02.json │ │ │ ├── legacy_test_integer_03.expected │ │ │ ├── legacy_test_integer_03.json │ │ │ ├── legacy_test_integer_04.expected │ │ │ ├── legacy_test_integer_04.json │ │ │ ├── legacy_test_integer_05.expected │ │ │ ├── legacy_test_integer_05.json │ │ │ ├── legacy_test_integer_06_64bits.expected │ │ │ ├── legacy_test_integer_06_64bits.json │ │ │ ├── legacy_test_integer_07_64bits.expected │ │ │ ├── legacy_test_integer_07_64bits.json │ │ │ ├── legacy_test_integer_08_64bits.expected │ │ │ ├── legacy_test_integer_08_64bits.json │ │ │ ├── legacy_test_large_01.expected │ │ │ ├── legacy_test_large_01.json │ │ │ ├── legacy_test_object_01.expected │ │ │ ├── legacy_test_object_01.json │ │ │ ├── legacy_test_object_02.expected │ │ │ ├── legacy_test_object_02.json │ │ │ ├── legacy_test_object_03.expected │ │ │ ├── legacy_test_object_03.json │ │ │ ├── legacy_test_object_04.expected │ │ │ ├── legacy_test_object_04.json │ │ │ ├── legacy_test_preserve_comment_01.expected │ │ │ ├── legacy_test_preserve_comment_01.json │ │ │ ├── legacy_test_real_01.expected │ │ │ ├── legacy_test_real_01.json │ │ │ ├── legacy_test_real_02.expected │ │ │ ├── legacy_test_real_02.json │ │ │ ├── legacy_test_real_03.expected │ │ │ ├── legacy_test_real_03.json │ │ │ ├── legacy_test_real_04.expected │ │ │ ├── legacy_test_real_04.json │ │ │ ├── legacy_test_real_05.expected │ │ │ ├── legacy_test_real_05.json │ │ │ ├── legacy_test_real_06.expected │ │ │ ├── legacy_test_real_06.json │ │ │ ├── legacy_test_real_07.expected │ │ │ ├── legacy_test_real_07.json │ │ │ ├── legacy_test_real_08.expected │ │ │ ├── legacy_test_real_08.json │ │ │ ├── legacy_test_real_09.expected │ │ │ ├── legacy_test_real_09.json │ │ │ ├── legacy_test_real_10.expected │ │ │ ├── legacy_test_real_10.json │ │ │ ├── legacy_test_real_11.expected │ │ │ ├── legacy_test_real_11.json │ │ │ ├── legacy_test_real_12.expected │ │ │ ├── legacy_test_real_12.json │ │ │ ├── legacy_test_real_13.expected │ │ │ ├── legacy_test_real_13.json │ │ │ ├── legacy_test_string_01.expected │ │ │ ├── legacy_test_string_01.json │ │ │ ├── legacy_test_string_02.expected │ │ │ ├── legacy_test_string_02.json │ │ │ ├── legacy_test_string_03.expected │ │ │ ├── legacy_test_string_03.json │ │ │ ├── legacy_test_string_04.expected │ │ │ ├── legacy_test_string_04.json │ │ │ ├── legacy_test_string_05.expected │ │ │ ├── legacy_test_string_05.json │ │ │ ├── legacy_test_string_unicode_01.expected │ │ │ ├── legacy_test_string_unicode_01.json │ │ │ ├── legacy_test_string_unicode_02.expected │ │ │ ├── legacy_test_string_unicode_02.json │ │ │ ├── legacy_test_string_unicode_03.expected │ │ │ ├── legacy_test_string_unicode_03.json │ │ │ ├── legacy_test_string_unicode_04.expected │ │ │ ├── legacy_test_string_unicode_04.json │ │ │ ├── legacy_test_string_unicode_05.expected │ │ │ ├── legacy_test_string_unicode_05.json │ │ │ ├── test_array_08.expected │ │ │ ├── test_array_08.json │ │ │ ├── test_object_05.expected │ │ │ └── test_object_05.json │ │ ├── generate_expected.py │ │ ├── jsonchecker │ │ │ ├── fail1.json │ │ │ ├── fail10.json │ │ │ ├── fail11.json │ │ │ ├── fail12.json │ │ │ ├── fail13.json │ │ │ ├── fail14.json │ │ │ ├── fail15.json │ │ │ ├── fail16.json │ │ │ ├── fail17.json │ │ │ ├── fail18.json │ │ │ ├── fail19.json │ │ │ ├── fail2.json │ │ │ ├── fail20.json │ │ │ ├── fail21.json │ │ │ ├── fail22.json │ │ │ ├── fail23.json │ │ │ ├── fail24.json │ │ │ ├── fail25.json │ │ │ ├── fail26.json │ │ │ ├── fail27.json │ │ │ ├── fail28.json │ │ │ ├── fail29.json │ │ │ ├── fail3.json │ │ │ ├── fail30.json │ │ │ ├── fail31.json │ │ │ ├── fail32.json │ │ │ ├── fail33.json │ │ │ ├── fail4.json │ │ │ ├── fail5.json │ │ │ ├── fail6.json │ │ │ ├── fail7.json │ │ │ ├── fail8.json │ │ │ ├── fail9.json │ │ │ ├── pass1.json │ │ │ ├── pass2.json │ │ │ ├── pass3.json │ │ │ └── readme.txt │ │ ├── pyjsontestrunner.py │ │ ├── runjsontests.py │ │ └── rununittests.py │ └── version.in ├── jsoncppold │ ├── .gitignore │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.txt │ ├── SConstruct │ ├── devtools │ │ ├── __init__.py │ │ ├── antglob.py │ │ ├── fixeol.py │ │ └── tarball.py │ ├── doc │ │ ├── doxyfile.in │ │ ├── footer.html │ │ ├── header.html │ │ ├── jsoncpp.dox │ │ ├── readme.txt │ │ └── roadmap.dox │ ├── doxybuild.py │ ├── include │ │ └── json │ │ │ ├── autolink.h │ │ │ ├── config.h │ │ │ ├── features.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ └── writer.h │ ├── makefiles │ │ └── vs71 │ │ │ ├── jsoncpp.sln │ │ │ ├── jsontest.vcproj │ │ │ ├── lib_json.vcproj │ │ │ └── test_lib_json.vcproj │ ├── makerelease.py │ ├── scons-tools │ │ ├── globtool.py │ │ ├── srcdist.py │ │ ├── substinfile.py │ │ └── targz.py │ ├── src │ │ ├── jsontestrunner │ │ │ ├── main.cpp │ │ │ └── sconscript │ │ ├── lib_json │ │ │ ├── json_batchallocator.h │ │ │ ├── json_internalarray.inl │ │ │ ├── json_internalmap.inl │ │ │ ├── json_reader.cpp │ │ │ ├── json_value.cpp │ │ │ ├── json_valueiterator.inl │ │ │ ├── json_writer.cpp │ │ │ └── sconscript │ │ └── test_lib_json │ │ │ ├── jsontest.cpp │ │ │ ├── jsontest.h │ │ │ ├── main.cpp │ │ │ └── sconscript │ ├── test │ │ ├── cleantests.py │ │ ├── data │ │ │ ├── test_array_01.expected │ │ │ ├── test_array_01.json │ │ │ ├── test_array_02.expected │ │ │ ├── test_array_02.json │ │ │ ├── test_array_03.expected │ │ │ ├── test_array_03.json │ │ │ ├── test_array_04.expected │ │ │ ├── test_array_04.json │ │ │ ├── test_array_05.expected │ │ │ ├── test_array_05.json │ │ │ ├── test_array_06.expected │ │ │ ├── test_array_06.json │ │ │ ├── test_basic_01.expected │ │ │ ├── test_basic_01.json │ │ │ ├── test_basic_02.expected │ │ │ ├── test_basic_02.json │ │ │ ├── test_basic_03.expected │ │ │ ├── test_basic_03.json │ │ │ ├── test_basic_04.expected │ │ │ ├── test_basic_04.json │ │ │ ├── test_basic_05.expected │ │ │ ├── test_basic_05.json │ │ │ ├── test_basic_06.expected │ │ │ ├── test_basic_06.json │ │ │ ├── test_basic_07.expected │ │ │ ├── test_basic_07.json │ │ │ ├── test_basic_08.expected │ │ │ ├── test_basic_08.json │ │ │ ├── test_basic_09.expected │ │ │ ├── test_basic_09.json │ │ │ ├── test_comment_01.expected │ │ │ ├── test_comment_01.json │ │ │ ├── test_complex_01.expected │ │ │ ├── test_complex_01.json │ │ │ ├── test_integer_01.expected │ │ │ ├── test_integer_01.json │ │ │ ├── test_integer_02.expected │ │ │ ├── test_integer_02.json │ │ │ ├── test_integer_03.expected │ │ │ ├── test_integer_03.json │ │ │ ├── test_integer_04.expected │ │ │ ├── test_integer_04.json │ │ │ ├── test_integer_05.expected │ │ │ ├── test_integer_05.json │ │ │ ├── test_large_01.expected │ │ │ ├── test_large_01.json │ │ │ ├── test_object_01.expected │ │ │ ├── test_object_01.json │ │ │ ├── test_object_02.expected │ │ │ ├── test_object_02.json │ │ │ ├── test_object_03.expected │ │ │ ├── test_object_03.json │ │ │ ├── test_object_04.expected │ │ │ ├── test_object_04.json │ │ │ ├── test_preserve_comment_01.expected │ │ │ ├── test_preserve_comment_01.json │ │ │ ├── test_real_01.expected │ │ │ ├── test_real_01.json │ │ │ ├── test_real_02.expected │ │ │ ├── test_real_02.json │ │ │ ├── test_real_03.expected │ │ │ ├── test_real_03.json │ │ │ ├── test_real_04.expected │ │ │ ├── test_real_04.json │ │ │ ├── test_real_05.expected │ │ │ ├── test_real_05.json │ │ │ ├── test_real_06.expected │ │ │ ├── test_real_06.json │ │ │ ├── test_real_07.expected │ │ │ ├── test_real_07.json │ │ │ ├── test_string_01.expected │ │ │ ├── test_string_01.json │ │ │ ├── test_string_02.expected │ │ │ ├── test_string_02.json │ │ │ ├── test_string_unicode_01.expected │ │ │ ├── test_string_unicode_01.json │ │ │ ├── test_string_unicode_02.expected │ │ │ ├── test_string_unicode_02.json │ │ │ ├── test_string_unicode_03.expected │ │ │ ├── test_string_unicode_03.json │ │ │ ├── test_string_unicode_04.expected │ │ │ ├── test_string_unicode_04.json │ │ │ ├── test_string_unicode_05.expected │ │ │ └── test_string_unicode_05.json │ │ ├── generate_expected.py │ │ ├── jsonchecker │ │ │ ├── fail1.json │ │ │ ├── fail10.json │ │ │ ├── fail11.json │ │ │ ├── fail12.json │ │ │ ├── fail13.json │ │ │ ├── fail14.json │ │ │ ├── fail15.json │ │ │ ├── fail16.json │ │ │ ├── fail17.json │ │ │ ├── fail18.json │ │ │ ├── fail19.json │ │ │ ├── fail2.json │ │ │ ├── fail20.json │ │ │ ├── fail21.json │ │ │ ├── fail22.json │ │ │ ├── fail23.json │ │ │ ├── fail24.json │ │ │ ├── fail25.json │ │ │ ├── fail26.json │ │ │ ├── fail27.json │ │ │ ├── fail28.json │ │ │ ├── fail29.json │ │ │ ├── fail3.json │ │ │ ├── fail30.json │ │ │ ├── fail31.json │ │ │ ├── fail32.json │ │ │ ├── fail33.json │ │ │ ├── fail4.json │ │ │ ├── fail5.json │ │ │ ├── fail6.json │ │ │ ├── fail7.json │ │ │ ├── fail8.json │ │ │ ├── fail9.json │ │ │ ├── pass1.json │ │ │ ├── pass2.json │ │ │ ├── pass3.json │ │ │ └── readme.txt │ │ ├── pyjsontestrunner.py │ │ ├── runjsontests.py │ │ └── rununittests.py │ └── version └── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── amiga │ ├── Makefile.pup │ └── Makefile.sas │ ├── as400 │ ├── bndsrc │ ├── compile.clp │ ├── readme.txt │ └── zlib.inc │ ├── compress.c │ ├── configure │ ├── contrib │ ├── README.contrib │ ├── ada │ │ ├── buffer_demo.adb │ │ ├── mtest.adb │ │ ├── read.adb │ │ ├── readme.txt │ │ ├── test.adb │ │ ├── zlib-streams.adb │ │ ├── zlib-streams.ads │ │ ├── zlib-thin.adb │ │ ├── zlib-thin.ads │ │ ├── zlib.adb │ │ ├── zlib.ads │ │ └── zlib.gpr │ ├── amd64 │ │ └── amd64-match.S │ ├── asm686 │ │ ├── README.686 │ │ └── match.S │ ├── blast │ │ ├── Makefile │ │ ├── README │ │ ├── blast.c │ │ ├── blast.h │ │ ├── test.pk │ │ └── test.txt │ ├── delphi │ │ ├── ZLib.pas │ │ ├── ZLibConst.pas │ │ ├── readme.txt │ │ └── zlibd32.mak │ ├── dotzlib │ │ ├── DotZLib.build │ │ ├── DotZLib.chm │ │ ├── DotZLib.sln │ │ ├── DotZLib │ │ │ ├── AssemblyInfo.cs │ │ │ ├── ChecksumImpl.cs │ │ │ ├── CircularBuffer.cs │ │ │ ├── CodecBase.cs │ │ │ ├── Deflater.cs │ │ │ ├── DotZLib.cs │ │ │ ├── DotZLib.csproj │ │ │ ├── GZipStream.cs │ │ │ ├── Inflater.cs │ │ │ └── UnitTests.cs │ │ ├── LICENSE_1_0.txt │ │ └── readme.txt │ ├── gcc_gvmat64 │ │ └── gvmat64.S │ ├── infback9 │ │ ├── README │ │ ├── infback9.c │ │ ├── infback9.h │ │ ├── inffix9.h │ │ ├── inflate9.h │ │ ├── inftree9.c │ │ └── inftree9.h │ ├── inflate86 │ │ ├── inffas86.c │ │ └── inffast.S │ ├── iostream │ │ ├── test.cpp │ │ ├── zfstream.cpp │ │ └── zfstream.h │ ├── iostream2 │ │ ├── zstream.h │ │ └── zstream_test.cpp │ ├── iostream3 │ │ ├── README │ │ ├── TODO │ │ ├── test.cc │ │ ├── zfstream.cc │ │ └── zfstream.h │ ├── masmx64 │ │ ├── bld_ml64.bat │ │ ├── gvmat64.asm │ │ ├── inffas8664.c │ │ ├── inffasx64.asm │ │ └── readme.txt │ ├── masmx86 │ │ ├── bld_ml32.bat │ │ ├── inffas32.asm │ │ ├── match686.asm │ │ └── readme.txt │ ├── minizip │ │ ├── Makefile │ │ ├── Makefile.am │ │ ├── MiniZip64_Changes.txt │ │ ├── MiniZip64_info.txt │ │ ├── configure.ac │ │ ├── crypt.h │ │ ├── ioapi.c │ │ ├── ioapi.h │ │ ├── iowin32.c │ │ ├── iowin32.h │ │ ├── make_vms.com │ │ ├── miniunz.c │ │ ├── miniunzip.1 │ │ ├── minizip.1 │ │ ├── minizip.c │ │ ├── minizip.pc.in │ │ ├── mztools.c │ │ ├── mztools.h │ │ ├── unzip.c │ │ ├── unzip.h │ │ ├── zip.c │ │ └── zip.h │ ├── pascal │ │ ├── example.pas │ │ ├── readme.txt │ │ ├── zlibd32.mak │ │ └── zlibpas.pas │ ├── puff │ │ ├── Makefile │ │ ├── README │ │ ├── puff.c │ │ ├── puff.h │ │ ├── pufftest.c │ │ └── zeros.raw │ ├── testzlib │ │ ├── testzlib.c │ │ └── testzlib.txt │ ├── untgz │ │ ├── Makefile │ │ ├── Makefile.msc │ │ └── untgz.c │ └── vstudio │ │ ├── readme.txt │ │ ├── vc10 │ │ ├── miniunz.vcxproj │ │ ├── miniunz.vcxproj.filters │ │ ├── minizip.vcxproj │ │ ├── minizip.vcxproj.filters │ │ ├── testzlib.vcxproj │ │ ├── testzlib.vcxproj.filters │ │ ├── testzlibdll.vcxproj │ │ ├── testzlibdll.vcxproj.filters │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibstat.vcxproj.filters │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ ├── zlibvc.vcxproj │ │ └── zlibvc.vcxproj.filters │ │ ├── vc11 │ │ ├── miniunz.vcxproj │ │ ├── minizip.vcxproj │ │ ├── testzlib.vcxproj │ │ ├── testzlibdll.vcxproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcxproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcxproj │ │ └── vc9 │ │ ├── miniunz.vcproj │ │ ├── minizip.vcproj │ │ ├── testzlib.vcproj │ │ ├── testzlibdll.vcproj │ │ ├── zlib.rc │ │ ├── zlibstat.vcproj │ │ ├── zlibvc.def │ │ ├── zlibvc.sln │ │ └── zlibvc.vcproj │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── doc │ ├── algorithm.txt │ ├── rfc1950.txt │ ├── rfc1951.txt │ ├── rfc1952.txt │ └── txtvsbin.txt │ ├── examples │ ├── README.examples │ ├── enough.c │ ├── fitblk.c │ ├── gun.c │ ├── gzappend.c │ ├── gzjoin.c │ ├── gzlog.c │ ├── gzlog.h │ ├── zlib_how.html │ ├── zpipe.c │ └── zran.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── make_vms.com │ ├── msdos │ ├── Makefile.bor │ ├── Makefile.dj2 │ ├── Makefile.emx │ ├── Makefile.msc │ └── Makefile.tc │ ├── nintendods │ ├── Makefile │ └── README │ ├── old │ ├── Makefile.emx │ ├── Makefile.riscos │ ├── README │ ├── descrip.mms │ ├── os2 │ │ ├── Makefile.os2 │ │ └── zlib.def │ └── visual-basic.txt │ ├── qnx │ └── package.qpg │ ├── test │ ├── example.c │ ├── infcover.c │ └── minigzip.c │ ├── treebuild.xml │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── watcom │ ├── watcom_f.mak │ └── watcom_l.mak │ ├── win32 │ ├── DLL_FAQ.txt │ ├── Makefile.bor │ ├── Makefile.gcc │ ├── Makefile.msc │ ├── README-WIN32.txt │ ├── VisualC.txt │ ├── zlib.def │ └── zlib1.rc │ ├── zconf.h │ ├── zconf.h.cmakein │ ├── zconf.h.in │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h ├── exec.py ├── hylcmaterials ├── basket1.json ├── honey1.json ├── rib1.json ├── rib1_noreg.json ├── satin01.json ├── satin1.json ├── stock01.json ├── stock1.json └── stock1_bad.json ├── imgs └── demo_jump.gif ├── materials ├── 11oz-black-denim.json ├── README ├── aluminium.json ├── camel-ponte-roma.json ├── gray-interlock.json ├── ivory-rib-knit.json ├── navy-sparkle-sweat.json ├── paper.json ├── pink-ribbon-brown.json ├── royal-target.json ├── tango-red-jet-set.json ├── white-dots-on-blk.json └── white-swim-solid.json ├── mathematica ├── cylinderII.nb ├── cylinderII_2d.nb └── macro.nb ├── meshes ├── 0000_body.obj ├── 0000_garment.obj ├── 0200_body.obj ├── 0200_garment.obj ├── arm_body.obj ├── arm_garment.obj ├── cylinder.obj ├── cylinderm.obj ├── cylinderw.obj ├── dance-paused.mot ├── dance.mot ├── dart.obj ├── dartm.obj ├── dartw.obj ├── dense_tshirt.obj ├── disk.obj ├── female-objs │ ├── body0000.obj │ ├── body0001.obj │ ├── body0002.obj │ ├── body0003.obj │ ├── body0004.obj │ ├── body0005.obj │ ├── body0006.obj │ ├── body0007.obj │ ├── body0008.obj │ ├── body0009.obj │ ├── body0010.obj │ ├── body0011.obj │ ├── body0012.obj │ ├── body0013.obj │ ├── body0014.obj │ ├── body0015.obj │ └── shrink.hs ├── flag.obj ├── guy.obj ├── guy_mannequin │ ├── body0000.obj │ ├── body0001.obj │ ├── body0002.obj │ ├── body0003.obj │ ├── body0004.obj │ ├── body0004a.obj │ ├── body0005.obj │ ├── body0006.obj │ ├── body0007.obj │ ├── body0008.obj │ ├── body0009.obj │ ├── body0009a.obj │ ├── body0010.obj │ ├── body0011.obj │ ├── body0012.obj │ ├── body0013.obj │ ├── body0014.obj │ └── body0015.obj ├── guy_shrunk │ ├── body0000.obj │ ├── body0001.obj │ ├── body0002.obj │ ├── body0003.obj │ ├── body0004.obj │ ├── body0004b.obj │ ├── body0005.obj │ ├── body0006.obj │ ├── body0007.obj │ ├── body0008.obj │ ├── body0009.obj │ ├── body0009b.obj │ ├── body0010.obj │ ├── body0011.obj │ ├── body0012.obj │ ├── body0013.obj │ ├── body0014.obj │ └── body0015.obj ├── hylc_bunny.obj ├── hylc_city.obj ├── hylc_moebius1.obj ├── hylc_moebius2.obj ├── hylc_scarf.obj ├── hylc_square.obj ├── hylc_square0.obj ├── hylc_square0p.obj ├── hylc_square1.obj ├── hylc_square1p.obj ├── hylc_square1pTMP01.obj ├── hylc_square2p.obj ├── hylc_strip.obj ├── hylc_thanks.obj ├── hylc_tmp.obj ├── hylc_yarnmadillo.obj ├── hylc_yarnny.obj ├── hylc_yarnny2.obj ├── jacket.obj ├── jacketm.obj ├── jacketw.obj ├── karate-mod.mot ├── karate-smooth.mot ├── karate.ma ├── karate.mot ├── karate.obj ├── letter-with-midpoints.obj ├── letter.obj ├── meanshape_pbns.obj ├── motion_body │ ├── body0000.obj │ ├── body0001.obj │ ├── body0002.obj │ ├── body0003.obj │ ├── body0004.obj │ ├── body0005.obj │ ├── body0006.obj │ ├── body0007.obj │ ├── body0008.obj │ ├── body0009.obj │ ├── body0010.obj │ ├── body0011.obj │ ├── body0012.obj │ ├── body0013.obj │ ├── body0014.obj │ └── body0015.obj ├── nodefiles │ ├── flag.node │ ├── mktablecloth.py │ ├── square.1.ele │ ├── square.1.node │ └── square.node ├── none.mot ├── none_orientationfix.mot ├── other1.txt ├── pants.mtl ├── pants.obj ├── pants2.obj ├── pants3.obj ├── pbns_posedsbs_female.obj ├── pbns_posedsbs_female.txt ├── pbns_posedsbs_male.obj ├── pbns_posedsbs_male.txt ├── pole.obj ├── rest_smpl.obj ├── robe.obj ├── robem.obj ├── robew.obj ├── roller.obj ├── scripts │ ├── Obj.hs │ ├── count.hs │ ├── cylinder.hs │ ├── ffwd.sh │ ├── flip.hs │ ├── fold.hs │ ├── pause.hs │ ├── plastic.hs │ ├── rotate.hs │ ├── shrink.hs │ ├── svg2poly.hs │ └── translate.hs ├── sequence1.txt ├── sequence2.txt ├── shrinkobj.py ├── sleeve.obj ├── sleevem.obj ├── sleevew.obj ├── smpl.obj ├── smplb.obj ├── sphere-inv.obj ├── sphere.mot ├── sphere.obj ├── sphere2.obj ├── square.obj ├── square4.obj ├── square_kink.obj ├── squaretear.obj ├── stdsmpl_female.obj ├── stdsmpl_male.obj ├── torso1.txt ├── torso2.txt ├── torso3.txt ├── torso4.txt ├── torso5.txt ├── tshirt.obj ├── tshirt2_uv.obj ├── tshirt2iso_uv.obj ├── tshirt_uv.obj ├── tshirtiso_uvS.obj ├── tshirtm.obj ├── tshirtw.obj ├── victor_dress.obj ├── victor_dress_flat.obj ├── victor_dress_shaped.obj ├── vto_tshirt.obj └── walkseq.txt ├── models ├── female_model.json └── male_model.json ├── motions └── jump.txt ├── replay_folder.py ├── run_folder.py ├── smpl_demo └── jump.json ├── tests ├── .gitignore ├── 1D │ └── conf │ │ ├── basket_drapeX.json │ │ ├── basket_drapeY.json │ │ ├── basket_stretchX.json │ │ ├── basket_stretchY.json │ │ ├── honey_drapeX.json │ │ ├── honey_drapeY.json │ │ ├── honey_stretchX.json │ │ ├── honey_stretchY.json │ │ ├── rib_drapeX.json │ │ ├── rib_drapeY.json │ │ ├── rib_stretchX.json │ │ ├── rib_stretchY.json │ │ ├── satin_drapeX.json │ │ ├── satin_drapeY.json │ │ ├── satin_stretchX.json │ │ ├── satin_stretchY.json │ │ ├── stock_drapeX.json │ │ ├── stock_drapeY.json │ │ ├── stock_stretchX.json │ │ └── stock_stretchY.json ├── 2D │ └── conf │ │ ├── basket_drapeX.json │ │ ├── basket_drapeY.json │ │ ├── basket_stretchX.json │ │ ├── basket_stretchY.json │ │ ├── honey_drapeX.json │ │ ├── honey_drapeY.json │ │ ├── honey_stretchX.json │ │ ├── honey_stretchY.json │ │ ├── rib_drapeX.json │ │ ├── rib_drapeY.json │ │ ├── rib_stretchX.json │ │ ├── rib_stretchY.json │ │ ├── satin_drapeX.json │ │ ├── satin_drapeY.json │ │ ├── satin_stretchX.json │ │ ├── satin_stretchY.json │ │ ├── stock_drapeX.json │ │ ├── stock_drapeY.json │ │ ├── stock_stretchX.json │ │ └── stock_stretchY.json ├── fun │ └── conf │ │ ├── hylc_TMP.json │ │ ├── hylc_scarf.json │ │ ├── hylc_scarf_stiff.json │ │ ├── hylc_thanks.json │ │ ├── hylc_yarnmadillo.json │ │ └── hylc_yarnny.json ├── other │ └── conf │ │ ├── ribbad_drapeY.json │ │ └── stockbad_drapeX.json ├── shirt │ └── conf │ │ ├── shirt_basket.json │ │ ├── shirt_honey.json │ │ ├── shirt_rib.json │ │ ├── shirt_satin.json │ │ ├── shirt_satin_small.json │ │ ├── shirt_stock.json │ │ └── shirt_stock_small.json └── small │ └── conf │ ├── satin01_drapeX.json │ └── stock01_drapeX.json └── v0.2.1 ├── CMakeLists.txt ├── auglag.cpp ├── bah.cpp ├── bah.hpp ├── blockvectors.hpp ├── breaking.cpp ├── breaking.hpp ├── bvh.cpp ├── bvh.hpp ├── cloth.cpp ├── cloth.hpp ├── collision.cpp ├── collision.hpp ├── collisionutil.cpp ├── collisionutil.hpp ├── conf.cpp ├── conf.hpp ├── constraint.cpp ├── constraint.hpp ├── dde.cpp ├── dde.hpp ├── display.cpp ├── display.hpp ├── displayphysics.cpp ├── displayphysics.hpp ├── displayplay.cpp ├── displayplay.hpp ├── displayreplay.cpp ├── displayreplay.hpp ├── displaytesting.cpp ├── displaytesting.hpp ├── dynamicremesh.cpp ├── dynamicremesh.hpp ├── geometry.cpp ├── geometry.hpp ├── handle.cpp ├── handle.hpp ├── hylc ├── MathematicaDefinitions.h ├── hylc.cpp ├── hylc.hpp ├── hylc_conf.cpp ├── hylc_conf.hpp ├── materials │ ├── BaseMaterial.hpp │ ├── HermiteSpline1D.hpp │ ├── HermiteSpline2D.cpp │ ├── HermiteSpline2D.hpp │ ├── Poly1D.hpp │ ├── Poly2D.hpp │ ├── SplineMaterial.cpp │ └── SplineMaterial.hpp ├── seamforce.cpp ├── seamforce.hpp └── strain │ ├── strain.hpp │ ├── strainII_valgrad.cpp │ ├── strainII_valgradhess.cpp │ ├── strainII_value.cpp │ ├── strain_valgrad.cpp │ ├── strain_valgradhess.cpp │ └── strain_value.cpp ├── io.cpp ├── io.hpp ├── lbfgs.cpp ├── localopt.cpp ├── localopt.hpp ├── lsnewton.cpp ├── magic.cpp ├── magic.hpp ├── main.cpp ├── mesh.cpp ├── mesh.hpp ├── misc.cpp ├── misc.hpp ├── morph.cpp ├── morph.hpp ├── mot_parser.cpp ├── mot_parser.hpp ├── nearobs.cpp ├── nearobs.hpp ├── nlcg.cpp ├── obstacle.cpp ├── obstacle.hpp ├── opengl.hpp ├── optimization.hpp ├── physics.cpp ├── physics.hpp ├── plasticity.cpp ├── plasticity.hpp ├── popfilter.cpp ├── popfilter.hpp ├── proximity.cpp ├── proximity.hpp ├── proxy.cpp ├── proxy.hpp ├── referenceshape.cpp ├── referenceshape.hpp ├── remesh.cpp ├── remesh.hpp ├── runphysics.cpp ├── runphysics.hpp ├── separate.cpp ├── separate.hpp ├── separateobs.cpp ├── separateobs.hpp ├── sepstrength.cpp ├── sepstrength.hpp ├── simulation.cpp ├── simulation.hpp ├── smpl.cpp ├── smpl.h ├── smpl.h.ref ├── sparse.hpp ├── sparse_solver.cpp ├── sparse_solver.hpp ├── spline.cpp ├── spline.hpp ├── strainlimiting.cpp ├── strainlimiting.hpp ├── subset.cpp ├── subset.hpp ├── taucs.cpp ├── taucs.hpp ├── tensor.cpp ├── tensor.h ├── tensormax.cpp ├── tensormax.hpp ├── timer.cpp ├── timer.hpp ├── transformation.cpp ├── transformation.hpp ├── trustregion.cpp ├── util.cpp ├── util.hpp ├── vectors.cpp ├── vectors.hpp ├── winport.hpp └── x /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/README.md -------------------------------------------------------------------------------- /README_HYLC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/README_HYLC.md -------------------------------------------------------------------------------- /README_arcsim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/README_arcsim -------------------------------------------------------------------------------- /conf/crumple-pnas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/conf/crumple-pnas.json -------------------------------------------------------------------------------- /conf/crumple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/conf/crumple.json -------------------------------------------------------------------------------- /conf/cylinder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/conf/cylinder.json -------------------------------------------------------------------------------- /conf/sphere-annotated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/conf/sphere-annotated.json -------------------------------------------------------------------------------- /dependencies/alglib/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | libalglib.a 3 | -------------------------------------------------------------------------------- /dependencies/alglib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/alglib/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/alglib/cpp/gpl2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/alglib/cpp/gpl2.txt -------------------------------------------------------------------------------- /dependencies/alglib/cpp/gpl3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/alglib/cpp/gpl3.txt -------------------------------------------------------------------------------- /dependencies/alglib/cpp/src/ap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/alglib/cpp/src/ap.cpp -------------------------------------------------------------------------------- /dependencies/alglib/cpp/src/ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/alglib/cpp/src/ap.h -------------------------------------------------------------------------------- /dependencies/alglib/cpp/src/linalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/alglib/cpp/src/linalg.h -------------------------------------------------------------------------------- /dependencies/alglib/cpp/src/solvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/alglib/cpp/src/solvers.h -------------------------------------------------------------------------------- /dependencies/alglib/cpp/src/stdafx.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /dependencies/eigen/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/.hg_archival.txt -------------------------------------------------------------------------------- /dependencies/eigen/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/.hgeol -------------------------------------------------------------------------------- /dependencies/eigen/.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/.hgignore -------------------------------------------------------------------------------- /dependencies/eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/COPYING.BSD -------------------------------------------------------------------------------- /dependencies/eigen/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/COPYING.GPL -------------------------------------------------------------------------------- /dependencies/eigen/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/COPYING.LGPL -------------------------------------------------------------------------------- /dependencies/eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/COPYING.MINPACK -------------------------------------------------------------------------------- /dependencies/eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /dependencies/eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/COPYING.README -------------------------------------------------------------------------------- /dependencies/eigen/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/CTestConfig.cmake -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/Cholesky -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/Core -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/Dense -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/Eigen -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/Eigenvalues -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/Geometry -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/Householder -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/Jacobi -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/LU -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/MetisSupport -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/QR -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/SPQRSupport -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/SVD -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/Sparse -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/SparseCore -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/SparseLU -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/SparseQR -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/StdDeque -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/StdList -------------------------------------------------------------------------------- /dependencies/eigen/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/Eigen/StdVector -------------------------------------------------------------------------------- /dependencies/eigen/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/INSTALL -------------------------------------------------------------------------------- /dependencies/eigen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/README.md -------------------------------------------------------------------------------- /dependencies/eigen/bench/BenchTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/BenchTimer.h -------------------------------------------------------------------------------- /dependencies/eigen/bench/BenchUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/BenchUtil.h -------------------------------------------------------------------------------- /dependencies/eigen/bench/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/README.txt -------------------------------------------------------------------------------- /dependencies/eigen/bench/benchFFT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/benchFFT.cpp -------------------------------------------------------------------------------- /dependencies/eigen/bench/btl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/btl/COPYING -------------------------------------------------------------------------------- /dependencies/eigen/bench/btl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/btl/README -------------------------------------------------------------------------------- /dependencies/eigen/bench/eig33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/eig33.cpp -------------------------------------------------------------------------------- /dependencies/eigen/bench/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/geometry.cpp -------------------------------------------------------------------------------- /dependencies/eigen/bench/quatmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/quatmul.cpp -------------------------------------------------------------------------------- /dependencies/eigen/bench/spmv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/spmv.cpp -------------------------------------------------------------------------------- /dependencies/eigen/bench/vdw_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/bench/vdw_new.cpp -------------------------------------------------------------------------------- /dependencies/eigen/blas/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/README.txt -------------------------------------------------------------------------------- /dependencies/eigen/blas/Rank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/Rank2Update.h -------------------------------------------------------------------------------- /dependencies/eigen/blas/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/common.h -------------------------------------------------------------------------------- /dependencies/eigen/blas/double.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/double.cpp -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/chbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/chbmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/chpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/chpmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/ctbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/ctbmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/d_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/d_cnjg.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/drotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/drotm.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/drotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/drotmg.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/dsbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/dsbmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/dspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/dspmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/dtbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/dtbmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/lsame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/lsame.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/r_cnjg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/r_cnjg.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/srotm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/srotm.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/srotmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/srotmg.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/ssbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/ssbmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/sspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/sspmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/stbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/stbmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/zhbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/zhbmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/zhpmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/zhpmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/f2c/ztbmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/f2c/ztbmv.c -------------------------------------------------------------------------------- /dependencies/eigen/blas/level1_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/level1_impl.h -------------------------------------------------------------------------------- /dependencies/eigen/blas/level2_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/level2_impl.h -------------------------------------------------------------------------------- /dependencies/eigen/blas/level3_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/level3_impl.h -------------------------------------------------------------------------------- /dependencies/eigen/blas/single.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/single.cpp -------------------------------------------------------------------------------- /dependencies/eigen/blas/xerbla.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/blas/xerbla.cpp -------------------------------------------------------------------------------- /dependencies/eigen/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /dependencies/eigen/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/doc/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/eigen/doc/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/doc/Doxyfile.in -------------------------------------------------------------------------------- /dependencies/eigen/doc/Manual.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/doc/Manual.dox -------------------------------------------------------------------------------- /dependencies/eigen/doc/Overview.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/doc/Overview.dox -------------------------------------------------------------------------------- /dependencies/eigen/doc/Pitfalls.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/doc/Pitfalls.dox -------------------------------------------------------------------------------- /dependencies/eigen/doc/UsingNVCC.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/doc/UsingNVCC.dox -------------------------------------------------------------------------------- /dependencies/eigen/doc/eigendoxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/doc/eigendoxy.css -------------------------------------------------------------------------------- /dependencies/eigen/doc/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/doc/ftv2node.png -------------------------------------------------------------------------------- /dependencies/eigen/doc/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/doc/ftv2pnode.png -------------------------------------------------------------------------------- /dependencies/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /dependencies/eigen/doc/snippets/MatrixBase_identity.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix::Identity() << endl; 2 | -------------------------------------------------------------------------------- /dependencies/eigen/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /dependencies/eigen/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /dependencies/eigen/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /dependencies/eigen/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /dependencies/eigen/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /dependencies/eigen/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /dependencies/eigen/doc/tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/doc/tutorial.cpp -------------------------------------------------------------------------------- /dependencies/eigen/eigen3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/eigen3.pc.in -------------------------------------------------------------------------------- /dependencies/eigen/failtest/ref_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/failtest/ref_1.cpp -------------------------------------------------------------------------------- /dependencies/eigen/lapack/clacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/clacgv.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/cladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/cladiv.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/clarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/clarf.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/clarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/clarfb.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/clarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/clarfg.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/clarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/clarft.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/dladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/dladiv.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/dlamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/dlamch.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/dlapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/dlapy2.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/dlapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/dlapy3.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/dlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/dlarf.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/dlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/dlarfb.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/dlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/dlarfg.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/dlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/dlarft.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/ilaclc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/ilaclc.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/ilaclr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/ilaclr.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/iladlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/iladlc.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/iladlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/iladlr.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/ilaslc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/ilaslc.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/ilaslr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/ilaslr.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/ilazlc.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/ilazlc.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/ilazlr.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/ilazlr.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/lu.cpp -------------------------------------------------------------------------------- /dependencies/eigen/lapack/sladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/sladiv.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/slamch.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/slamch.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/slapy2.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/slapy2.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/slapy3.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/slapy3.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/slarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/slarf.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/slarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/slarfb.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/slarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/slarfg.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/slarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/slarft.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/svd.cpp -------------------------------------------------------------------------------- /dependencies/eigen/lapack/zlacgv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/zlacgv.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/zladiv.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/zladiv.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/zlarf.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/zlarf.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/zlarfb.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/zlarfb.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/zlarfg.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/zlarfg.f -------------------------------------------------------------------------------- /dependencies/eigen/lapack/zlarft.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/lapack/zlarft.f -------------------------------------------------------------------------------- /dependencies/eigen/scripts/check.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/scripts/check.in -------------------------------------------------------------------------------- /dependencies/eigen/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /dependencies/eigen/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /dependencies/eigen/test/adjoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/adjoint.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/array.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/bdcsvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/bdcsvd.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/block.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/bug1213.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/bug1213.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/bug1213.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/bug1213.h -------------------------------------------------------------------------------- /dependencies/eigen/test/corners.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/corners.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/denseLM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/denseLM.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/eigen/test/inverse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/inverse.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/jacobi.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/lscg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/lscg.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/lu.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/main.h -------------------------------------------------------------------------------- /dependencies/eigen/test/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/meta.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/nullary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/nullary.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/numext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/numext.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/product.h -------------------------------------------------------------------------------- /dependencies/eigen/test/qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/qr.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/rand.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/real_qz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/real_qz.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/redux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/redux.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/ref.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/resize.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/sizeof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/sizeof.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/sparse.h -------------------------------------------------------------------------------- /dependencies/eigen/test/stdlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/stdlist.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/svd_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/svd_fill.h -------------------------------------------------------------------------------- /dependencies/eigen/test/swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/swap.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/umeyama.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/umeyama.cpp -------------------------------------------------------------------------------- /dependencies/eigen/test/visitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/eigen/test/visitor.cpp -------------------------------------------------------------------------------- /dependencies/freeglut/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/.gitignore -------------------------------------------------------------------------------- /dependencies/freeglut/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/AUTHORS -------------------------------------------------------------------------------- /dependencies/freeglut/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/COPYING -------------------------------------------------------------------------------- /dependencies/freeglut/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/ChangeLog -------------------------------------------------------------------------------- /dependencies/freeglut/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/README -------------------------------------------------------------------------------- /dependencies/freeglut/README.android: -------------------------------------------------------------------------------- 1 | 2 | See http://freeglut.sourceforge.net/docs/android.php 3 | 4 | -------------------------------------------------------------------------------- /dependencies/freeglut/README.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/README.cmake -------------------------------------------------------------------------------- /dependencies/freeglut/README.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/README.win32 -------------------------------------------------------------------------------- /dependencies/freeglut/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/config.h.in -------------------------------------------------------------------------------- /dependencies/freeglut/progs/test-shapes-gles1/android_toolchain.cmake: -------------------------------------------------------------------------------- 1 | ../../android_toolchain.cmake -------------------------------------------------------------------------------- /dependencies/freeglut/src/fg_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/src/fg_ext.c -------------------------------------------------------------------------------- /dependencies/freeglut/src/fg_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/src/fg_font.c -------------------------------------------------------------------------------- /dependencies/freeglut/src/fg_gl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/src/fg_gl2.c -------------------------------------------------------------------------------- /dependencies/freeglut/src/fg_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/src/fg_gl2.h -------------------------------------------------------------------------------- /dependencies/freeglut/src/fg_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/src/fg_init.c -------------------------------------------------------------------------------- /dependencies/freeglut/src/fg_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/src/fg_init.h -------------------------------------------------------------------------------- /dependencies/freeglut/src/fg_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/src/fg_main.c -------------------------------------------------------------------------------- /dependencies/freeglut/src/fg_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/src/fg_menu.c -------------------------------------------------------------------------------- /dependencies/freeglut/src/fg_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/freeglut/src/fg_misc.c -------------------------------------------------------------------------------- /dependencies/jsoncpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/.clang-format -------------------------------------------------------------------------------- /dependencies/jsoncpp/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/.clang-tidy -------------------------------------------------------------------------------- /dependencies/jsoncpp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/.gitattributes -------------------------------------------------------------------------------- /dependencies/jsoncpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/.gitignore -------------------------------------------------------------------------------- /dependencies/jsoncpp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/.travis.yml -------------------------------------------------------------------------------- /dependencies/jsoncpp/.travis_scripts/travis.before_install.osx.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/.travis_scripts/travis.install.osx.sh: -------------------------------------------------------------------------------- 1 | # NOTHING TO DO HERE 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/AUTHORS -------------------------------------------------------------------------------- /dependencies/jsoncpp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/BUILD.bazel -------------------------------------------------------------------------------- /dependencies/jsoncpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/jsoncpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/LICENSE -------------------------------------------------------------------------------- /dependencies/jsoncpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/README.md -------------------------------------------------------------------------------- /dependencies/jsoncpp/amalgamate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/amalgamate.py -------------------------------------------------------------------------------- /dependencies/jsoncpp/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/appveyor.yml -------------------------------------------------------------------------------- /dependencies/jsoncpp/dev.makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/dev.makefile -------------------------------------------------------------------------------- /dependencies/jsoncpp/doc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/doc/readme.txt -------------------------------------------------------------------------------- /dependencies/jsoncpp/doxybuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/doxybuild.py -------------------------------------------------------------------------------- /dependencies/jsoncpp/example/readFromStream/errorFormat.json: -------------------------------------------------------------------------------- 1 | { 2 | 1: "value" 3 | } -------------------------------------------------------------------------------- /dependencies/jsoncpp/get_version.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/get_version.pl -------------------------------------------------------------------------------- /dependencies/jsoncpp/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/meson.build -------------------------------------------------------------------------------- /dependencies/jsoncpp/reformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncpp/reformat.sh -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/fail_invalid_quote.json: -------------------------------------------------------------------------------- 1 | {'//this is bad JSON.'} -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/fail_test_array_01.json: -------------------------------------------------------------------------------- 1 | [ 1 2 3] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/fail_test_array_02.json: -------------------------------------------------------------------------------- 1 | [1,,] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/fail_test_object_01.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234,, } 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_array_01.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_array_01.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_array_02.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_array_02.json: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_array_03.json: -------------------------------------------------------------------------------- 1 | [ 1, 2 , 3,4,5] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_array_04.json: -------------------------------------------------------------------------------- 1 | [1, "abc" , 12.3, -4] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_01.expected: -------------------------------------------------------------------------------- 1 | .=123456789 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_01.json: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_02.expected: -------------------------------------------------------------------------------- 1 | .=-123456789 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_02.json: -------------------------------------------------------------------------------- 1 | -0123456789 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_03.expected: -------------------------------------------------------------------------------- 1 | .=1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_03.json: -------------------------------------------------------------------------------- 1 | 1.2345678 2 | 3 | 4 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_04.expected: -------------------------------------------------------------------------------- 1 | .="abcdef" 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_04.json: -------------------------------------------------------------------------------- 1 | "abcdef" 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_05.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_05.json: -------------------------------------------------------------------------------- 1 | null 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_06.expected: -------------------------------------------------------------------------------- 1 | .=true 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_06.json: -------------------------------------------------------------------------------- 1 | true 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_07.expected: -------------------------------------------------------------------------------- 1 | .=false 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_07.json: -------------------------------------------------------------------------------- 1 | false 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_08.expected: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | .=null 3 | 4 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_08.json: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | null 3 | 4 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_09.expected: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | .=null 4 | 5 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_basic_09.json: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | null 4 | 5 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_01.expected: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | .=2147483647 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_01.json: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | 2147483647 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_02.expected: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | .=-2147483648 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_02.json: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | -2147483648 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_03.expected: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | .=4294967295 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_03.json: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | 4294967295 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_04.expected: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | .=0 3 | 4 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_04.json: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | 0 3 | 4 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_05.expected: -------------------------------------------------------------------------------- 1 | .=1 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_05.json: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_06_64bits.expected: -------------------------------------------------------------------------------- 1 | .=9223372036854775808 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_06_64bits.json: -------------------------------------------------------------------------------- 1 | 9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_07_64bits.expected: -------------------------------------------------------------------------------- 1 | .=-9223372036854775808 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_07_64bits.json: -------------------------------------------------------------------------------- 1 | -9223372036854775808 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_08_64bits.expected: -------------------------------------------------------------------------------- 1 | .=18446744073709551615 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_integer_08_64bits.json: -------------------------------------------------------------------------------- 1 | 18446744073709551615 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_object_01.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_object_01.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_object_02.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_object_02.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234 } 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_object_03.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .attribute="random" 3 | .count=1234 4 | .name="test" 5 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_object_04.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .=1234 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_object_04.json: -------------------------------------------------------------------------------- 1 | { 2 | "" : 1234 3 | } 4 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_real_01.json: -------------------------------------------------------------------------------- 1 | // 2^33 => out of integer range, switch to double 2 | 8589934592 3 | 4 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_real_12.expected: -------------------------------------------------------------------------------- 1 | // 2^64 -> switch to double. 2 | .=1.844674407370955e+19 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_real_12.json: -------------------------------------------------------------------------------- 1 | // 2^64 -> switch to double. 2 | 18446744073709551616 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_03.expected: -------------------------------------------------------------------------------- 1 | .="http://jsoncpp.sourceforge.net/" -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_03.json: -------------------------------------------------------------------------------- 1 | "http:\/\/jsoncpp.sourceforge.net\/" 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_04.expected: -------------------------------------------------------------------------------- 1 | .=""abc\def"" 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_04.json: -------------------------------------------------------------------------------- 1 | "\"abc\\def\"" 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_unicode_01.expected: -------------------------------------------------------------------------------- 1 | .="a" 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_unicode_01.json: -------------------------------------------------------------------------------- 1 | "\u0061" -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_unicode_02.expected: -------------------------------------------------------------------------------- 1 | .="¢" 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_unicode_02.json: -------------------------------------------------------------------------------- 1 | "\u00A2" -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_unicode_03.expected: -------------------------------------------------------------------------------- 1 | .="€" 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_unicode_03.json: -------------------------------------------------------------------------------- 1 | "\u20AC" -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_unicode_04.expected: -------------------------------------------------------------------------------- 1 | .="𝄞" 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_unicode_04.json: -------------------------------------------------------------------------------- 1 | "\uD834\uDD1E" -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_unicode_05.expected: -------------------------------------------------------------------------------- 1 | .="Zażółć gęślą jaźń" 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/legacy_test_string_unicode_05.json: -------------------------------------------------------------------------------- 1 | "Zażółć gęślą jaźń" -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/test_array_08.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/test_array_08.json: -------------------------------------------------------------------------------- 1 | [1,] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/test_object_05.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/data/test_object_05.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234, } 2 | -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /dependencies/jsoncpp/test/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /dependencies/jsoncpp/version.in: -------------------------------------------------------------------------------- 1 | @JSONCPP_VERSION@ 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncppold/.gitignore -------------------------------------------------------------------------------- /dependencies/jsoncppold/AUTHORS: -------------------------------------------------------------------------------- 1 | Baptiste Lepilleur 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/LICENSE: -------------------------------------------------------------------------------- 1 | The json-cpp library and this documentation are in Public Domain. 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncppold/README.txt -------------------------------------------------------------------------------- /dependencies/jsoncppold/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/jsoncppold/SConstruct -------------------------------------------------------------------------------- /dependencies/jsoncppold/devtools/__init__.py: -------------------------------------------------------------------------------- 1 | # module 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_array_01.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_array_01.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_array_02.expected: -------------------------------------------------------------------------------- 1 | .=[] 2 | .[0]=1 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_array_02.json: -------------------------------------------------------------------------------- 1 | [1] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_array_03.json: -------------------------------------------------------------------------------- 1 | [ 1, 2 , 3,4,5] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_array_04.json: -------------------------------------------------------------------------------- 1 | [1, "abc" , 12.3, -4] 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_01.expected: -------------------------------------------------------------------------------- 1 | .=123456789 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_01.json: -------------------------------------------------------------------------------- 1 | 0123456789 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_02.expected: -------------------------------------------------------------------------------- 1 | .=-123456789 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_02.json: -------------------------------------------------------------------------------- 1 | -0123456789 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_04.expected: -------------------------------------------------------------------------------- 1 | .="abcdef" 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_04.json: -------------------------------------------------------------------------------- 1 | "abcdef" 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_05.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_05.json: -------------------------------------------------------------------------------- 1 | null 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_06.expected: -------------------------------------------------------------------------------- 1 | .=true 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_06.json: -------------------------------------------------------------------------------- 1 | true 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_07.expected: -------------------------------------------------------------------------------- 1 | .=false 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_07.json: -------------------------------------------------------------------------------- 1 | false 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_08.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_08.json: -------------------------------------------------------------------------------- 1 | // C++ style comment 2 | null 3 | 4 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_09.expected: -------------------------------------------------------------------------------- 1 | .=null 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_basic_09.json: -------------------------------------------------------------------------------- 1 | /* C style comment 2 | */ 3 | null 4 | 5 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_integer_01.expected: -------------------------------------------------------------------------------- 1 | .=2147483647 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_integer_01.json: -------------------------------------------------------------------------------- 1 | // Max signed integer 2 | 2147483647 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_integer_02.expected: -------------------------------------------------------------------------------- 1 | .=-2147483648 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_integer_02.json: -------------------------------------------------------------------------------- 1 | // Min signed integer 2 | -2147483648 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_integer_03.expected: -------------------------------------------------------------------------------- 1 | .=4294967295 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_integer_03.json: -------------------------------------------------------------------------------- 1 | // Max unsigned integer 2 | 4294967295 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_integer_04.expected: -------------------------------------------------------------------------------- 1 | .=0 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_integer_04.json: -------------------------------------------------------------------------------- 1 | // Min unsigned integer 2 | 0 3 | 4 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_integer_05.expected: -------------------------------------------------------------------------------- 1 | .=1 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_integer_05.json: -------------------------------------------------------------------------------- 1 | 1 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_object_01.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_object_01.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_object_02.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .count=1234 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_object_02.json: -------------------------------------------------------------------------------- 1 | { "count" : 1234 } 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_object_04.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .=1234 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_object_04.json: -------------------------------------------------------------------------------- 1 | { 2 | "" : 1234 3 | } 4 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_preserve_comment_01.expected: -------------------------------------------------------------------------------- 1 | .={} 2 | .first=1 3 | .second=2 4 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_real_01.expected: -------------------------------------------------------------------------------- 1 | .=8589934592 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_real_01.json: -------------------------------------------------------------------------------- 1 | // 2^33 => out of integer range, switch to double 2 | 8589934592 3 | 4 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_real_02.expected: -------------------------------------------------------------------------------- 1 | .=-4294967295 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_real_03.expected: -------------------------------------------------------------------------------- 1 | .=-4294967295 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_real_04.expected: -------------------------------------------------------------------------------- 1 | .=1.2345678 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_string_unicode_01.expected: -------------------------------------------------------------------------------- 1 | .="a" 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_string_unicode_01.json: -------------------------------------------------------------------------------- 1 | "\u0061" -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_string_unicode_02.expected: -------------------------------------------------------------------------------- 1 | .="¢" 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_string_unicode_02.json: -------------------------------------------------------------------------------- 1 | "\u00A2" -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_string_unicode_03.expected: -------------------------------------------------------------------------------- 1 | .="€" 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_string_unicode_03.json: -------------------------------------------------------------------------------- 1 | "\u20AC" -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_string_unicode_04.expected: -------------------------------------------------------------------------------- 1 | .="𝄞" 2 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_string_unicode_04.json: -------------------------------------------------------------------------------- 1 | "\uD834\uDD1E" -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_string_unicode_05.expected: -------------------------------------------------------------------------------- 1 | .="Zażółć gęślą jaźń" 2 | 3 | -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/data/test_string_unicode_05.json: -------------------------------------------------------------------------------- 1 | "Zażółć gęślą jaźń" -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /dependencies/jsoncppold/test/jsonchecker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /dependencies/jsoncppold/version: -------------------------------------------------------------------------------- 1 | 0.5.0 -------------------------------------------------------------------------------- /dependencies/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/ChangeLog -------------------------------------------------------------------------------- /dependencies/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/FAQ -------------------------------------------------------------------------------- /dependencies/zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/INDEX -------------------------------------------------------------------------------- /dependencies/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/Makefile -------------------------------------------------------------------------------- /dependencies/zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/Makefile.in -------------------------------------------------------------------------------- /dependencies/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/README -------------------------------------------------------------------------------- /dependencies/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/adler32.c -------------------------------------------------------------------------------- /dependencies/zlib/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/as400/bndsrc -------------------------------------------------------------------------------- /dependencies/zlib/as400/compile.clp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/as400/compile.clp -------------------------------------------------------------------------------- /dependencies/zlib/as400/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/as400/readme.txt -------------------------------------------------------------------------------- /dependencies/zlib/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/as400/zlib.inc -------------------------------------------------------------------------------- /dependencies/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/compress.c -------------------------------------------------------------------------------- /dependencies/zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/configure -------------------------------------------------------------------------------- /dependencies/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/crc32.c -------------------------------------------------------------------------------- /dependencies/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/crc32.h -------------------------------------------------------------------------------- /dependencies/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/deflate.c -------------------------------------------------------------------------------- /dependencies/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/deflate.h -------------------------------------------------------------------------------- /dependencies/zlib/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/doc/algorithm.txt -------------------------------------------------------------------------------- /dependencies/zlib/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/doc/rfc1950.txt -------------------------------------------------------------------------------- /dependencies/zlib/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/doc/rfc1951.txt -------------------------------------------------------------------------------- /dependencies/zlib/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/doc/rfc1952.txt -------------------------------------------------------------------------------- /dependencies/zlib/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/doc/txtvsbin.txt -------------------------------------------------------------------------------- /dependencies/zlib/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/examples/enough.c -------------------------------------------------------------------------------- /dependencies/zlib/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/examples/fitblk.c -------------------------------------------------------------------------------- /dependencies/zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/examples/gun.c -------------------------------------------------------------------------------- /dependencies/zlib/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/examples/gzjoin.c -------------------------------------------------------------------------------- /dependencies/zlib/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/examples/gzlog.c -------------------------------------------------------------------------------- /dependencies/zlib/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/examples/gzlog.h -------------------------------------------------------------------------------- /dependencies/zlib/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/examples/zpipe.c -------------------------------------------------------------------------------- /dependencies/zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/examples/zran.c -------------------------------------------------------------------------------- /dependencies/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/gzclose.c -------------------------------------------------------------------------------- /dependencies/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/gzguts.h -------------------------------------------------------------------------------- /dependencies/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/gzlib.c -------------------------------------------------------------------------------- /dependencies/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/gzread.c -------------------------------------------------------------------------------- /dependencies/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/gzwrite.c -------------------------------------------------------------------------------- /dependencies/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/infback.c -------------------------------------------------------------------------------- /dependencies/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/inffast.c -------------------------------------------------------------------------------- /dependencies/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/inffast.h -------------------------------------------------------------------------------- /dependencies/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/inffixed.h -------------------------------------------------------------------------------- /dependencies/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/inflate.c -------------------------------------------------------------------------------- /dependencies/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/inflate.h -------------------------------------------------------------------------------- /dependencies/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/inftrees.c -------------------------------------------------------------------------------- /dependencies/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/inftrees.h -------------------------------------------------------------------------------- /dependencies/zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/make_vms.com -------------------------------------------------------------------------------- /dependencies/zlib/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/msdos/Makefile.tc -------------------------------------------------------------------------------- /dependencies/zlib/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/nintendods/README -------------------------------------------------------------------------------- /dependencies/zlib/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/old/Makefile.emx -------------------------------------------------------------------------------- /dependencies/zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/old/README -------------------------------------------------------------------------------- /dependencies/zlib/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/old/descrip.mms -------------------------------------------------------------------------------- /dependencies/zlib/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/old/os2/zlib.def -------------------------------------------------------------------------------- /dependencies/zlib/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/qnx/package.qpg -------------------------------------------------------------------------------- /dependencies/zlib/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/test/example.c -------------------------------------------------------------------------------- /dependencies/zlib/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/test/infcover.c -------------------------------------------------------------------------------- /dependencies/zlib/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/test/minigzip.c -------------------------------------------------------------------------------- /dependencies/zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/treebuild.xml -------------------------------------------------------------------------------- /dependencies/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/trees.c -------------------------------------------------------------------------------- /dependencies/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/trees.h -------------------------------------------------------------------------------- /dependencies/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/uncompr.c -------------------------------------------------------------------------------- /dependencies/zlib/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /dependencies/zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/win32/VisualC.txt -------------------------------------------------------------------------------- /dependencies/zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/win32/zlib.def -------------------------------------------------------------------------------- /dependencies/zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /dependencies/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zconf.h -------------------------------------------------------------------------------- /dependencies/zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /dependencies/zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zconf.h.in -------------------------------------------------------------------------------- /dependencies/zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zlib.3 -------------------------------------------------------------------------------- /dependencies/zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /dependencies/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zlib.h -------------------------------------------------------------------------------- /dependencies/zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zlib.map -------------------------------------------------------------------------------- /dependencies/zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zlib.pc.cmakein -------------------------------------------------------------------------------- /dependencies/zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zlib.pc.in -------------------------------------------------------------------------------- /dependencies/zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zlib2ansi -------------------------------------------------------------------------------- /dependencies/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zutil.c -------------------------------------------------------------------------------- /dependencies/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/dependencies/zlib/zutil.h -------------------------------------------------------------------------------- /exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/exec.py -------------------------------------------------------------------------------- /hylcmaterials/basket1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/hylcmaterials/basket1.json -------------------------------------------------------------------------------- /hylcmaterials/honey1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/hylcmaterials/honey1.json -------------------------------------------------------------------------------- /hylcmaterials/rib1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/hylcmaterials/rib1.json -------------------------------------------------------------------------------- /hylcmaterials/rib1_noreg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/hylcmaterials/rib1_noreg.json -------------------------------------------------------------------------------- /hylcmaterials/satin01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/hylcmaterials/satin01.json -------------------------------------------------------------------------------- /hylcmaterials/satin1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/hylcmaterials/satin1.json -------------------------------------------------------------------------------- /hylcmaterials/stock01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/hylcmaterials/stock01.json -------------------------------------------------------------------------------- /hylcmaterials/stock1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/hylcmaterials/stock1.json -------------------------------------------------------------------------------- /hylcmaterials/stock1_bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/hylcmaterials/stock1_bad.json -------------------------------------------------------------------------------- /imgs/demo_jump.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/imgs/demo_jump.gif -------------------------------------------------------------------------------- /materials/11oz-black-denim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/11oz-black-denim.json -------------------------------------------------------------------------------- /materials/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/README -------------------------------------------------------------------------------- /materials/aluminium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/aluminium.json -------------------------------------------------------------------------------- /materials/camel-ponte-roma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/camel-ponte-roma.json -------------------------------------------------------------------------------- /materials/gray-interlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/gray-interlock.json -------------------------------------------------------------------------------- /materials/ivory-rib-knit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/ivory-rib-knit.json -------------------------------------------------------------------------------- /materials/navy-sparkle-sweat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/navy-sparkle-sweat.json -------------------------------------------------------------------------------- /materials/paper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/paper.json -------------------------------------------------------------------------------- /materials/pink-ribbon-brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/pink-ribbon-brown.json -------------------------------------------------------------------------------- /materials/royal-target.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/royal-target.json -------------------------------------------------------------------------------- /materials/tango-red-jet-set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/tango-red-jet-set.json -------------------------------------------------------------------------------- /materials/white-dots-on-blk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/white-dots-on-blk.json -------------------------------------------------------------------------------- /materials/white-swim-solid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/materials/white-swim-solid.json -------------------------------------------------------------------------------- /mathematica/cylinderII.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/mathematica/cylinderII.nb -------------------------------------------------------------------------------- /mathematica/cylinderII_2d.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/mathematica/cylinderII_2d.nb -------------------------------------------------------------------------------- /mathematica/macro.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/mathematica/macro.nb -------------------------------------------------------------------------------- /meshes/0000_body.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/0000_body.obj -------------------------------------------------------------------------------- /meshes/0000_garment.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/0000_garment.obj -------------------------------------------------------------------------------- /meshes/0200_body.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/0200_body.obj -------------------------------------------------------------------------------- /meshes/0200_garment.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/0200_garment.obj -------------------------------------------------------------------------------- /meshes/arm_body.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/arm_body.obj -------------------------------------------------------------------------------- /meshes/arm_garment.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/arm_garment.obj -------------------------------------------------------------------------------- /meshes/cylinder.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/cylinder.obj -------------------------------------------------------------------------------- /meshes/cylinderm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/cylinderm.obj -------------------------------------------------------------------------------- /meshes/cylinderw.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/cylinderw.obj -------------------------------------------------------------------------------- /meshes/dance-paused.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/dance-paused.mot -------------------------------------------------------------------------------- /meshes/dance.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/dance.mot -------------------------------------------------------------------------------- /meshes/dart.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/dart.obj -------------------------------------------------------------------------------- /meshes/dartm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/dartm.obj -------------------------------------------------------------------------------- /meshes/dartw.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/dartw.obj -------------------------------------------------------------------------------- /meshes/dense_tshirt.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/dense_tshirt.obj -------------------------------------------------------------------------------- /meshes/disk.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/disk.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0000.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0000.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0001.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0001.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0002.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0002.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0003.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0003.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0004.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0004.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0005.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0005.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0006.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0006.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0007.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0007.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0008.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0008.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0009.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0009.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0010.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0010.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0011.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0011.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0012.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0012.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0013.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0013.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0014.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0014.obj -------------------------------------------------------------------------------- /meshes/female-objs/body0015.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/body0015.obj -------------------------------------------------------------------------------- /meshes/female-objs/shrink.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/female-objs/shrink.hs -------------------------------------------------------------------------------- /meshes/flag.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/flag.obj -------------------------------------------------------------------------------- /meshes/guy.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0000.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0000.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0001.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0001.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0002.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0002.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0003.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0003.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0004.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0004.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0004a.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0004a.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0005.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0005.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0006.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0006.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0007.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0007.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0008.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0008.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0009.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0009.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0009a.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0009a.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0010.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0010.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0011.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0011.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0012.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0012.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0013.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0013.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0014.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0014.obj -------------------------------------------------------------------------------- /meshes/guy_mannequin/body0015.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_mannequin/body0015.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0000.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0000.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0001.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0001.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0002.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0002.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0003.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0003.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0004.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0004.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0004b.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0004b.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0005.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0005.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0006.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0006.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0007.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0007.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0008.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0008.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0009.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0009.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0009b.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0009b.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0010.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0010.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0011.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0011.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0012.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0012.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0013.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0013.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0014.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0014.obj -------------------------------------------------------------------------------- /meshes/guy_shrunk/body0015.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/guy_shrunk/body0015.obj -------------------------------------------------------------------------------- /meshes/hylc_bunny.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_bunny.obj -------------------------------------------------------------------------------- /meshes/hylc_city.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_city.obj -------------------------------------------------------------------------------- /meshes/hylc_moebius1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_moebius1.obj -------------------------------------------------------------------------------- /meshes/hylc_moebius2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_moebius2.obj -------------------------------------------------------------------------------- /meshes/hylc_scarf.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_scarf.obj -------------------------------------------------------------------------------- /meshes/hylc_square.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_square.obj -------------------------------------------------------------------------------- /meshes/hylc_square0.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_square0.obj -------------------------------------------------------------------------------- /meshes/hylc_square0p.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_square0p.obj -------------------------------------------------------------------------------- /meshes/hylc_square1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_square1.obj -------------------------------------------------------------------------------- /meshes/hylc_square1p.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_square1p.obj -------------------------------------------------------------------------------- /meshes/hylc_square1pTMP01.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_square1pTMP01.obj -------------------------------------------------------------------------------- /meshes/hylc_square2p.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_square2p.obj -------------------------------------------------------------------------------- /meshes/hylc_strip.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_strip.obj -------------------------------------------------------------------------------- /meshes/hylc_thanks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_thanks.obj -------------------------------------------------------------------------------- /meshes/hylc_tmp.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_tmp.obj -------------------------------------------------------------------------------- /meshes/hylc_yarnmadillo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_yarnmadillo.obj -------------------------------------------------------------------------------- /meshes/hylc_yarnny.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_yarnny.obj -------------------------------------------------------------------------------- /meshes/hylc_yarnny2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/hylc_yarnny2.obj -------------------------------------------------------------------------------- /meshes/jacket.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/jacket.obj -------------------------------------------------------------------------------- /meshes/jacketm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/jacketm.obj -------------------------------------------------------------------------------- /meshes/jacketw.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/jacketw.obj -------------------------------------------------------------------------------- /meshes/karate-mod.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/karate-mod.mot -------------------------------------------------------------------------------- /meshes/karate-smooth.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/karate-smooth.mot -------------------------------------------------------------------------------- /meshes/karate.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/karate.ma -------------------------------------------------------------------------------- /meshes/karate.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/karate.mot -------------------------------------------------------------------------------- /meshes/karate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/karate.obj -------------------------------------------------------------------------------- /meshes/letter-with-midpoints.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/letter-with-midpoints.obj -------------------------------------------------------------------------------- /meshes/letter.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/letter.obj -------------------------------------------------------------------------------- /meshes/meanshape_pbns.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/meanshape_pbns.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0000.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0000.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0001.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0001.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0002.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0002.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0003.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0003.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0004.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0004.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0005.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0005.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0006.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0006.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0007.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0007.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0008.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0008.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0009.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0009.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0010.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0010.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0011.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0011.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0012.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0012.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0013.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0013.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0014.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0014.obj -------------------------------------------------------------------------------- /meshes/motion_body/body0015.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/motion_body/body0015.obj -------------------------------------------------------------------------------- /meshes/nodefiles/flag.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/nodefiles/flag.node -------------------------------------------------------------------------------- /meshes/nodefiles/mktablecloth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/nodefiles/mktablecloth.py -------------------------------------------------------------------------------- /meshes/nodefiles/square.1.ele: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/nodefiles/square.1.ele -------------------------------------------------------------------------------- /meshes/nodefiles/square.1.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/nodefiles/square.1.node -------------------------------------------------------------------------------- /meshes/nodefiles/square.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/nodefiles/square.node -------------------------------------------------------------------------------- /meshes/none.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/none.mot -------------------------------------------------------------------------------- /meshes/none_orientationfix.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/none_orientationfix.mot -------------------------------------------------------------------------------- /meshes/other1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/other1.txt -------------------------------------------------------------------------------- /meshes/pants.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/pants.mtl -------------------------------------------------------------------------------- /meshes/pants.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/pants.obj -------------------------------------------------------------------------------- /meshes/pants2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/pants2.obj -------------------------------------------------------------------------------- /meshes/pants3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/pants3.obj -------------------------------------------------------------------------------- /meshes/pbns_posedsbs_female.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/pbns_posedsbs_female.obj -------------------------------------------------------------------------------- /meshes/pbns_posedsbs_female.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/pbns_posedsbs_female.txt -------------------------------------------------------------------------------- /meshes/pbns_posedsbs_male.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/pbns_posedsbs_male.obj -------------------------------------------------------------------------------- /meshes/pbns_posedsbs_male.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/pbns_posedsbs_male.txt -------------------------------------------------------------------------------- /meshes/pole.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/pole.obj -------------------------------------------------------------------------------- /meshes/rest_smpl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/rest_smpl.obj -------------------------------------------------------------------------------- /meshes/robe.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/robe.obj -------------------------------------------------------------------------------- /meshes/robem.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/robem.obj -------------------------------------------------------------------------------- /meshes/robew.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/robew.obj -------------------------------------------------------------------------------- /meshes/roller.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/roller.obj -------------------------------------------------------------------------------- /meshes/scripts/Obj.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/Obj.hs -------------------------------------------------------------------------------- /meshes/scripts/count.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/count.hs -------------------------------------------------------------------------------- /meshes/scripts/cylinder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/cylinder.hs -------------------------------------------------------------------------------- /meshes/scripts/ffwd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/ffwd.sh -------------------------------------------------------------------------------- /meshes/scripts/flip.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/flip.hs -------------------------------------------------------------------------------- /meshes/scripts/fold.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/fold.hs -------------------------------------------------------------------------------- /meshes/scripts/pause.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/pause.hs -------------------------------------------------------------------------------- /meshes/scripts/plastic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/plastic.hs -------------------------------------------------------------------------------- /meshes/scripts/rotate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/rotate.hs -------------------------------------------------------------------------------- /meshes/scripts/shrink.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/shrink.hs -------------------------------------------------------------------------------- /meshes/scripts/svg2poly.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/svg2poly.hs -------------------------------------------------------------------------------- /meshes/scripts/translate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/scripts/translate.hs -------------------------------------------------------------------------------- /meshes/sequence1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/sequence1.txt -------------------------------------------------------------------------------- /meshes/sequence2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/sequence2.txt -------------------------------------------------------------------------------- /meshes/shrinkobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/shrinkobj.py -------------------------------------------------------------------------------- /meshes/sleeve.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/sleeve.obj -------------------------------------------------------------------------------- /meshes/sleevem.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/sleevem.obj -------------------------------------------------------------------------------- /meshes/sleevew.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/sleevew.obj -------------------------------------------------------------------------------- /meshes/smpl.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/smpl.obj -------------------------------------------------------------------------------- /meshes/smplb.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/smplb.obj -------------------------------------------------------------------------------- /meshes/sphere-inv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/sphere-inv.obj -------------------------------------------------------------------------------- /meshes/sphere.mot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/sphere.mot -------------------------------------------------------------------------------- /meshes/sphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/sphere.obj -------------------------------------------------------------------------------- /meshes/sphere2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/sphere2.obj -------------------------------------------------------------------------------- /meshes/square.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/square.obj -------------------------------------------------------------------------------- /meshes/square4.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/square4.obj -------------------------------------------------------------------------------- /meshes/square_kink.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/square_kink.obj -------------------------------------------------------------------------------- /meshes/squaretear.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/squaretear.obj -------------------------------------------------------------------------------- /meshes/stdsmpl_female.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/stdsmpl_female.obj -------------------------------------------------------------------------------- /meshes/stdsmpl_male.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/stdsmpl_male.obj -------------------------------------------------------------------------------- /meshes/torso1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/torso1.txt -------------------------------------------------------------------------------- /meshes/torso2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/torso2.txt -------------------------------------------------------------------------------- /meshes/torso3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/torso3.txt -------------------------------------------------------------------------------- /meshes/torso4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/torso4.txt -------------------------------------------------------------------------------- /meshes/torso5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/torso5.txt -------------------------------------------------------------------------------- /meshes/tshirt.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/tshirt.obj -------------------------------------------------------------------------------- /meshes/tshirt2_uv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/tshirt2_uv.obj -------------------------------------------------------------------------------- /meshes/tshirt2iso_uv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/tshirt2iso_uv.obj -------------------------------------------------------------------------------- /meshes/tshirt_uv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/tshirt_uv.obj -------------------------------------------------------------------------------- /meshes/tshirtiso_uvS.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/tshirtiso_uvS.obj -------------------------------------------------------------------------------- /meshes/tshirtm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/tshirtm.obj -------------------------------------------------------------------------------- /meshes/tshirtw.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/tshirtw.obj -------------------------------------------------------------------------------- /meshes/victor_dress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/victor_dress.obj -------------------------------------------------------------------------------- /meshes/victor_dress_flat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/victor_dress_flat.obj -------------------------------------------------------------------------------- /meshes/victor_dress_shaped.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/victor_dress_shaped.obj -------------------------------------------------------------------------------- /meshes/vto_tshirt.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/vto_tshirt.obj -------------------------------------------------------------------------------- /meshes/walkseq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/meshes/walkseq.txt -------------------------------------------------------------------------------- /models/female_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/models/female_model.json -------------------------------------------------------------------------------- /models/male_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/models/male_model.json -------------------------------------------------------------------------------- /motions/jump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/motions/jump.txt -------------------------------------------------------------------------------- /replay_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/replay_folder.py -------------------------------------------------------------------------------- /run_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/run_folder.py -------------------------------------------------------------------------------- /smpl_demo/jump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/smpl_demo/jump.json -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/1D/conf/basket_drapeX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/basket_drapeX.json -------------------------------------------------------------------------------- /tests/1D/conf/basket_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/basket_drapeY.json -------------------------------------------------------------------------------- /tests/1D/conf/basket_stretchX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/basket_stretchX.json -------------------------------------------------------------------------------- /tests/1D/conf/basket_stretchY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/basket_stretchY.json -------------------------------------------------------------------------------- /tests/1D/conf/honey_drapeX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/honey_drapeX.json -------------------------------------------------------------------------------- /tests/1D/conf/honey_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/honey_drapeY.json -------------------------------------------------------------------------------- /tests/1D/conf/honey_stretchX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/honey_stretchX.json -------------------------------------------------------------------------------- /tests/1D/conf/honey_stretchY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/honey_stretchY.json -------------------------------------------------------------------------------- /tests/1D/conf/rib_drapeX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/rib_drapeX.json -------------------------------------------------------------------------------- /tests/1D/conf/rib_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/rib_drapeY.json -------------------------------------------------------------------------------- /tests/1D/conf/rib_stretchX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/rib_stretchX.json -------------------------------------------------------------------------------- /tests/1D/conf/rib_stretchY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/rib_stretchY.json -------------------------------------------------------------------------------- /tests/1D/conf/satin_drapeX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/satin_drapeX.json -------------------------------------------------------------------------------- /tests/1D/conf/satin_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/satin_drapeY.json -------------------------------------------------------------------------------- /tests/1D/conf/satin_stretchX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/satin_stretchX.json -------------------------------------------------------------------------------- /tests/1D/conf/satin_stretchY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/satin_stretchY.json -------------------------------------------------------------------------------- /tests/1D/conf/stock_drapeX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/stock_drapeX.json -------------------------------------------------------------------------------- /tests/1D/conf/stock_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/stock_drapeY.json -------------------------------------------------------------------------------- /tests/1D/conf/stock_stretchX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/stock_stretchX.json -------------------------------------------------------------------------------- /tests/1D/conf/stock_stretchY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/1D/conf/stock_stretchY.json -------------------------------------------------------------------------------- /tests/2D/conf/basket_drapeX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/basket_drapeX.json -------------------------------------------------------------------------------- /tests/2D/conf/basket_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/basket_drapeY.json -------------------------------------------------------------------------------- /tests/2D/conf/basket_stretchX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/basket_stretchX.json -------------------------------------------------------------------------------- /tests/2D/conf/basket_stretchY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/basket_stretchY.json -------------------------------------------------------------------------------- /tests/2D/conf/honey_drapeX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/honey_drapeX.json -------------------------------------------------------------------------------- /tests/2D/conf/honey_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/honey_drapeY.json -------------------------------------------------------------------------------- /tests/2D/conf/honey_stretchX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/honey_stretchX.json -------------------------------------------------------------------------------- /tests/2D/conf/honey_stretchY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/honey_stretchY.json -------------------------------------------------------------------------------- /tests/2D/conf/rib_drapeX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/rib_drapeX.json -------------------------------------------------------------------------------- /tests/2D/conf/rib_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/rib_drapeY.json -------------------------------------------------------------------------------- /tests/2D/conf/rib_stretchX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/rib_stretchX.json -------------------------------------------------------------------------------- /tests/2D/conf/rib_stretchY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/rib_stretchY.json -------------------------------------------------------------------------------- /tests/2D/conf/satin_drapeX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/satin_drapeX.json -------------------------------------------------------------------------------- /tests/2D/conf/satin_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/satin_drapeY.json -------------------------------------------------------------------------------- /tests/2D/conf/satin_stretchX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/satin_stretchX.json -------------------------------------------------------------------------------- /tests/2D/conf/satin_stretchY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/satin_stretchY.json -------------------------------------------------------------------------------- /tests/2D/conf/stock_drapeX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/stock_drapeX.json -------------------------------------------------------------------------------- /tests/2D/conf/stock_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/stock_drapeY.json -------------------------------------------------------------------------------- /tests/2D/conf/stock_stretchX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/stock_stretchX.json -------------------------------------------------------------------------------- /tests/2D/conf/stock_stretchY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/2D/conf/stock_stretchY.json -------------------------------------------------------------------------------- /tests/fun/conf/hylc_TMP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/fun/conf/hylc_TMP.json -------------------------------------------------------------------------------- /tests/fun/conf/hylc_scarf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/fun/conf/hylc_scarf.json -------------------------------------------------------------------------------- /tests/fun/conf/hylc_thanks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/fun/conf/hylc_thanks.json -------------------------------------------------------------------------------- /tests/fun/conf/hylc_yarnny.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/fun/conf/hylc_yarnny.json -------------------------------------------------------------------------------- /tests/other/conf/ribbad_drapeY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/other/conf/ribbad_drapeY.json -------------------------------------------------------------------------------- /tests/shirt/conf/shirt_basket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/shirt/conf/shirt_basket.json -------------------------------------------------------------------------------- /tests/shirt/conf/shirt_honey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/shirt/conf/shirt_honey.json -------------------------------------------------------------------------------- /tests/shirt/conf/shirt_rib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/shirt/conf/shirt_rib.json -------------------------------------------------------------------------------- /tests/shirt/conf/shirt_satin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/shirt/conf/shirt_satin.json -------------------------------------------------------------------------------- /tests/shirt/conf/shirt_stock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/tests/shirt/conf/shirt_stock.json -------------------------------------------------------------------------------- /v0.2.1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/CMakeLists.txt -------------------------------------------------------------------------------- /v0.2.1/auglag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/auglag.cpp -------------------------------------------------------------------------------- /v0.2.1/bah.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/bah.cpp -------------------------------------------------------------------------------- /v0.2.1/bah.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/bah.hpp -------------------------------------------------------------------------------- /v0.2.1/blockvectors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/blockvectors.hpp -------------------------------------------------------------------------------- /v0.2.1/breaking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/breaking.cpp -------------------------------------------------------------------------------- /v0.2.1/breaking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/breaking.hpp -------------------------------------------------------------------------------- /v0.2.1/bvh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/bvh.cpp -------------------------------------------------------------------------------- /v0.2.1/bvh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/bvh.hpp -------------------------------------------------------------------------------- /v0.2.1/cloth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/cloth.cpp -------------------------------------------------------------------------------- /v0.2.1/cloth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/cloth.hpp -------------------------------------------------------------------------------- /v0.2.1/collision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/collision.cpp -------------------------------------------------------------------------------- /v0.2.1/collision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/collision.hpp -------------------------------------------------------------------------------- /v0.2.1/collisionutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/collisionutil.cpp -------------------------------------------------------------------------------- /v0.2.1/collisionutil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/collisionutil.hpp -------------------------------------------------------------------------------- /v0.2.1/conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/conf.cpp -------------------------------------------------------------------------------- /v0.2.1/conf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/conf.hpp -------------------------------------------------------------------------------- /v0.2.1/constraint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/constraint.cpp -------------------------------------------------------------------------------- /v0.2.1/constraint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/constraint.hpp -------------------------------------------------------------------------------- /v0.2.1/dde.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/dde.cpp -------------------------------------------------------------------------------- /v0.2.1/dde.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/dde.hpp -------------------------------------------------------------------------------- /v0.2.1/display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/display.cpp -------------------------------------------------------------------------------- /v0.2.1/display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/display.hpp -------------------------------------------------------------------------------- /v0.2.1/displayphysics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/displayphysics.cpp -------------------------------------------------------------------------------- /v0.2.1/displayphysics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/displayphysics.hpp -------------------------------------------------------------------------------- /v0.2.1/displayplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/displayplay.cpp -------------------------------------------------------------------------------- /v0.2.1/displayplay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/displayplay.hpp -------------------------------------------------------------------------------- /v0.2.1/displayreplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/displayreplay.cpp -------------------------------------------------------------------------------- /v0.2.1/displayreplay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/displayreplay.hpp -------------------------------------------------------------------------------- /v0.2.1/displaytesting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/displaytesting.cpp -------------------------------------------------------------------------------- /v0.2.1/displaytesting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/displaytesting.hpp -------------------------------------------------------------------------------- /v0.2.1/dynamicremesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/dynamicremesh.cpp -------------------------------------------------------------------------------- /v0.2.1/dynamicremesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/dynamicremesh.hpp -------------------------------------------------------------------------------- /v0.2.1/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/geometry.cpp -------------------------------------------------------------------------------- /v0.2.1/geometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/geometry.hpp -------------------------------------------------------------------------------- /v0.2.1/handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/handle.cpp -------------------------------------------------------------------------------- /v0.2.1/handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/handle.hpp -------------------------------------------------------------------------------- /v0.2.1/hylc/hylc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/hylc/hylc.cpp -------------------------------------------------------------------------------- /v0.2.1/hylc/hylc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/hylc/hylc.hpp -------------------------------------------------------------------------------- /v0.2.1/hylc/hylc_conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/hylc/hylc_conf.cpp -------------------------------------------------------------------------------- /v0.2.1/hylc/hylc_conf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/hylc/hylc_conf.hpp -------------------------------------------------------------------------------- /v0.2.1/hylc/materials/Poly1D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/hylc/materials/Poly1D.hpp -------------------------------------------------------------------------------- /v0.2.1/hylc/materials/Poly2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/hylc/materials/Poly2D.hpp -------------------------------------------------------------------------------- /v0.2.1/hylc/seamforce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/hylc/seamforce.cpp -------------------------------------------------------------------------------- /v0.2.1/hylc/seamforce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/hylc/seamforce.hpp -------------------------------------------------------------------------------- /v0.2.1/hylc/strain/strain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/hylc/strain/strain.hpp -------------------------------------------------------------------------------- /v0.2.1/hylc/strain/strain_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/hylc/strain/strain_value.cpp -------------------------------------------------------------------------------- /v0.2.1/io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/io.cpp -------------------------------------------------------------------------------- /v0.2.1/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/io.hpp -------------------------------------------------------------------------------- /v0.2.1/lbfgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/lbfgs.cpp -------------------------------------------------------------------------------- /v0.2.1/localopt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/localopt.cpp -------------------------------------------------------------------------------- /v0.2.1/localopt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/localopt.hpp -------------------------------------------------------------------------------- /v0.2.1/lsnewton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/lsnewton.cpp -------------------------------------------------------------------------------- /v0.2.1/magic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/magic.cpp -------------------------------------------------------------------------------- /v0.2.1/magic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/magic.hpp -------------------------------------------------------------------------------- /v0.2.1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/main.cpp -------------------------------------------------------------------------------- /v0.2.1/mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/mesh.cpp -------------------------------------------------------------------------------- /v0.2.1/mesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/mesh.hpp -------------------------------------------------------------------------------- /v0.2.1/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/misc.cpp -------------------------------------------------------------------------------- /v0.2.1/misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/misc.hpp -------------------------------------------------------------------------------- /v0.2.1/morph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/morph.cpp -------------------------------------------------------------------------------- /v0.2.1/morph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/morph.hpp -------------------------------------------------------------------------------- /v0.2.1/mot_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/mot_parser.cpp -------------------------------------------------------------------------------- /v0.2.1/mot_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/mot_parser.hpp -------------------------------------------------------------------------------- /v0.2.1/nearobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/nearobs.cpp -------------------------------------------------------------------------------- /v0.2.1/nearobs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/nearobs.hpp -------------------------------------------------------------------------------- /v0.2.1/nlcg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/nlcg.cpp -------------------------------------------------------------------------------- /v0.2.1/obstacle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/obstacle.cpp -------------------------------------------------------------------------------- /v0.2.1/obstacle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/obstacle.hpp -------------------------------------------------------------------------------- /v0.2.1/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/opengl.hpp -------------------------------------------------------------------------------- /v0.2.1/optimization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/optimization.hpp -------------------------------------------------------------------------------- /v0.2.1/physics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/physics.cpp -------------------------------------------------------------------------------- /v0.2.1/physics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/physics.hpp -------------------------------------------------------------------------------- /v0.2.1/plasticity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/plasticity.cpp -------------------------------------------------------------------------------- /v0.2.1/plasticity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/plasticity.hpp -------------------------------------------------------------------------------- /v0.2.1/popfilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/popfilter.cpp -------------------------------------------------------------------------------- /v0.2.1/popfilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/popfilter.hpp -------------------------------------------------------------------------------- /v0.2.1/proximity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/proximity.cpp -------------------------------------------------------------------------------- /v0.2.1/proximity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/proximity.hpp -------------------------------------------------------------------------------- /v0.2.1/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/proxy.cpp -------------------------------------------------------------------------------- /v0.2.1/proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/proxy.hpp -------------------------------------------------------------------------------- /v0.2.1/referenceshape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/referenceshape.cpp -------------------------------------------------------------------------------- /v0.2.1/referenceshape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/referenceshape.hpp -------------------------------------------------------------------------------- /v0.2.1/remesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/remesh.cpp -------------------------------------------------------------------------------- /v0.2.1/remesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/remesh.hpp -------------------------------------------------------------------------------- /v0.2.1/runphysics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/runphysics.cpp -------------------------------------------------------------------------------- /v0.2.1/runphysics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/runphysics.hpp -------------------------------------------------------------------------------- /v0.2.1/separate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/separate.cpp -------------------------------------------------------------------------------- /v0.2.1/separate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/separate.hpp -------------------------------------------------------------------------------- /v0.2.1/separateobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/separateobs.cpp -------------------------------------------------------------------------------- /v0.2.1/separateobs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/separateobs.hpp -------------------------------------------------------------------------------- /v0.2.1/sepstrength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/sepstrength.cpp -------------------------------------------------------------------------------- /v0.2.1/sepstrength.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/sepstrength.hpp -------------------------------------------------------------------------------- /v0.2.1/simulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/simulation.cpp -------------------------------------------------------------------------------- /v0.2.1/simulation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/simulation.hpp -------------------------------------------------------------------------------- /v0.2.1/smpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/smpl.cpp -------------------------------------------------------------------------------- /v0.2.1/smpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/smpl.h -------------------------------------------------------------------------------- /v0.2.1/smpl.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/smpl.h.ref -------------------------------------------------------------------------------- /v0.2.1/sparse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/sparse.hpp -------------------------------------------------------------------------------- /v0.2.1/sparse_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/sparse_solver.cpp -------------------------------------------------------------------------------- /v0.2.1/sparse_solver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/sparse_solver.hpp -------------------------------------------------------------------------------- /v0.2.1/spline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/spline.cpp -------------------------------------------------------------------------------- /v0.2.1/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/spline.hpp -------------------------------------------------------------------------------- /v0.2.1/strainlimiting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/strainlimiting.cpp -------------------------------------------------------------------------------- /v0.2.1/strainlimiting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/strainlimiting.hpp -------------------------------------------------------------------------------- /v0.2.1/subset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/subset.cpp -------------------------------------------------------------------------------- /v0.2.1/subset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/subset.hpp -------------------------------------------------------------------------------- /v0.2.1/taucs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/taucs.cpp -------------------------------------------------------------------------------- /v0.2.1/taucs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/taucs.hpp -------------------------------------------------------------------------------- /v0.2.1/tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/tensor.cpp -------------------------------------------------------------------------------- /v0.2.1/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/tensor.h -------------------------------------------------------------------------------- /v0.2.1/tensormax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/tensormax.cpp -------------------------------------------------------------------------------- /v0.2.1/tensormax.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/tensormax.hpp -------------------------------------------------------------------------------- /v0.2.1/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/timer.cpp -------------------------------------------------------------------------------- /v0.2.1/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/timer.hpp -------------------------------------------------------------------------------- /v0.2.1/transformation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/transformation.cpp -------------------------------------------------------------------------------- /v0.2.1/transformation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/transformation.hpp -------------------------------------------------------------------------------- /v0.2.1/trustregion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/trustregion.cpp -------------------------------------------------------------------------------- /v0.2.1/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/util.cpp -------------------------------------------------------------------------------- /v0.2.1/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/util.hpp -------------------------------------------------------------------------------- /v0.2.1/vectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/vectors.cpp -------------------------------------------------------------------------------- /v0.2.1/vectors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/vectors.hpp -------------------------------------------------------------------------------- /v0.2.1/winport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/winport.hpp -------------------------------------------------------------------------------- /v0.2.1/x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FishWoWater/ARCSim-For-SMPL/HEAD/v0.2.1/x --------------------------------------------------------------------------------