├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── arrangements ├── LICENSE ├── code │ ├── aux_structure.cpp │ ├── aux_structure.h │ ├── common.h │ ├── custom_stack.h │ ├── debug.h │ ├── fast_trimesh.cpp │ ├── fast_trimesh.h │ ├── intersection_classification.cpp │ ├── intersection_classification.h │ ├── io_functions.cpp │ ├── io_functions.h │ ├── processing.cpp │ ├── processing.h │ ├── solve_intersections.cpp │ ├── solve_intersections.h │ ├── tree.h │ ├── triangle_soup.cpp │ ├── triangle_soup.h │ ├── triangulation.cpp │ ├── triangulation.h │ └── utils.h └── external │ ├── Cinolib │ ├── LICENSE │ ├── README.md │ ├── TODO.md │ ├── cinolib-config.cmake │ ├── external │ │ ├── eigen │ │ │ ├── CMakeLists.txt │ │ │ ├── COPYING.APACHE │ │ │ ├── COPYING.BSD │ │ │ ├── COPYING.GPL │ │ │ ├── COPYING.LGPL │ │ │ ├── COPYING.MINPACK │ │ │ ├── COPYING.MPL2 │ │ │ ├── COPYING.README │ │ │ ├── CTestConfig.cmake │ │ │ ├── CTestCustom.cmake.in │ │ │ ├── Eigen │ │ │ │ ├── Cholesky │ │ │ │ ├── CholmodSupport │ │ │ │ ├── Core │ │ │ │ ├── Dense │ │ │ │ ├── Eigen │ │ │ │ ├── Eigenvalues │ │ │ │ ├── Geometry │ │ │ │ ├── Householder │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ ├── Jacobi │ │ │ │ ├── KLUSupport │ │ │ │ ├── LU │ │ │ │ ├── MetisSupport │ │ │ │ ├── OrderingMethods │ │ │ │ ├── PaStiXSupport │ │ │ │ ├── PardisoSupport │ │ │ │ ├── QR │ │ │ │ ├── QtAlignedMalloc │ │ │ │ ├── SPQRSupport │ │ │ │ ├── SVD │ │ │ │ ├── Sparse │ │ │ │ ├── SparseCholesky │ │ │ │ ├── SparseCore │ │ │ │ ├── SparseLU │ │ │ │ ├── SparseQR │ │ │ │ ├── StdDeque │ │ │ │ ├── StdList │ │ │ │ ├── StdVector │ │ │ │ ├── SuperLUSupport │ │ │ │ ├── UmfPackSupport │ │ │ │ └── src │ │ │ │ │ ├── Cholesky │ │ │ │ │ ├── LDLT.h │ │ │ │ │ ├── LLT.h │ │ │ │ │ └── LLT_LAPACKE.h │ │ │ │ │ ├── CholmodSupport │ │ │ │ │ └── CholmodSupport.h │ │ │ │ │ ├── Core │ │ │ │ │ ├── ArithmeticSequence.h │ │ │ │ │ ├── Array.h │ │ │ │ │ ├── ArrayBase.h │ │ │ │ │ ├── ArrayWrapper.h │ │ │ │ │ ├── Assign.h │ │ │ │ │ ├── AssignEvaluator.h │ │ │ │ │ ├── Assign_MKL.h │ │ │ │ │ ├── BandMatrix.h │ │ │ │ │ ├── Block.h │ │ │ │ │ ├── BooleanRedux.h │ │ │ │ │ ├── CommaInitializer.h │ │ │ │ │ ├── ConditionEstimator.h │ │ │ │ │ ├── CoreEvaluators.h │ │ │ │ │ ├── CoreIterators.h │ │ │ │ │ ├── CwiseBinaryOp.h │ │ │ │ │ ├── CwiseNullaryOp.h │ │ │ │ │ ├── CwiseTernaryOp.h │ │ │ │ │ ├── CwiseUnaryOp.h │ │ │ │ │ ├── CwiseUnaryView.h │ │ │ │ │ ├── DenseBase.h │ │ │ │ │ ├── DenseCoeffsBase.h │ │ │ │ │ ├── DenseStorage.h │ │ │ │ │ ├── Diagonal.h │ │ │ │ │ ├── DiagonalMatrix.h │ │ │ │ │ ├── DiagonalProduct.h │ │ │ │ │ ├── Dot.h │ │ │ │ │ ├── EigenBase.h │ │ │ │ │ ├── ForceAlignedAccess.h │ │ │ │ │ ├── Fuzzy.h │ │ │ │ │ ├── GeneralProduct.h │ │ │ │ │ ├── GenericPacketMath.h │ │ │ │ │ ├── GlobalFunctions.h │ │ │ │ │ ├── IO.h │ │ │ │ │ ├── IndexedView.h │ │ │ │ │ ├── Inverse.h │ │ │ │ │ ├── Map.h │ │ │ │ │ ├── MapBase.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── MathFunctionsImpl.h │ │ │ │ │ ├── Matrix.h │ │ │ │ │ ├── MatrixBase.h │ │ │ │ │ ├── NestByValue.h │ │ │ │ │ ├── NoAlias.h │ │ │ │ │ ├── NumTraits.h │ │ │ │ │ ├── PartialReduxEvaluator.h │ │ │ │ │ ├── PermutationMatrix.h │ │ │ │ │ ├── PlainObjectBase.h │ │ │ │ │ ├── Product.h │ │ │ │ │ ├── ProductEvaluators.h │ │ │ │ │ ├── Random.h │ │ │ │ │ ├── Redux.h │ │ │ │ │ ├── Ref.h │ │ │ │ │ ├── Replicate.h │ │ │ │ │ ├── Reshaped.h │ │ │ │ │ ├── ReturnByValue.h │ │ │ │ │ ├── Reverse.h │ │ │ │ │ ├── Select.h │ │ │ │ │ ├── SelfAdjointView.h │ │ │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ │ │ ├── Solve.h │ │ │ │ │ ├── SolveTriangular.h │ │ │ │ │ ├── SolverBase.h │ │ │ │ │ ├── StableNorm.h │ │ │ │ │ ├── StlIterators.h │ │ │ │ │ ├── Stride.h │ │ │ │ │ ├── Swap.h │ │ │ │ │ ├── Transpose.h │ │ │ │ │ ├── Transpositions.h │ │ │ │ │ ├── TriangularMatrix.h │ │ │ │ │ ├── VectorBlock.h │ │ │ │ │ ├── VectorwiseOp.h │ │ │ │ │ ├── Visitor.h │ │ │ │ │ ├── arch │ │ │ │ │ │ ├── AVX │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── AltiVec │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── MatrixProduct.h │ │ │ │ │ │ │ ├── MatrixProductCommon.h │ │ │ │ │ │ │ ├── MatrixProductMMA.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── CUDA │ │ │ │ │ │ │ └── Complex.h │ │ │ │ │ │ ├── Default │ │ │ │ │ │ │ ├── BFloat16.h │ │ │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ │ │ │ ├── Half.h │ │ │ │ │ │ │ ├── Settings.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── GPU │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── HIP │ │ │ │ │ │ │ └── hcc │ │ │ │ │ │ │ │ └── math_constants.h │ │ │ │ │ │ ├── MSA │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ │ ├── NEON │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── SSE │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── SVE │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ ├── SYCL │ │ │ │ │ │ │ ├── InteropHeaders.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ │ │ │ └── TypeCasting.h │ │ │ │ │ │ └── ZVector │ │ │ │ │ │ │ ├── Complex.h │ │ │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ │ │ └── PacketMath.h │ │ │ │ │ ├── functors │ │ │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ │ │ ├── BinaryFunctors.h │ │ │ │ │ │ ├── NullaryFunctors.h │ │ │ │ │ │ ├── StlFunctors.h │ │ │ │ │ │ ├── TernaryFunctors.h │ │ │ │ │ │ └── UnaryFunctors.h │ │ │ │ │ ├── products │ │ │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ │ │ ├── Parallelizer.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ │ │ └── TriangularSolverVector.h │ │ │ │ │ └── util │ │ │ │ │ │ ├── BlasUtil.h │ │ │ │ │ │ ├── ConfigureVectorization.h │ │ │ │ │ │ ├── Constants.h │ │ │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ │ │ ├── IndexedViewHelper.h │ │ │ │ │ │ ├── IntegralConstant.h │ │ │ │ │ │ ├── MKL_support.h │ │ │ │ │ │ ├── Macros.h │ │ │ │ │ │ ├── Memory.h │ │ │ │ │ │ ├── Meta.h │ │ │ │ │ │ ├── NonMPL2.h │ │ │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ │ │ ├── ReshapedHelper.h │ │ │ │ │ │ ├── StaticAssert.h │ │ │ │ │ │ ├── SymbolicIndex.h │ │ │ │ │ │ └── XprHelper.h │ │ │ │ │ ├── Eigenvalues │ │ │ │ │ ├── ComplexEigenSolver.h │ │ │ │ │ ├── ComplexSchur.h │ │ │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ │ │ ├── EigenSolver.h │ │ │ │ │ ├── GeneralizedEigenSolver.h │ │ │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ │ │ ├── HessenbergDecomposition.h │ │ │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ │ │ ├── RealQZ.h │ │ │ │ │ ├── RealSchur.h │ │ │ │ │ ├── RealSchur_LAPACKE.h │ │ │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ │ │ └── Tridiagonalization.h │ │ │ │ │ ├── Geometry │ │ │ │ │ ├── AlignedBox.h │ │ │ │ │ ├── AngleAxis.h │ │ │ │ │ ├── EulerAngles.h │ │ │ │ │ ├── Homogeneous.h │ │ │ │ │ ├── Hyperplane.h │ │ │ │ │ ├── OrthoMethods.h │ │ │ │ │ ├── ParametrizedLine.h │ │ │ │ │ ├── Quaternion.h │ │ │ │ │ ├── Rotation2D.h │ │ │ │ │ ├── RotationBase.h │ │ │ │ │ ├── Scaling.h │ │ │ │ │ ├── Transform.h │ │ │ │ │ ├── Translation.h │ │ │ │ │ ├── Umeyama.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── Geometry_SIMD.h │ │ │ │ │ ├── Householder │ │ │ │ │ ├── BlockHouseholder.h │ │ │ │ │ ├── Householder.h │ │ │ │ │ └── HouseholderSequence.h │ │ │ │ │ ├── IterativeLinearSolvers │ │ │ │ │ ├── BasicPreconditioners.h │ │ │ │ │ ├── BiCGSTAB.h │ │ │ │ │ ├── ConjugateGradient.h │ │ │ │ │ ├── IncompleteCholesky.h │ │ │ │ │ ├── IncompleteLUT.h │ │ │ │ │ ├── IterativeSolverBase.h │ │ │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ │ │ └── SolveWithGuess.h │ │ │ │ │ ├── Jacobi │ │ │ │ │ └── Jacobi.h │ │ │ │ │ ├── KLUSupport │ │ │ │ │ └── KLUSupport.h │ │ │ │ │ ├── LU │ │ │ │ │ ├── Determinant.h │ │ │ │ │ ├── FullPivLU.h │ │ │ │ │ ├── InverseImpl.h │ │ │ │ │ ├── PartialPivLU.h │ │ │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ │ │ └── arch │ │ │ │ │ │ └── InverseSize4.h │ │ │ │ │ ├── MetisSupport │ │ │ │ │ └── MetisSupport.h │ │ │ │ │ ├── OrderingMethods │ │ │ │ │ ├── Amd.h │ │ │ │ │ ├── Eigen_Colamd.h │ │ │ │ │ └── Ordering.h │ │ │ │ │ ├── PaStiXSupport │ │ │ │ │ └── PaStiXSupport.h │ │ │ │ │ ├── PardisoSupport │ │ │ │ │ └── PardisoSupport.h │ │ │ │ │ ├── QR │ │ │ │ │ ├── ColPivHouseholderQR.h │ │ │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ │ │ ├── FullPivHouseholderQR.h │ │ │ │ │ ├── HouseholderQR.h │ │ │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ │ │ ├── SPQRSupport │ │ │ │ │ └── SuiteSparseQRSupport.h │ │ │ │ │ ├── SVD │ │ │ │ │ ├── BDCSVD.h │ │ │ │ │ ├── JacobiSVD.h │ │ │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ │ │ ├── SVDBase.h │ │ │ │ │ └── UpperBidiagonalization.h │ │ │ │ │ ├── SparseCholesky │ │ │ │ │ ├── SimplicialCholesky.h │ │ │ │ │ └── SimplicialCholesky_impl.h │ │ │ │ │ ├── SparseCore │ │ │ │ │ ├── AmbiVector.h │ │ │ │ │ ├── CompressedStorage.h │ │ │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ │ │ ├── MappedSparseMatrix.h │ │ │ │ │ ├── SparseAssign.h │ │ │ │ │ ├── SparseBlock.h │ │ │ │ │ ├── SparseColEtree.h │ │ │ │ │ ├── SparseCompressedBase.h │ │ │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ │ │ ├── SparseDenseProduct.h │ │ │ │ │ ├── SparseDiagonalProduct.h │ │ │ │ │ ├── SparseDot.h │ │ │ │ │ ├── SparseFuzzy.h │ │ │ │ │ ├── SparseMap.h │ │ │ │ │ ├── SparseMatrix.h │ │ │ │ │ ├── SparseMatrixBase.h │ │ │ │ │ ├── SparsePermutation.h │ │ │ │ │ ├── SparseProduct.h │ │ │ │ │ ├── SparseRedux.h │ │ │ │ │ ├── SparseRef.h │ │ │ │ │ ├── SparseSelfAdjointView.h │ │ │ │ │ ├── SparseSolverBase.h │ │ │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ │ │ ├── SparseTranspose.h │ │ │ │ │ ├── SparseTriangularView.h │ │ │ │ │ ├── SparseUtil.h │ │ │ │ │ ├── SparseVector.h │ │ │ │ │ ├── SparseView.h │ │ │ │ │ └── TriangularSolver.h │ │ │ │ │ ├── SparseLU │ │ │ │ │ ├── SparseLU.h │ │ │ │ │ ├── SparseLUImpl.h │ │ │ │ │ ├── SparseLU_Memory.h │ │ │ │ │ ├── SparseLU_Structs.h │ │ │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ │ │ ├── SparseLU_Utils.h │ │ │ │ │ ├── SparseLU_column_bmod.h │ │ │ │ │ ├── SparseLU_column_dfs.h │ │ │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ │ │ ├── SparseLU_panel_bmod.h │ │ │ │ │ ├── SparseLU_panel_dfs.h │ │ │ │ │ ├── SparseLU_pivotL.h │ │ │ │ │ ├── SparseLU_pruneL.h │ │ │ │ │ └── SparseLU_relax_snode.h │ │ │ │ │ ├── SparseQR │ │ │ │ │ └── SparseQR.h │ │ │ │ │ ├── StlSupport │ │ │ │ │ ├── StdDeque.h │ │ │ │ │ ├── StdList.h │ │ │ │ │ ├── StdVector.h │ │ │ │ │ └── details.h │ │ │ │ │ ├── SuperLUSupport │ │ │ │ │ └── SuperLUSupport.h │ │ │ │ │ ├── UmfPackSupport │ │ │ │ │ └── UmfPackSupport.h │ │ │ │ │ ├── misc │ │ │ │ │ ├── Image.h │ │ │ │ │ ├── Kernel.h │ │ │ │ │ ├── RealSvd2x2.h │ │ │ │ │ ├── blas.h │ │ │ │ │ ├── lapack.h │ │ │ │ │ ├── lapacke.h │ │ │ │ │ └── lapacke_mangling.h │ │ │ │ │ └── plugins │ │ │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ │ │ ├── BlockMethods.h │ │ │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ │ │ ├── IndexedViewMethods.h │ │ │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ │ │ ├── MatrixCwiseUnaryOps.h │ │ │ │ │ └── ReshapedMethods.h │ │ │ ├── INSTALL │ │ │ ├── README.md │ │ │ ├── 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_move_semantics.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 │ │ │ │ │ ├── changesets.txt │ │ │ │ │ ├── gemm.cpp │ │ │ │ │ ├── gemm_common.h │ │ │ │ │ ├── gemm_settings.txt │ │ │ │ │ ├── gemm_square_settings.txt │ │ │ │ │ ├── gemv.cpp │ │ │ │ │ ├── gemv_common.h │ │ │ │ │ ├── gemv_settings.txt │ │ │ │ │ ├── gemv_square_settings.txt │ │ │ │ │ ├── gemvt.cpp │ │ │ │ │ ├── lazy_gemm.cpp │ │ │ │ │ ├── lazy_gemm_settings.txt │ │ │ │ │ ├── llt.cpp │ │ │ │ │ ├── make_plot.sh │ │ │ │ │ ├── resources │ │ │ │ │ │ ├── chart_footer.html │ │ │ │ │ │ ├── chart_header.html │ │ │ │ │ │ ├── footer.html │ │ │ │ │ │ ├── header.html │ │ │ │ │ │ ├── s1.js │ │ │ │ │ │ └── s2.js │ │ │ │ │ ├── run.sh │ │ │ │ │ ├── runall.sh │ │ │ │ │ ├── trmv_lo.cpp │ │ │ │ │ ├── trmv_lot.cpp │ │ │ │ │ ├── trmv_up.cpp │ │ │ │ │ └── trmv_upt.cpp │ │ │ │ ├── product_threshold.cpp │ │ │ │ ├── quat_slerp.cpp │ │ │ │ ├── quatmul.cpp │ │ │ │ ├── sparse_cholesky.cpp │ │ │ │ ├── sparse_dense_product.cpp │ │ │ │ ├── sparse_lu.cpp │ │ │ │ ├── sparse_product.cpp │ │ │ │ ├── sparse_randomsetter.cpp │ │ │ │ ├── sparse_setter.cpp │ │ │ │ ├── sparse_transpose.cpp │ │ │ │ ├── sparse_trisolver.cpp │ │ │ │ ├── spbench │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── sp_solver.cpp │ │ │ │ │ ├── spbench.dtd │ │ │ │ │ ├── spbenchsolver.cpp │ │ │ │ │ ├── spbenchsolver.h │ │ │ │ │ ├── spbenchstyle.h │ │ │ │ │ └── test_sparseLU.cpp │ │ │ │ ├── spmv.cpp │ │ │ │ ├── tensors │ │ │ │ │ ├── README │ │ │ │ │ ├── benchmark.h │ │ │ │ │ ├── benchmark_main.cc │ │ │ │ │ ├── contraction_benchmarks_cpu.cc │ │ │ │ │ ├── eigen_sycl_bench.sh │ │ │ │ │ ├── eigen_sycl_bench_contract.sh │ │ │ │ │ ├── tensor_benchmarks.h │ │ │ │ │ ├── tensor_benchmarks_cpu.cc │ │ │ │ │ ├── tensor_benchmarks_fp16_gpu.cu │ │ │ │ │ ├── tensor_benchmarks_gpu.cu │ │ │ │ │ ├── tensor_benchmarks_sycl.cc │ │ │ │ │ └── tensor_contract_sycl_bench.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 │ │ │ │ └── xerbla.cpp │ │ │ ├── ci │ │ │ │ ├── CTest2JUnit.xsl │ │ │ │ ├── README.md │ │ │ │ ├── build.gitlab-ci.yml │ │ │ │ ├── smoketests.gitlab-ci.yml │ │ │ │ └── test.gitlab-ci.yml │ │ │ ├── cmake │ │ │ │ ├── ComputeCppCompilerChecks.cmake │ │ │ │ ├── ComputeCppIRMap.cmake │ │ │ │ ├── Eigen3Config.cmake.in │ │ │ │ ├── Eigen3ConfigLegacy.cmake.in │ │ │ │ ├── EigenConfigureTesting.cmake │ │ │ │ ├── EigenDetermineOSVersion.cmake │ │ │ │ ├── EigenDetermineVSServicePack.cmake │ │ │ │ ├── EigenSmokeTestList.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 │ │ │ │ ├── FindKLU.cmake │ │ │ │ ├── FindLAPACK.cmake │ │ │ │ ├── FindMPFR.cmake │ │ │ │ ├── FindMetis.cmake │ │ │ │ ├── FindPTSCOTCH.cmake │ │ │ │ ├── FindPastix.cmake │ │ │ │ ├── FindSPQR.cmake │ │ │ │ ├── FindScotch.cmake │ │ │ │ ├── FindStandardMathLibrary.cmake │ │ │ │ ├── FindSuperLU.cmake │ │ │ │ ├── FindTriSYCL.cmake │ │ │ │ ├── FindUMFPACK.cmake │ │ │ │ ├── RegexUtils.cmake │ │ │ │ └── UseEigen3.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 │ │ │ │ ├── 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 │ │ │ │ ├── TutorialReshape.dox │ │ │ │ ├── TutorialSTL.dox │ │ │ │ ├── TutorialSlicingIndexing.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_FixedReshaped.cpp │ │ │ │ │ ├── class_FixedVectorBlock.cpp │ │ │ │ │ ├── class_Reshaped.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 │ │ │ │ │ ├── Array_initializer_list_23_cxx11.cpp │ │ │ │ │ ├── Array_initializer_list_vector_cxx11.cpp │ │ │ │ │ ├── Array_variadic_ctor_cxx11.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_rint.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_deprecated.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_colwise_iterator_cxx11.cpp │ │ │ │ │ ├── MatrixBase_computeInverseAndDetWithCheck.cpp │ │ │ │ │ ├── MatrixBase_computeInverseWithCheck.cpp │ │ │ │ │ ├── MatrixBase_cwiseAbs.cpp │ │ │ │ │ ├── MatrixBase_cwiseAbs2.cpp │ │ │ │ │ ├── MatrixBase_cwiseArg.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_reshaped_auto.cpp │ │ │ │ │ ├── MatrixBase_reshaped_fixed.cpp │ │ │ │ │ ├── MatrixBase_reshaped_int_int.cpp │ │ │ │ │ ├── MatrixBase_reshaped_to_vector.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_initializer_list_23_cxx11.cpp │ │ │ │ │ ├── Matrix_initializer_list_vector_cxx11.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 │ │ │ │ │ ├── Matrix_variadic_ctor_cxx11.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 │ │ │ │ │ ├── Slicing_arrayexpr.cpp │ │ │ │ │ ├── Slicing_custom_padding_cxx11.cpp │ │ │ │ │ ├── Slicing_rawarray_cxx11.cpp │ │ │ │ │ ├── Slicing_stdvector_cxx11.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_range_for_loop_1d_cxx11.cpp │ │ │ │ │ ├── Tutorial_range_for_loop_2d_cxx11.cpp │ │ │ │ │ ├── Tutorial_reshaped_vs_resize_1.cpp │ │ │ │ │ ├── Tutorial_reshaped_vs_resize_2.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 │ │ │ │ │ ├── Tutorial_std_sort.cpp │ │ │ │ │ ├── Tutorial_std_sort_rows_cxx11.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 │ │ │ │ ├── initializer_list_1.cpp │ │ │ │ ├── initializer_list_2.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 │ │ │ │ ├── eigen_gen_split_test_help.cmake │ │ │ │ ├── eigen_monitor_perf.sh │ │ │ │ ├── release.in │ │ │ │ └── relicense.py │ │ │ ├── signature_of_eigen3_matrix_library │ │ │ ├── test │ │ │ │ ├── AnnoyingScalar.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── MovableScalar.h │ │ │ │ ├── OffByOneScalar.h │ │ │ │ ├── SafeScalar.h │ │ │ │ ├── adjoint.cpp │ │ │ │ ├── array_cwise.cpp │ │ │ │ ├── array_for_matrix.cpp │ │ │ │ ├── array_of_string.cpp │ │ │ │ ├── array_replicate.cpp │ │ │ │ ├── array_reverse.cpp │ │ │ │ ├── bandmatrix.cpp │ │ │ │ ├── basicstuff.cpp │ │ │ │ ├── bdcsvd.cpp │ │ │ │ ├── bfloat16_float.cpp │ │ │ │ ├── bicgstab.cpp │ │ │ │ ├── blasutil.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 │ │ │ │ ├── denseLM.cpp │ │ │ │ ├── dense_storage.cpp │ │ │ │ ├── determinant.cpp │ │ │ │ ├── diagonal.cpp │ │ │ │ ├── diagonal_matrix_variadic_ctor.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 │ │ │ │ ├── gpu_basic.cu │ │ │ │ ├── gpu_common.h │ │ │ │ ├── half_float.cpp │ │ │ │ ├── hessenberg.cpp │ │ │ │ ├── householder.cpp │ │ │ │ ├── incomplete_cholesky.cpp │ │ │ │ ├── indexed_view.cpp │ │ │ │ ├── initializer_list_construction.cpp │ │ │ │ ├── inplace_decomposition.cpp │ │ │ │ ├── integer_types.cpp │ │ │ │ ├── inverse.cpp │ │ │ │ ├── io.cpp │ │ │ │ ├── is_same_dense.cpp │ │ │ │ ├── jacobi.cpp │ │ │ │ ├── jacobisvd.cpp │ │ │ │ ├── klu_support.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 │ │ │ │ ├── nestbyvalue.cpp │ │ │ │ ├── nesting_ops.cpp │ │ │ │ ├── nomalloc.cpp │ │ │ │ ├── nullary.cpp │ │ │ │ ├── num_dimensions.cpp │ │ │ │ ├── numext.cpp │ │ │ │ ├── packetmath.cpp │ │ │ │ ├── packetmath_test_shared.h │ │ │ │ ├── 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 │ │ │ │ ├── random_without_cast_overflow.h │ │ │ │ ├── real_qz.cpp │ │ │ │ ├── redux.cpp │ │ │ │ ├── ref.cpp │ │ │ │ ├── reshape.cpp │ │ │ │ ├── resize.cpp │ │ │ │ ├── rvalue_types.cpp │ │ │ │ ├── schur_complex.cpp │ │ │ │ ├── schur_real.cpp │ │ │ │ ├── selfadjoint.cpp │ │ │ │ ├── simplicial_cholesky.cpp │ │ │ │ ├── sizeof.cpp │ │ │ │ ├── sizeoverflow.cpp │ │ │ │ ├── smallvectors.cpp │ │ │ │ ├── solverbase.h │ │ │ │ ├── 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 │ │ │ │ ├── split_test_helper.h │ │ │ │ ├── spqr_support.cpp │ │ │ │ ├── stable_norm.cpp │ │ │ │ ├── stddeque.cpp │ │ │ │ ├── stddeque_overload.cpp │ │ │ │ ├── stdlist.cpp │ │ │ │ ├── stdlist_overload.cpp │ │ │ │ ├── stdvector.cpp │ │ │ │ ├── stdvector_overload.cpp │ │ │ │ ├── stl_iterators.cpp │ │ │ │ ├── superlu_support.cpp │ │ │ │ ├── svd_common.h │ │ │ │ ├── svd_fill.h │ │ │ │ ├── swap.cpp │ │ │ │ ├── symbolic_index.cpp │ │ │ │ ├── triangular.cpp │ │ │ │ ├── type_alias.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 │ │ │ │ │ │ ├── TensorBlock.h │ │ │ │ │ │ ├── TensorBroadcasting.h │ │ │ │ │ │ ├── TensorChipping.h │ │ │ │ │ │ ├── TensorConcatenation.h │ │ │ │ │ │ ├── TensorContraction.h │ │ │ │ │ │ ├── TensorContractionBlocking.h │ │ │ │ │ │ ├── TensorContractionCuda.h │ │ │ │ │ │ ├── TensorContractionGpu.h │ │ │ │ │ │ ├── TensorContractionMapper.h │ │ │ │ │ │ ├── TensorContractionSycl.h │ │ │ │ │ │ ├── TensorContractionThreadPool.h │ │ │ │ │ │ ├── TensorConversion.h │ │ │ │ │ │ ├── TensorConvolution.h │ │ │ │ │ │ ├── TensorConvolutionSycl.h │ │ │ │ │ │ ├── TensorCostModel.h │ │ │ │ │ │ ├── TensorCustomOp.h │ │ │ │ │ │ ├── TensorDevice.h │ │ │ │ │ │ ├── TensorDeviceCuda.h │ │ │ │ │ │ ├── TensorDeviceDefault.h │ │ │ │ │ │ ├── TensorDeviceGpu.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 │ │ │ │ │ │ ├── TensorGpuHipCudaDefines.h │ │ │ │ │ │ ├── TensorGpuHipCudaUndefines.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 │ │ │ │ │ │ ├── TensorReductionGpu.h │ │ │ │ │ │ ├── TensorReductionSycl.h │ │ │ │ │ │ ├── TensorRef.h │ │ │ │ │ │ ├── TensorReverse.h │ │ │ │ │ │ ├── TensorScan.h │ │ │ │ │ │ ├── TensorScanSycl.h │ │ │ │ │ │ ├── TensorShuffling.h │ │ │ │ │ │ ├── TensorStorage.h │ │ │ │ │ │ ├── TensorStriding.h │ │ │ │ │ │ ├── TensorTrace.h │ │ │ │ │ │ ├── TensorTraits.h │ │ │ │ │ │ ├── TensorUInt128.h │ │ │ │ │ │ └── TensorVolumePatch.h │ │ │ │ │ │ ├── TensorSymmetry │ │ │ │ │ │ ├── DynamicSymmetry.h │ │ │ │ │ │ ├── StaticSymmetry.h │ │ │ │ │ │ ├── Symmetry.h │ │ │ │ │ │ └── util │ │ │ │ │ │ │ └── TemplateGroupTheory.h │ │ │ │ │ │ ├── ThreadPool │ │ │ │ │ │ ├── Barrier.h │ │ │ │ │ │ ├── EventCount.h │ │ │ │ │ │ ├── NonBlockingThreadPool.h │ │ │ │ │ │ ├── RunQueue.h │ │ │ │ │ │ ├── ThreadCancel.h │ │ │ │ │ │ ├── ThreadEnvironment.h │ │ │ │ │ │ ├── ThreadLocal.h │ │ │ │ │ │ ├── ThreadPoolInterface.h │ │ │ │ │ │ └── ThreadYield.h │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── CXX11Meta.h │ │ │ │ │ │ ├── CXX11Workarounds.h │ │ │ │ │ │ ├── EmulateArray.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 │ │ │ │ │ ├── IDRS.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 │ │ │ │ │ ├── BesselFunctionsArrayAPI.h │ │ │ │ │ ├── BesselFunctionsBFloat16.h │ │ │ │ │ ├── BesselFunctionsFunctors.h │ │ │ │ │ ├── BesselFunctionsHalf.h │ │ │ │ │ ├── BesselFunctionsImpl.h │ │ │ │ │ ├── BesselFunctionsPacketMath.h │ │ │ │ │ ├── HipVectorCompatibility.h │ │ │ │ │ ├── SpecialFunctionsArrayAPI.h │ │ │ │ │ ├── SpecialFunctionsBFloat16.h │ │ │ │ │ ├── SpecialFunctionsFunctors.h │ │ │ │ │ ├── SpecialFunctionsHalf.h │ │ │ │ │ ├── SpecialFunctionsImpl.h │ │ │ │ │ ├── SpecialFunctionsPacketMath.h │ │ │ │ │ └── arch │ │ │ │ │ │ ├── AVX │ │ │ │ │ │ ├── BesselFunctions.h │ │ │ │ │ │ └── SpecialFunctions.h │ │ │ │ │ │ ├── AVX512 │ │ │ │ │ │ ├── BesselFunctions.h │ │ │ │ │ │ └── SpecialFunctions.h │ │ │ │ │ │ ├── GPU │ │ │ │ │ │ └── SpecialFunctions.h │ │ │ │ │ │ └── NEON │ │ │ │ │ │ ├── BesselFunctions.h │ │ │ │ │ │ └── SpecialFunctions.h │ │ │ │ │ └── Splines │ │ │ │ │ ├── Spline.h │ │ │ │ │ ├── SplineFitting.h │ │ │ │ │ └── SplineFwd.h │ │ │ │ ├── README.txt │ │ │ │ ├── bench │ │ │ │ └── bench_svd.cpp │ │ │ │ ├── doc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Overview.dox │ │ │ │ ├── SYCL.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 │ │ │ │ │ └── SYCL │ │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ │ └── CwiseMul.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 │ │ │ │ ├── bessel_functions.cpp │ │ │ │ ├── cxx11_eventcount.cpp │ │ │ │ ├── cxx11_maxsizevector.cpp │ │ │ │ ├── cxx11_meta.cpp │ │ │ │ ├── cxx11_non_blocking_thread_pool.cpp │ │ │ │ ├── cxx11_runqueue.cpp │ │ │ │ ├── cxx11_tensor_argmax.cpp │ │ │ │ ├── cxx11_tensor_argmax_gpu.cu │ │ │ │ ├── cxx11_tensor_argmax_sycl.cpp │ │ │ │ ├── cxx11_tensor_assign.cpp │ │ │ │ ├── cxx11_tensor_block_access.cpp │ │ │ │ ├── cxx11_tensor_block_eval.cpp │ │ │ │ ├── cxx11_tensor_block_io.cpp │ │ │ │ ├── cxx11_tensor_broadcast_sycl.cpp │ │ │ │ ├── cxx11_tensor_broadcasting.cpp │ │ │ │ ├── cxx11_tensor_builtins_sycl.cpp │ │ │ │ ├── cxx11_tensor_cast_float16_gpu.cu │ │ │ │ ├── cxx11_tensor_casts.cpp │ │ │ │ ├── cxx11_tensor_chipping.cpp │ │ │ │ ├── cxx11_tensor_chipping_sycl.cpp │ │ │ │ ├── cxx11_tensor_comparisons.cpp │ │ │ │ ├── cxx11_tensor_complex_cwise_ops_gpu.cu │ │ │ │ ├── cxx11_tensor_complex_gpu.cu │ │ │ │ ├── cxx11_tensor_concatenation.cpp │ │ │ │ ├── cxx11_tensor_concatenation_sycl.cpp │ │ │ │ ├── cxx11_tensor_const.cpp │ │ │ │ ├── cxx11_tensor_contract_gpu.cu │ │ │ │ ├── cxx11_tensor_contract_sycl.cpp │ │ │ │ ├── cxx11_tensor_contraction.cpp │ │ │ │ ├── cxx11_tensor_convolution.cpp │ │ │ │ ├── cxx11_tensor_convolution_sycl.cpp │ │ │ │ ├── cxx11_tensor_custom_index.cpp │ │ │ │ ├── cxx11_tensor_custom_op.cpp │ │ │ │ ├── cxx11_tensor_custom_op_sycl.cpp │ │ │ │ ├── cxx11_tensor_device.cu │ │ │ │ ├── cxx11_tensor_device_sycl.cpp │ │ │ │ ├── cxx11_tensor_dimension.cpp │ │ │ │ ├── cxx11_tensor_empty.cpp │ │ │ │ ├── cxx11_tensor_executor.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_generator_sycl.cpp │ │ │ │ ├── cxx11_tensor_gpu.cu │ │ │ │ ├── cxx11_tensor_ifft.cpp │ │ │ │ ├── cxx11_tensor_image_op_sycl.cpp │ │ │ │ ├── cxx11_tensor_image_patch.cpp │ │ │ │ ├── cxx11_tensor_image_patch_sycl.cpp │ │ │ │ ├── cxx11_tensor_index_list.cpp │ │ │ │ ├── cxx11_tensor_inflation.cpp │ │ │ │ ├── cxx11_tensor_inflation_sycl.cpp │ │ │ │ ├── cxx11_tensor_intdiv.cpp │ │ │ │ ├── cxx11_tensor_io.cpp │ │ │ │ ├── cxx11_tensor_layout_swap.cpp │ │ │ │ ├── cxx11_tensor_layout_swap_sycl.cpp │ │ │ │ ├── cxx11_tensor_lvalue.cpp │ │ │ │ ├── cxx11_tensor_map.cpp │ │ │ │ ├── cxx11_tensor_math.cpp │ │ │ │ ├── cxx11_tensor_math_sycl.cpp │ │ │ │ ├── cxx11_tensor_mixed_indices.cpp │ │ │ │ ├── cxx11_tensor_morphing.cpp │ │ │ │ ├── cxx11_tensor_morphing_sycl.cpp │ │ │ │ ├── cxx11_tensor_move.cpp │ │ │ │ ├── cxx11_tensor_notification.cpp │ │ │ │ ├── cxx11_tensor_of_complex.cpp │ │ │ │ ├── cxx11_tensor_of_const_values.cpp │ │ │ │ ├── cxx11_tensor_of_float16_gpu.cu │ │ │ │ ├── cxx11_tensor_of_strings.cpp │ │ │ │ ├── cxx11_tensor_padding.cpp │ │ │ │ ├── cxx11_tensor_padding_sycl.cpp │ │ │ │ ├── cxx11_tensor_patch.cpp │ │ │ │ ├── cxx11_tensor_patch_sycl.cpp │ │ │ │ ├── cxx11_tensor_random.cpp │ │ │ │ ├── cxx11_tensor_random_gpu.cu │ │ │ │ ├── cxx11_tensor_random_sycl.cpp │ │ │ │ ├── cxx11_tensor_reduction.cpp │ │ │ │ ├── cxx11_tensor_reduction_gpu.cu │ │ │ │ ├── cxx11_tensor_reduction_sycl.cpp │ │ │ │ ├── cxx11_tensor_ref.cpp │ │ │ │ ├── cxx11_tensor_reverse.cpp │ │ │ │ ├── cxx11_tensor_reverse_sycl.cpp │ │ │ │ ├── cxx11_tensor_roundings.cpp │ │ │ │ ├── cxx11_tensor_scan.cpp │ │ │ │ ├── cxx11_tensor_scan_gpu.cu │ │ │ │ ├── cxx11_tensor_scan_sycl.cpp │ │ │ │ ├── cxx11_tensor_shuffling.cpp │ │ │ │ ├── cxx11_tensor_shuffling_sycl.cpp │ │ │ │ ├── cxx11_tensor_simple.cpp │ │ │ │ ├── cxx11_tensor_striding.cpp │ │ │ │ ├── cxx11_tensor_striding_sycl.cpp │ │ │ │ ├── cxx11_tensor_sugar.cpp │ │ │ │ ├── cxx11_tensor_sycl.cpp │ │ │ │ ├── cxx11_tensor_symmetry.cpp │ │ │ │ ├── cxx11_tensor_thread_local.cpp │ │ │ │ ├── cxx11_tensor_thread_pool.cpp │ │ │ │ ├── cxx11_tensor_trace.cpp │ │ │ │ ├── cxx11_tensor_uint128.cpp │ │ │ │ ├── cxx11_tensor_volume_patch.cpp │ │ │ │ ├── cxx11_tensor_volume_patch_sycl.cpp │ │ │ │ ├── dgmres.cpp │ │ │ │ ├── forward_adolc.cpp │ │ │ │ ├── gmres.cpp │ │ │ │ ├── idrs.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 │ │ │ │ ├── special_packetmath.cpp │ │ │ │ └── splines.cpp │ │ ├── imgui │ │ │ ├── CMakeLists.txt │ │ │ ├── glfw │ │ │ │ ├── CMake │ │ │ │ │ ├── GenerateMappings.cmake │ │ │ │ │ ├── MacOSXBundleInfo.plist.in │ │ │ │ │ ├── i686-w64-mingw32-clang.cmake │ │ │ │ │ ├── i686-w64-mingw32.cmake │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── FindEpollShim.cmake │ │ │ │ │ │ ├── FindOSMesa.cmake │ │ │ │ │ │ ├── FindWaylandProtocols.cmake │ │ │ │ │ │ └── FindXKBCommon.cmake │ │ │ │ │ ├── x86_64-w64-mingw32-clang.cmake │ │ │ │ │ └── x86_64-w64-mingw32.cmake │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── cmake_uninstall.cmake.in │ │ │ │ ├── include │ │ │ │ │ └── GLFW │ │ │ │ │ │ ├── glfw3.h │ │ │ │ │ │ └── glfw3native.h │ │ │ │ └── src │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── cocoa_init.m │ │ │ │ │ ├── cocoa_joystick.h │ │ │ │ │ ├── cocoa_joystick.m │ │ │ │ │ ├── cocoa_monitor.m │ │ │ │ │ ├── cocoa_platform.h │ │ │ │ │ ├── cocoa_time.c │ │ │ │ │ ├── cocoa_window.m │ │ │ │ │ ├── context.c │ │ │ │ │ ├── egl_context.c │ │ │ │ │ ├── egl_context.h │ │ │ │ │ ├── glfw3.pc.in │ │ │ │ │ ├── glfw3Config.cmake.in │ │ │ │ │ ├── glfw_config.h.in │ │ │ │ │ ├── glx_context.c │ │ │ │ │ ├── glx_context.h │ │ │ │ │ ├── init.c │ │ │ │ │ ├── input.c │ │ │ │ │ ├── internal.h │ │ │ │ │ ├── linux_joystick.c │ │ │ │ │ ├── linux_joystick.h │ │ │ │ │ ├── mappings.h │ │ │ │ │ ├── mappings.h.in │ │ │ │ │ ├── monitor.c │ │ │ │ │ ├── nsgl_context.h │ │ │ │ │ ├── nsgl_context.m │ │ │ │ │ ├── null_init.c │ │ │ │ │ ├── null_joystick.c │ │ │ │ │ ├── null_joystick.h │ │ │ │ │ ├── null_monitor.c │ │ │ │ │ ├── null_platform.h │ │ │ │ │ ├── null_window.c │ │ │ │ │ ├── osmesa_context.c │ │ │ │ │ ├── osmesa_context.h │ │ │ │ │ ├── posix_thread.c │ │ │ │ │ ├── posix_thread.h │ │ │ │ │ ├── posix_time.c │ │ │ │ │ ├── posix_time.h │ │ │ │ │ ├── vulkan.c │ │ │ │ │ ├── wgl_context.c │ │ │ │ │ ├── wgl_context.h │ │ │ │ │ ├── win32_init.c │ │ │ │ │ ├── win32_joystick.c │ │ │ │ │ ├── win32_joystick.h │ │ │ │ │ ├── win32_monitor.c │ │ │ │ │ ├── win32_platform.h │ │ │ │ │ ├── win32_thread.c │ │ │ │ │ ├── win32_time.c │ │ │ │ │ ├── win32_window.c │ │ │ │ │ ├── window.c │ │ │ │ │ ├── wl_init.c │ │ │ │ │ ├── wl_monitor.c │ │ │ │ │ ├── wl_platform.h │ │ │ │ │ ├── wl_window.c │ │ │ │ │ ├── x11_init.c │ │ │ │ │ ├── x11_monitor.c │ │ │ │ │ ├── x11_platform.h │ │ │ │ │ ├── x11_window.c │ │ │ │ │ ├── xkb_unicode.c │ │ │ │ │ └── xkb_unicode.h │ │ │ ├── imconfig.h │ │ │ ├── imgui.cpp │ │ │ ├── imgui.h │ │ │ ├── imgui_demo.cpp │ │ │ ├── imgui_draw.cpp │ │ │ ├── imgui_impl_glfw.cpp │ │ │ ├── imgui_impl_glfw.h │ │ │ ├── imgui_impl_opengl2.cpp │ │ │ ├── imgui_impl_opengl2.h │ │ │ ├── imgui_internal.h │ │ │ ├── imgui_tables.cpp │ │ │ ├── imgui_widgets.cpp │ │ │ ├── imstb_rectpack.h │ │ │ ├── imstb_textedit.h │ │ │ └── imstb_truetype.h │ │ ├── shewchuk_predicates │ │ │ ├── CMakeLists.txt │ │ │ └── shewchuk.c │ │ └── stb │ │ │ ├── CMakeLists.txt │ │ │ ├── stb_image.cpp │ │ │ ├── stb_image.h │ │ │ ├── stb_image_resize.h │ │ │ └── stb_image_write.h │ └── include │ │ └── cinolib │ │ ├── 3d_printing │ │ ├── drawable_sliced_object.h │ │ ├── height_along_build_dir.cpp │ │ ├── height_along_build_dir.h │ │ ├── optimal_build_dir.cpp │ │ ├── optimal_build_dir.h │ │ ├── overhangs.cpp │ │ ├── overhangs.h │ │ ├── shadow_on_build_platform.cpp │ │ ├── shadow_on_build_platform.h │ │ ├── sliced_object.cpp │ │ ├── sliced_object.h │ │ ├── support_beams.cpp │ │ ├── support_beams.h │ │ ├── supports_contact_area.cpp │ │ ├── supports_contact_area.h │ │ ├── supports_volume.cpp │ │ └── supports_volume.h │ │ ├── ANSI_color_codes.h │ │ ├── ARAP.cpp │ │ ├── ARAP.h │ │ ├── ARAP_2D_map.cpp │ │ ├── ARAP_2D_map.h │ │ ├── IRLS.cpp │ │ ├── IRLS.h │ │ ├── Moller_Trumbore_intersection.cpp │ │ ├── Moller_Trumbore_intersection.h │ │ ├── Poisson_sampling.cpp │ │ ├── Poisson_sampling.h │ │ ├── RBF_Hermite.cpp │ │ ├── RBF_Hermite.h │ │ ├── RBF_kernels.h │ │ ├── ambient_occlusion.cpp │ │ ├── ambient_occlusion.h │ │ ├── arrow.cpp │ │ ├── arrow.h │ │ ├── bfs.cpp │ │ ├── bfs.h │ │ ├── boost_polygon_wrap.cpp │ │ ├── boost_polygon_wrap.h │ │ ├── bresenham.cpp │ │ ├── bresenham.h │ │ ├── canonical_polygonal_schema.cpp │ │ ├── canonical_polygonal_schema.h │ │ ├── cast_shadow.cpp │ │ ├── cast_shadow.h │ │ ├── cino_inline.h │ │ ├── clamp.cpp │ │ ├── clamp.h │ │ ├── coarse_layout.cpp │ │ ├── coarse_layout.h │ │ ├── color.cpp │ │ ├── color.h │ │ ├── connected_components.cpp │ │ ├── connected_components.h │ │ ├── cot.cpp │ │ ├── cot.h │ │ ├── covmat.cpp │ │ ├── covmat.h │ │ ├── curve.cpp │ │ ├── curve.h │ │ ├── cut_mesh.cpp │ │ ├── cut_mesh.h │ │ ├── cylinder.cpp │ │ ├── cylinder.h │ │ ├── deg_rad.cpp │ │ ├── deg_rad.h │ │ ├── dijkstra.cpp │ │ ├── dijkstra.h │ │ ├── distortion_energies.cpp │ │ ├── distortion_energies.h │ │ ├── divergence.cpp │ │ ├── divergence.h │ │ ├── drawable_arrow.h │ │ ├── drawable_curve.cpp │ │ ├── drawable_curve.h │ │ ├── drawable_isocontour.cpp │ │ ├── drawable_isocontour.h │ │ ├── drawable_isosurface.cpp │ │ ├── drawable_isosurface.h │ │ ├── drawable_object.h │ │ ├── drawable_octree.cpp │ │ ├── drawable_octree.h │ │ ├── drawable_segment_soup.cpp │ │ ├── drawable_segment_soup.h │ │ ├── drawable_sphere.h │ │ ├── drawable_triangle_soup.cpp │ │ ├── drawable_triangle_soup.h │ │ ├── drawable_vector_field.cpp │ │ ├── drawable_vector_field.h │ │ ├── dual_mesh.cpp │ │ ├── dual_mesh.h │ │ ├── earcut.cpp │ │ ├── earcut.h │ │ ├── earcut_mapping.cpp │ │ ├── earcut_mapping.h │ │ ├── export_cluster.cpp │ │ ├── export_cluster.h │ │ ├── export_hexahedra.cpp │ │ ├── export_hexahedra.h │ │ ├── export_mesh_from_clusters.cpp │ │ ├── export_mesh_from_clusters.h │ │ ├── export_surface.cpp │ │ ├── export_surface.h │ │ ├── export_visible.cpp │ │ ├── export_visible.h │ │ ├── extrude_mesh.cpp │ │ ├── extrude_mesh.h │ │ ├── feature_mapping.cpp │ │ ├── feature_mapping.h │ │ ├── feature_network.cpp │ │ ├── feature_network.h │ │ ├── find_intersections.cpp │ │ ├── find_intersections.h │ │ ├── fonts │ │ └── droid_sans.h │ │ ├── geodesics.cpp │ │ ├── geodesics.h │ │ ├── geometry │ │ ├── aabb.cpp │ │ ├── aabb.h │ │ ├── drawable_aabb.cpp │ │ ├── drawable_aabb.h │ │ ├── line.cpp │ │ ├── line.h │ │ ├── n_sided_poygon.cpp │ │ ├── n_sided_poygon.h │ │ ├── plane.cpp │ │ ├── plane.h │ │ ├── point.cpp │ │ ├── point.h │ │ ├── point_utils.cpp │ │ ├── point_utils.h │ │ ├── polygon_utils.cpp │ │ ├── polygon_utils.h │ │ ├── quad_utils.cpp │ │ ├── quad_utils.h │ │ ├── ray.cpp │ │ ├── ray.h │ │ ├── segment.cpp │ │ ├── segment.h │ │ ├── segment_utils.cpp │ │ ├── segment_utils.h │ │ ├── spatial_data_structure_item.cpp │ │ ├── spatial_data_structure_item.h │ │ ├── sphere.cpp │ │ ├── sphere.h │ │ ├── tetrahedron.cpp │ │ ├── tetrahedron.h │ │ ├── tetrahedron_utils.cpp │ │ ├── tetrahedron_utils.h │ │ ├── triangle.cpp │ │ ├── triangle.h │ │ ├── triangle_utils.cpp │ │ ├── triangle_utils.h │ │ ├── vec_mat.cpp │ │ ├── vec_mat.h │ │ ├── vec_mat_utils.cpp │ │ └── vec_mat_utils.h │ │ ├── gl │ │ ├── camera.cpp │ │ ├── camera.h │ │ ├── draw_arrow.h │ │ ├── draw_cylinder.h │ │ ├── draw_lines_tris.cpp │ │ ├── draw_lines_tris.h │ │ ├── draw_sphere.h │ │ ├── file_dialog_open.cpp │ │ ├── file_dialog_open.h │ │ ├── file_dialog_save.cpp │ │ ├── file_dialog_save.h │ │ ├── gl_glfw.h │ │ ├── glcanvas.cpp │ │ ├── glcanvas.h │ │ ├── glproject.cpp │ │ ├── glproject.h │ │ ├── glunproject.cpp │ │ ├── glunproject.h │ │ ├── load_texture.cpp │ │ ├── load_texture.h │ │ ├── offline_gl_context.cpp │ │ ├── offline_gl_context.h │ │ ├── side_bar_item.h │ │ ├── surface_mesh_controls.cpp │ │ ├── surface_mesh_controls.h │ │ ├── trackball.cpp │ │ ├── trackball.h │ │ ├── volume_mesh_controls.cpp │ │ └── volume_mesh_controls.h │ │ ├── gradient.cpp │ │ ├── gradient.h │ │ ├── graph_cut_wrap.cpp │ │ ├── graph_cut_wrap.h │ │ ├── grid_mesh.cpp │ │ ├── grid_mesh.h │ │ ├── grid_projector.cpp │ │ ├── grid_projector.h │ │ ├── harmonic_map.cpp │ │ ├── harmonic_map.h │ │ ├── heat_flow.cpp │ │ ├── heat_flow.h │ │ ├── hex_transition_install.cpp │ │ ├── hex_transition_install.h │ │ ├── hex_transition_orient.cpp │ │ ├── hex_transition_orient.h │ │ ├── hex_transition_schemes.h │ │ ├── homotopy_basis.cpp │ │ ├── homotopy_basis.h │ │ ├── how_many_seconds.cpp │ │ ├── how_many_seconds.h │ │ ├── icosphere.cpp │ │ ├── icosphere.h │ │ ├── interval.cpp │ │ ├── interval.h │ │ ├── io │ │ ├── io_utilities.cpp │ │ ├── io_utilities.h │ │ ├── read_CLI.cpp │ │ ├── read_CLI.h │ │ ├── read_CSV.cpp │ │ ├── read_CSV.h │ │ ├── read_DEYSUN2006.cpp │ │ ├── read_DEYSUN2006.h │ │ ├── read_HEDRA.cpp │ │ ├── read_HEDRA.h │ │ ├── read_HEXEX.cpp │ │ ├── read_HEXEX.h │ │ ├── read_HYBRID.cpp │ │ ├── read_HYBRID.h │ │ ├── read_IV.cpp │ │ ├── read_IV.h │ │ ├── read_LIVESU2012.cpp │ │ ├── read_LIVESU2012.h │ │ ├── read_MESH.cpp │ │ ├── read_MESH.h │ │ ├── read_OBJ.cpp │ │ ├── read_OBJ.h │ │ ├── read_OFF.cpp │ │ ├── read_OFF.h │ │ ├── read_STL.cpp │ │ ├── read_STL.h │ │ ├── read_TAGLIASACCHI2012.cpp │ │ ├── read_TAGLIASACCHI2012.h │ │ ├── read_TET.cpp │ │ ├── read_TET.h │ │ ├── read_VTK.cpp │ │ ├── read_VTK.h │ │ ├── read_VTU.cpp │ │ ├── read_VTU.h │ │ ├── read_write.h │ │ ├── write_HEDRA.cpp │ │ ├── write_HEDRA.h │ │ ├── write_LIVESU2012.cpp │ │ ├── write_LIVESU2012.h │ │ ├── write_MESH.cpp │ │ ├── write_MESH.h │ │ ├── write_NODE_ELE.cpp │ │ ├── write_NODE_ELE.h │ │ ├── write_OBJ.cpp │ │ ├── write_OBJ.h │ │ ├── write_OFF.cpp │ │ ├── write_OFF.h │ │ ├── write_STL.cpp │ │ ├── write_STL.h │ │ ├── write_TET.cpp │ │ ├── write_TET.h │ │ ├── write_VTK.cpp │ │ ├── write_VTK.h │ │ ├── write_VTU.cpp │ │ └── write_VTU.h │ │ ├── ipair.cpp │ │ ├── ipair.h │ │ ├── isocontour.cpp │ │ ├── isocontour.h │ │ ├── isosurface.cpp │ │ ├── isosurface.h │ │ ├── laplacian.cpp │ │ ├── laplacian.h │ │ ├── line_triangle_intersection.cpp │ │ ├── line_triangle_intersection.h │ │ ├── linear_map.cpp │ │ ├── linear_map.h │ │ ├── linear_solvers.cpp │ │ ├── linear_solvers.h │ │ ├── lscm.cpp │ │ ├── lscm.h │ │ ├── map_distortion.cpp │ │ ├── map_distortion.h │ │ ├── map_to_tetrahedron.cpp │ │ ├── map_to_tetrahedron.h │ │ ├── marching_tets.cpp │ │ ├── marching_tets.h │ │ ├── mean_curv_flow.cpp │ │ ├── mean_curv_flow.h │ │ ├── memory_usage.cpp │ │ ├── memory_usage.h │ │ ├── merge_meshes_at_coincident_vertices.cpp │ │ ├── merge_meshes_at_coincident_vertices.h │ │ ├── mesh_floor.cpp │ │ ├── mesh_floor.h │ │ ├── meshes │ │ ├── abstract_drawable_polygonmesh.cpp │ │ ├── abstract_drawable_polygonmesh.h │ │ ├── abstract_drawable_polyhedralmesh.cpp │ │ ├── abstract_drawable_polyhedralmesh.h │ │ ├── abstract_mesh.cpp │ │ ├── abstract_mesh.h │ │ ├── abstract_polygonmesh.cpp │ │ ├── abstract_polygonmesh.h │ │ ├── abstract_polyhedralmesh.cpp │ │ ├── abstract_polyhedralmesh.h │ │ ├── drawable_hexmesh.h │ │ ├── drawable_polygonmesh.h │ │ ├── drawable_polyhedralmesh.h │ │ ├── drawable_quadmesh.h │ │ ├── drawable_skel.cpp │ │ ├── drawable_skel.h │ │ ├── drawable_tetmesh.h │ │ ├── drawable_trimesh.h │ │ ├── hexmesh.cpp │ │ ├── hexmesh.h │ │ ├── mesh_attributes.h │ │ ├── mesh_slicer.cpp │ │ ├── mesh_slicer.h │ │ ├── meshes.h │ │ ├── polygonmesh.cpp │ │ ├── polygonmesh.h │ │ ├── polyhedralmesh.cpp │ │ ├── polyhedralmesh.h │ │ ├── quadmesh.cpp │ │ ├── quadmesh.h │ │ ├── skel.cpp │ │ ├── skel.h │ │ ├── tetmesh.cpp │ │ ├── tetmesh.h │ │ ├── trimesh.cpp │ │ └── trimesh.h │ │ ├── min_max_inf.h │ │ ├── mst.cpp │ │ ├── mst.h │ │ ├── non_manifold_edge_geometric_sorting.cpp │ │ ├── non_manifold_edge_geometric_sorting.h │ │ ├── octree.cpp │ │ ├── octree.h │ │ ├── p_norm.cpp │ │ ├── p_norm.h │ │ ├── padding.cpp │ │ ├── padding.h │ │ ├── parallel_for.cpp │ │ ├── parallel_for.h │ │ ├── pca.cpp │ │ ├── pca.h │ │ ├── pi.h │ │ ├── polycube.cpp │ │ ├── polycube.h │ │ ├── polygon_kernel.cpp │ │ ├── polygon_kernel.h │ │ ├── polygon_maximum_inscribed_circle.cpp │ │ ├── polygon_maximum_inscribed_circle.h │ │ ├── polygon_topological_offsetting.cpp │ │ ├── polygon_topological_offsetting.h │ │ ├── predicates.cpp │ │ ├── predicates.h │ │ ├── profiler.cpp │ │ ├── profiler.h │ │ ├── quality.h │ │ ├── quality_hex.cpp │ │ ├── quality_hex.h │ │ ├── quality_tet.cpp │ │ ├── quality_tet.h │ │ ├── random_generator.cpp │ │ ├── random_generator.h │ │ ├── ray_triangle_intersection.cpp │ │ ├── ray_triangle_intersection.h │ │ ├── remesh_BotschKobbelt2004.cpp │ │ ├── remesh_BotschKobbelt2004.h │ │ ├── sample_mesh.cpp │ │ ├── sample_mesh.h │ │ ├── sampling.cpp │ │ ├── sampling.h │ │ ├── scalar_field.cpp │ │ ├── scalar_field.h │ │ ├── segment_insertion_linear_earcut.cpp │ │ ├── segment_insertion_linear_earcut.h │ │ ├── serializable.h │ │ ├── serialize_index.cpp │ │ ├── serialize_index.h │ │ ├── shortest_path_tree.cpp │ │ ├── shortest_path_tree.h │ │ ├── simplicial_map.cpp │ │ ├── simplicial_map.h │ │ ├── skel_sampling.cpp │ │ ├── skel_sampling.h │ │ ├── smallest_enclosing_disk.cpp │ │ ├── smallest_enclosing_disk.h │ │ ├── smoother.cpp │ │ ├── smoother.h │ │ ├── solid_angle.cpp │ │ ├── solid_angle.h │ │ ├── sort_poly_vertices.cpp │ │ ├── sort_poly_vertices.h │ │ ├── sphere_coverage.cpp │ │ ├── sphere_coverage.h │ │ ├── standard_elements_tables.h │ │ ├── stl_container_utilities.cpp │ │ ├── stl_container_utilities.h │ │ ├── stretch_tensor.cpp │ │ ├── stretch_tensor.h │ │ ├── string_utilities.cpp │ │ ├── string_utilities.h │ │ ├── subdivision_barycentric.cpp │ │ ├── subdivision_barycentric.h │ │ ├── subdivision_legacy_hexa_schemes.h │ │ ├── subdivision_midpoint.cpp │ │ ├── subdivision_midpoint.h │ │ ├── subdivision_schemas.h │ │ ├── symbols.h │ │ ├── tangent_space.cpp │ │ ├── tangent_space.h │ │ ├── tangential_smoothing.cpp │ │ ├── tangential_smoothing.h │ │ ├── tetgen_wrap.cpp │ │ ├── tetgen_wrap.h │ │ ├── tetrahedralization.cpp │ │ ├── tetrahedralization.h │ │ ├── textures │ │ ├── texture_hsv.h │ │ ├── texture_hsv_w_isolines.h │ │ ├── texture_parula.h │ │ └── texture_parula_w_isolines.h │ │ ├── to_openGL_unified_verts.cpp │ │ ├── to_openGL_unified_verts.h │ │ ├── tree.cpp │ │ ├── tree.h │ │ ├── triangle_wrap.cpp │ │ ├── triangle_wrap.h │ │ ├── undo_redo.cpp │ │ ├── undo_redo.h │ │ ├── unstable │ │ ├── integral_curve.cpp │ │ ├── integral_curve.h │ │ ├── smoothing.cpp │ │ └── smoothing.h │ │ ├── vector_area_matrix.cpp │ │ ├── vector_area_matrix.h │ │ ├── vector_field.cpp │ │ ├── vector_field.h │ │ ├── vector_serialization.cpp │ │ ├── vector_serialization.h │ │ ├── vertex_clustering.cpp │ │ ├── vertex_clustering.h │ │ ├── vertex_mass.cpp │ │ ├── vertex_mass.h │ │ ├── winding_number.cpp │ │ └── winding_number.h │ ├── Indirect_Predicates │ ├── CMakeLists.txt │ ├── JPCK │ │ ├── converter.cpp │ │ ├── converter.sln │ │ ├── converter.vcxproj │ │ ├── predicates │ │ │ ├── README.txt │ │ │ ├── TODO.txt │ │ │ ├── direct │ │ │ │ ├── dotProductSign2D.txt │ │ │ │ ├── dotProductSign3D.txt │ │ │ │ ├── inSphere.txt │ │ │ │ └── incircle.txt │ │ │ ├── indirect-old │ │ │ │ ├── inSphere_LEEEE.txt │ │ │ │ ├── inSphere_LLEEE.txt │ │ │ │ ├── inSphere_LLLEE.txt │ │ │ │ ├── inSphere_LLLLE.txt │ │ │ │ ├── inSphere_LLLLL.txt │ │ │ │ ├── inSphere_LLLLT.txt │ │ │ │ ├── inSphere_LLLTE.txt │ │ │ │ ├── inSphere_LLLTT.txt │ │ │ │ ├── inSphere_LLTEE.txt │ │ │ │ ├── inSphere_LLTTE.txt │ │ │ │ ├── inSphere_LLTTT.txt │ │ │ │ ├── inSphere_LTEEE.txt │ │ │ │ ├── inSphere_LTTEE.txt │ │ │ │ ├── inSphere_LTTTE.txt │ │ │ │ ├── inSphere_LTTTT.txt │ │ │ │ ├── inSphere_TEEEE.txt │ │ │ │ ├── inSphere_TTEEE.txt │ │ │ │ ├── inSphere_TTTEE.txt │ │ │ │ ├── inSphere_TTTTE.txt │ │ │ │ ├── inSphere_TTTTT.txt │ │ │ │ ├── incircle_indirect_SEEE.txt │ │ │ │ ├── incircle_indirect_SSEE.txt │ │ │ │ ├── incircle_indirect_SSSE.txt │ │ │ │ ├── incircle_indirect_SSSS.txt │ │ │ │ ├── incirclexy_indirect_LEEE.txt │ │ │ │ ├── incirclexy_indirect_LLEE.txt │ │ │ │ ├── incirclexy_indirect_LLLE.txt │ │ │ │ ├── incirclexy_indirect_LLLL.txt │ │ │ │ ├── lambda2d_SSI.txt │ │ │ │ ├── lambda3d_LNC.txt │ │ │ │ ├── lambda3d_LPI.txt │ │ │ │ ├── lambda3d_TPI.txt │ │ │ │ ├── lessThanOnX_LE.txt │ │ │ │ ├── lessThanOnX_LL.txt │ │ │ │ ├── lessThanOnX_LT.txt │ │ │ │ ├── lessThanOnX_TE.txt │ │ │ │ ├── lessThanOnX_TT.txt │ │ │ │ ├── lessThanOnY_LE.txt │ │ │ │ ├── lessThanOnY_LL.txt │ │ │ │ ├── lessThanOnY_LT.txt │ │ │ │ ├── lessThanOnY_TE.txt │ │ │ │ ├── lessThanOnY_TT.txt │ │ │ │ ├── lessThanOnZ_LE.txt │ │ │ │ ├── lessThanOnZ_LL.txt │ │ │ │ ├── lessThanOnZ_LT.txt │ │ │ │ ├── lessThanOnZ_TE.txt │ │ │ │ ├── lessThanOnZ_TT.txt │ │ │ │ ├── orient2d_indirect_SEE.txt │ │ │ │ ├── orient2d_indirect_SSE.txt │ │ │ │ ├── orient2d_indirect_SSS.txt │ │ │ │ ├── orient2dxy_indirect_LEE.txt │ │ │ │ ├── orient2dxy_indirect_LLE.txt │ │ │ │ ├── orient2dxy_indirect_LLL.txt │ │ │ │ ├── orient2dxy_indirect_LLT.txt │ │ │ │ ├── orient2dxy_indirect_LTE.txt │ │ │ │ ├── orient2dxy_indirect_LTT.txt │ │ │ │ ├── orient2dxy_indirect_TEE.txt │ │ │ │ ├── orient2dxy_indirect_TTE.txt │ │ │ │ ├── orient2dxy_indirect_TTT.txt │ │ │ │ ├── orient2dyz_indirect_LEE.txt │ │ │ │ ├── orient2dyz_indirect_LLE.txt │ │ │ │ ├── orient2dyz_indirect_LLL.txt │ │ │ │ ├── orient2dyz_indirect_LLT.txt │ │ │ │ ├── orient2dyz_indirect_LTE.txt │ │ │ │ ├── orient2dyz_indirect_LTT.txt │ │ │ │ ├── orient2dyz_indirect_TEE.txt │ │ │ │ ├── orient2dyz_indirect_TTE.txt │ │ │ │ ├── orient2dyz_indirect_TTT.txt │ │ │ │ ├── orient2dzx_indirect_LEE.txt │ │ │ │ ├── orient2dzx_indirect_LLE.txt │ │ │ │ ├── orient2dzx_indirect_LLL.txt │ │ │ │ ├── orient2dzx_indirect_LLT.txt │ │ │ │ ├── orient2dzx_indirect_LTE.txt │ │ │ │ ├── orient2dzx_indirect_LTT.txt │ │ │ │ ├── orient2dzx_indirect_TEE.txt │ │ │ │ ├── orient2dzx_indirect_TTE.txt │ │ │ │ ├── orient2dzx_indirect_TTT.txt │ │ │ │ ├── orient3d_indirect_LEEE.txt │ │ │ │ ├── orient3d_indirect_LLEE.txt │ │ │ │ ├── orient3d_indirect_LLLE.txt │ │ │ │ ├── orient3d_indirect_LLLL.txt │ │ │ │ ├── orient3d_indirect_LLLT.txt │ │ │ │ ├── orient3d_indirect_LLTE.txt │ │ │ │ ├── orient3d_indirect_LLTT.txt │ │ │ │ ├── orient3d_indirect_LTEE.txt │ │ │ │ ├── orient3d_indirect_LTTE.txt │ │ │ │ ├── orient3d_indirect_LTTT.txt │ │ │ │ ├── orient3d_indirect_TEEE.txt │ │ │ │ ├── orient3d_indirect_TTEE.txt │ │ │ │ ├── orient3d_indirect_TTTE.txt │ │ │ │ └── orient3d_indirect_TTTT.txt │ │ │ ├── indirect │ │ │ │ ├── dotProductSign2D_EEI.txt │ │ │ │ ├── dotProductSign2D_IEE.txt │ │ │ │ ├── dotProductSign2D_IEI.txt │ │ │ │ ├── dotProductSign2D_IIE.txt │ │ │ │ ├── dotProductSign2D_III.txt │ │ │ │ ├── dotProductSign3D_EEI.txt │ │ │ │ ├── dotProductSign3D_IEE.txt │ │ │ │ ├── dotProductSign3D_IEI.txt │ │ │ │ ├── dotProductSign3D_IIE.txt │ │ │ │ ├── dotProductSign3D_III.txt │ │ │ │ ├── inSphere_IEEEE.txt │ │ │ │ ├── inSphere_IIEEE.txt │ │ │ │ ├── inSphere_IIIEE.txt │ │ │ │ ├── inSphere_IIIIE.txt │ │ │ │ ├── inSphere_IIIII.txt │ │ │ │ ├── incircle_indirect_IEEE.txt │ │ │ │ ├── incircle_indirect_IIEE.txt │ │ │ │ ├── incircle_indirect_IIIE.txt │ │ │ │ ├── incircle_indirect_IIII.txt │ │ │ │ ├── incirclexy_indirect_IEEE.txt │ │ │ │ ├── incirclexy_indirect_IIEE.txt │ │ │ │ ├── incirclexy_indirect_IIIE.txt │ │ │ │ ├── incirclexy_indirect_IIII.txt │ │ │ │ ├── lambda2d_SSI.txt │ │ │ │ ├── lambda3d_LNC.txt │ │ │ │ ├── lambda3d_LPI.txt │ │ │ │ ├── lambda3d_TPI.txt │ │ │ │ ├── lessThanOnX_IE.txt │ │ │ │ ├── lessThanOnX_II.txt │ │ │ │ ├── lessThanOnY_IE.txt │ │ │ │ ├── lessThanOnY_II.txt │ │ │ │ ├── lessThanOnZ_IE.txt │ │ │ │ ├── lessThanOnZ_II.txt │ │ │ │ ├── orient2d_indirect_IEE.txt │ │ │ │ ├── orient2d_indirect_IIE.txt │ │ │ │ ├── orient2d_indirect_III.txt │ │ │ │ ├── orient2dxy_indirect_IEE.txt │ │ │ │ ├── orient2dxy_indirect_IIE.txt │ │ │ │ ├── orient2dxy_indirect_III.txt │ │ │ │ ├── orient2dyz_indirect_IEE.txt │ │ │ │ ├── orient2dyz_indirect_IIE.txt │ │ │ │ ├── orient2dyz_indirect_III.txt │ │ │ │ ├── orient2dzx_indirect_IEE.txt │ │ │ │ ├── orient2dzx_indirect_IIE.txt │ │ │ │ ├── orient2dzx_indirect_III.txt │ │ │ │ ├── orient3d_indirect_IEEE.txt │ │ │ │ ├── orient3d_indirect_IIEE.txt │ │ │ │ ├── orient3d_indirect_IIIE.txt │ │ │ │ └── orient3d_indirect_IIII.txt │ │ │ └── other │ │ │ │ ├── ccd_ee.txt │ │ │ │ ├── ccd_vt.txt │ │ │ │ ├── converter.exe │ │ │ │ ├── deltaVolume.txt │ │ │ │ ├── inSphere.txt │ │ │ │ ├── inSphere_LEEEE.hpp │ │ │ │ ├── inSphere_LEEEE.txt │ │ │ │ ├── inSphere_LLEEE.hpp │ │ │ │ ├── inSphere_LLEEE.txt │ │ │ │ ├── inSphere_LLLEE.hpp │ │ │ │ ├── inSphere_LLLEE.txt │ │ │ │ ├── inSphere_LLLLE.hpp │ │ │ │ ├── inSphere_LLLLE.txt │ │ │ │ ├── inSphere_LLLLL.hpp │ │ │ │ ├── inSphere_LLLLL.txt │ │ │ │ ├── lnc_predicates.h │ │ │ │ ├── lnc_predicates.hpp │ │ │ │ ├── maxComponentInTriangleNormal.txt │ │ │ │ ├── misaligned3d.txt │ │ │ │ ├── misaligned3d_indirect_LEE.txt │ │ │ │ ├── orient2d.txt │ │ │ │ ├── orient3d.txt │ │ │ │ ├── orient3d_LEEE.hpp │ │ │ │ ├── orient3d_LEEE.txt │ │ │ │ ├── orient3d_LLEE.hpp │ │ │ │ ├── orient3d_LLEE.txt │ │ │ │ ├── orient3d_LLLE.hpp │ │ │ │ ├── orient3d_LLLE.txt │ │ │ │ ├── orient3d_LLLL.hpp │ │ │ │ ├── orient3d_LLLL.txt │ │ │ │ ├── relativeOrientation_LEEE.txt │ │ │ │ ├── relativeOrientation_LLEE.txt │ │ │ │ ├── relativeOrientation_LLLE.txt │ │ │ │ ├── relativeOrientation_LLLL.txt │ │ │ │ ├── relativeOrientation_LLLT.txt │ │ │ │ ├── relativeOrientation_LLTE.txt │ │ │ │ ├── relativeOrientation_LLTT.txt │ │ │ │ ├── relativeOrientation_LTEE.txt │ │ │ │ ├── relativeOrientation_LTTE.txt │ │ │ │ ├── relativeOrientation_LTTT.txt │ │ │ │ ├── relativeOrientation_TEEE.txt │ │ │ │ ├── relativeOrientation_TTEE.txt │ │ │ │ ├── relativeOrientation_TTTE.txt │ │ │ │ └── relativeOrientation_TTTT.txt │ │ └── x64 │ │ │ └── Release │ │ │ └── converter.exe │ ├── LICENSE │ ├── README.md │ ├── include │ │ ├── hand_optimized_predicates.hpp │ │ ├── implicit_point.h │ │ ├── implicit_point.hpp │ │ ├── indirect_predicates.h │ │ ├── indirect_predicates.hpp │ │ ├── memPool.h │ │ ├── numerics.h │ │ └── numerics.hpp │ ├── test.cpp │ └── update_predicates │ │ ├── indirect_predicates.h │ │ ├── indirect_predicates.hpp │ │ └── update_source_code.bat │ ├── abseil-cpp │ ├── .clang-format │ ├── ABSEIL_ISSUE_TEMPLATE.md │ ├── AUTHORS │ ├── BUILD.bazel │ ├── CMake │ │ ├── AbseilDll.cmake │ │ ├── AbseilHelpers.cmake │ │ ├── Googletest │ │ │ ├── CMakeLists.txt.in │ │ │ └── DownloadGTest.cmake │ │ ├── README.md │ │ ├── abslConfig.cmake.in │ │ └── install_test_project │ │ │ ├── CMakeLists.txt │ │ │ ├── simple.cc │ │ │ └── test.sh │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE │ ├── README.md │ ├── UPGRADES.md │ ├── WORKSPACE │ ├── absl │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── abseil.podspec.gen.py │ │ ├── algorithm │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── algorithm.h │ │ │ ├── algorithm_test.cc │ │ │ ├── container.h │ │ │ ├── container_test.cc │ │ │ └── equal_benchmark.cc │ │ ├── base │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── attributes.h │ │ │ ├── bit_cast_test.cc │ │ │ ├── call_once.h │ │ │ ├── call_once_test.cc │ │ │ ├── casts.h │ │ │ ├── config.h │ │ │ ├── config_test.cc │ │ │ ├── const_init.h │ │ │ ├── dynamic_annotations.h │ │ │ ├── exception_safety_testing_test.cc │ │ │ ├── inline_variable_test.cc │ │ │ ├── inline_variable_test_a.cc │ │ │ ├── inline_variable_test_b.cc │ │ │ ├── internal │ │ │ │ ├── atomic_hook.h │ │ │ │ ├── atomic_hook_test.cc │ │ │ │ ├── atomic_hook_test_helper.cc │ │ │ │ ├── atomic_hook_test_helper.h │ │ │ │ ├── cmake_thread_test.cc │ │ │ │ ├── cycleclock.cc │ │ │ │ ├── cycleclock.h │ │ │ │ ├── direct_mmap.h │ │ │ │ ├── dynamic_annotations.h │ │ │ │ ├── endian.h │ │ │ │ ├── endian_test.cc │ │ │ │ ├── errno_saver.h │ │ │ │ ├── errno_saver_test.cc │ │ │ │ ├── exception_safety_testing.cc │ │ │ │ ├── exception_safety_testing.h │ │ │ │ ├── exception_testing.h │ │ │ │ ├── fast_type_id.h │ │ │ │ ├── fast_type_id_test.cc │ │ │ │ ├── hide_ptr.h │ │ │ │ ├── identity.h │ │ │ │ ├── inline_variable.h │ │ │ │ ├── inline_variable_testing.h │ │ │ │ ├── invoke.h │ │ │ │ ├── low_level_alloc.cc │ │ │ │ ├── low_level_alloc.h │ │ │ │ ├── low_level_alloc_test.cc │ │ │ │ ├── low_level_scheduling.h │ │ │ │ ├── per_thread_tls.h │ │ │ │ ├── pretty_function.h │ │ │ │ ├── raw_logging.cc │ │ │ │ ├── raw_logging.h │ │ │ │ ├── scheduling_mode.h │ │ │ │ ├── scoped_set_env.cc │ │ │ │ ├── scoped_set_env.h │ │ │ │ ├── scoped_set_env_test.cc │ │ │ │ ├── spinlock.cc │ │ │ │ ├── spinlock.h │ │ │ │ ├── spinlock_akaros.inc │ │ │ │ ├── spinlock_benchmark.cc │ │ │ │ ├── spinlock_linux.inc │ │ │ │ ├── spinlock_posix.inc │ │ │ │ ├── spinlock_wait.cc │ │ │ │ ├── spinlock_wait.h │ │ │ │ ├── spinlock_win32.inc │ │ │ │ ├── strerror.cc │ │ │ │ ├── strerror.h │ │ │ │ ├── strerror_benchmark.cc │ │ │ │ ├── strerror_test.cc │ │ │ │ ├── sysinfo.cc │ │ │ │ ├── sysinfo.h │ │ │ │ ├── sysinfo_test.cc │ │ │ │ ├── thread_annotations.h │ │ │ │ ├── thread_identity.cc │ │ │ │ ├── thread_identity.h │ │ │ │ ├── thread_identity_benchmark.cc │ │ │ │ ├── thread_identity_test.cc │ │ │ │ ├── throw_delegate.cc │ │ │ │ ├── throw_delegate.h │ │ │ │ ├── tsan_mutex_interface.h │ │ │ │ ├── unaligned_access.h │ │ │ │ ├── unique_small_name_test.cc │ │ │ │ ├── unscaledcycleclock.cc │ │ │ │ └── unscaledcycleclock.h │ │ │ ├── invoke_test.cc │ │ │ ├── log_severity.cc │ │ │ ├── log_severity.h │ │ │ ├── log_severity_test.cc │ │ │ ├── macros.h │ │ │ ├── optimization.h │ │ │ ├── optimization_test.cc │ │ │ ├── options.h │ │ │ ├── policy_checks.h │ │ │ ├── port.h │ │ │ ├── raw_logging_test.cc │ │ │ ├── spinlock_test_common.cc │ │ │ ├── thread_annotations.h │ │ │ └── throw_delegate_test.cc │ │ ├── cleanup │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── cleanup.h │ │ │ ├── cleanup_test.cc │ │ │ └── internal │ │ │ │ └── cleanup.h │ │ ├── container │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── btree_benchmark.cc │ │ │ ├── btree_map.h │ │ │ ├── btree_set.h │ │ │ ├── btree_test.cc │ │ │ ├── btree_test.h │ │ │ ├── fixed_array.h │ │ │ ├── fixed_array_benchmark.cc │ │ │ ├── fixed_array_exception_safety_test.cc │ │ │ ├── fixed_array_test.cc │ │ │ ├── flat_hash_map.h │ │ │ ├── flat_hash_map_test.cc │ │ │ ├── flat_hash_set.h │ │ │ ├── flat_hash_set_test.cc │ │ │ ├── inlined_vector.h │ │ │ ├── inlined_vector_benchmark.cc │ │ │ ├── inlined_vector_exception_safety_test.cc │ │ │ ├── inlined_vector_test.cc │ │ │ ├── internal │ │ │ │ ├── btree.h │ │ │ │ ├── btree_container.h │ │ │ │ ├── common.h │ │ │ │ ├── compressed_tuple.h │ │ │ │ ├── compressed_tuple_test.cc │ │ │ │ ├── container_memory.h │ │ │ │ ├── container_memory_test.cc │ │ │ │ ├── counting_allocator.h │ │ │ │ ├── hash_function_defaults.h │ │ │ │ ├── hash_function_defaults_test.cc │ │ │ │ ├── hash_generator_testing.cc │ │ │ │ ├── hash_generator_testing.h │ │ │ │ ├── hash_policy_testing.h │ │ │ │ ├── hash_policy_testing_test.cc │ │ │ │ ├── hash_policy_traits.h │ │ │ │ ├── hash_policy_traits_test.cc │ │ │ │ ├── hashtable_debug.h │ │ │ │ ├── hashtable_debug_hooks.h │ │ │ │ ├── hashtablez_sampler.cc │ │ │ │ ├── hashtablez_sampler.h │ │ │ │ ├── hashtablez_sampler_force_weak_definition.cc │ │ │ │ ├── hashtablez_sampler_test.cc │ │ │ │ ├── have_sse.h │ │ │ │ ├── inlined_vector.h │ │ │ │ ├── layout.h │ │ │ │ ├── layout_benchmark.cc │ │ │ │ ├── layout_test.cc │ │ │ │ ├── node_slot_policy.h │ │ │ │ ├── node_slot_policy_test.cc │ │ │ │ ├── raw_hash_map.h │ │ │ │ ├── raw_hash_set.cc │ │ │ │ ├── raw_hash_set.h │ │ │ │ ├── raw_hash_set_allocator_test.cc │ │ │ │ ├── raw_hash_set_benchmark.cc │ │ │ │ ├── raw_hash_set_probe_benchmark.cc │ │ │ │ ├── raw_hash_set_test.cc │ │ │ │ ├── test_instance_tracker.cc │ │ │ │ ├── test_instance_tracker.h │ │ │ │ ├── test_instance_tracker_test.cc │ │ │ │ ├── tracked.h │ │ │ │ ├── unordered_map_constructor_test.h │ │ │ │ ├── unordered_map_lookup_test.h │ │ │ │ ├── unordered_map_members_test.h │ │ │ │ ├── unordered_map_modifiers_test.h │ │ │ │ ├── unordered_map_test.cc │ │ │ │ ├── unordered_set_constructor_test.h │ │ │ │ ├── unordered_set_lookup_test.h │ │ │ │ ├── unordered_set_members_test.h │ │ │ │ ├── unordered_set_modifiers_test.h │ │ │ │ └── unordered_set_test.cc │ │ │ ├── node_hash_map.h │ │ │ ├── node_hash_map_test.cc │ │ │ ├── node_hash_set.h │ │ │ ├── node_hash_set_test.cc │ │ │ └── sample_element_size_test.cc │ │ ├── copts │ │ │ ├── AbseilConfigureCopts.cmake │ │ │ ├── GENERATED_AbseilCopts.cmake │ │ │ ├── GENERATED_copts.bzl │ │ │ ├── configure_copts.bzl │ │ │ ├── copts.py │ │ │ └── generate_copts.py │ │ ├── debugging │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── failure_signal_handler.cc │ │ │ ├── failure_signal_handler.h │ │ │ ├── failure_signal_handler_test.cc │ │ │ ├── internal │ │ │ │ ├── address_is_readable.cc │ │ │ │ ├── address_is_readable.h │ │ │ │ ├── demangle.cc │ │ │ │ ├── demangle.h │ │ │ │ ├── demangle_test.cc │ │ │ │ ├── elf_mem_image.cc │ │ │ │ ├── elf_mem_image.h │ │ │ │ ├── examine_stack.cc │ │ │ │ ├── examine_stack.h │ │ │ │ ├── stack_consumption.cc │ │ │ │ ├── stack_consumption.h │ │ │ │ ├── stack_consumption_test.cc │ │ │ │ ├── stacktrace_aarch64-inl.inc │ │ │ │ ├── stacktrace_arm-inl.inc │ │ │ │ ├── stacktrace_config.h │ │ │ │ ├── stacktrace_emscripten-inl.inc │ │ │ │ ├── stacktrace_generic-inl.inc │ │ │ │ ├── stacktrace_powerpc-inl.inc │ │ │ │ ├── stacktrace_riscv-inl.inc │ │ │ │ ├── stacktrace_unimplemented-inl.inc │ │ │ │ ├── stacktrace_win32-inl.inc │ │ │ │ ├── stacktrace_x86-inl.inc │ │ │ │ ├── symbolize.h │ │ │ │ ├── vdso_support.cc │ │ │ │ └── vdso_support.h │ │ │ ├── leak_check.cc │ │ │ ├── leak_check.h │ │ │ ├── leak_check_disable.cc │ │ │ ├── leak_check_fail_test.cc │ │ │ ├── leak_check_test.cc │ │ │ ├── stacktrace.cc │ │ │ ├── stacktrace.h │ │ │ ├── symbolize.cc │ │ │ ├── symbolize.h │ │ │ ├── symbolize_darwin.inc │ │ │ ├── symbolize_elf.inc │ │ │ ├── symbolize_emscripten.inc │ │ │ ├── symbolize_test.cc │ │ │ ├── symbolize_unimplemented.inc │ │ │ └── symbolize_win32.inc │ │ ├── flags │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── commandlineflag.cc │ │ │ ├── commandlineflag.h │ │ │ ├── commandlineflag_test.cc │ │ │ ├── config.h │ │ │ ├── config_test.cc │ │ │ ├── declare.h │ │ │ ├── flag.cc │ │ │ ├── flag.h │ │ │ ├── flag_benchmark.cc │ │ │ ├── flag_benchmark.lds │ │ │ ├── flag_test.cc │ │ │ ├── flag_test_defs.cc │ │ │ ├── internal │ │ │ │ ├── commandlineflag.cc │ │ │ │ ├── commandlineflag.h │ │ │ │ ├── flag.cc │ │ │ │ ├── flag.h │ │ │ │ ├── flag_msvc.inc │ │ │ │ ├── parse.h │ │ │ │ ├── path_util.h │ │ │ │ ├── path_util_test.cc │ │ │ │ ├── private_handle_accessor.cc │ │ │ │ ├── private_handle_accessor.h │ │ │ │ ├── program_name.cc │ │ │ │ ├── program_name.h │ │ │ │ ├── program_name_test.cc │ │ │ │ ├── registry.h │ │ │ │ ├── sequence_lock.h │ │ │ │ ├── sequence_lock_test.cc │ │ │ │ ├── usage.cc │ │ │ │ ├── usage.h │ │ │ │ └── usage_test.cc │ │ │ ├── marshalling.cc │ │ │ ├── marshalling.h │ │ │ ├── marshalling_test.cc │ │ │ ├── parse.cc │ │ │ ├── parse.h │ │ │ ├── parse_test.cc │ │ │ ├── reflection.cc │ │ │ ├── reflection.h │ │ │ ├── reflection_test.cc │ │ │ ├── usage.cc │ │ │ ├── usage.h │ │ │ ├── usage_config.cc │ │ │ ├── usage_config.h │ │ │ └── usage_config_test.cc │ │ ├── functional │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── bind_front.h │ │ │ ├── bind_front_test.cc │ │ │ ├── function_ref.h │ │ │ ├── function_ref_benchmark.cc │ │ │ ├── function_ref_test.cc │ │ │ └── internal │ │ │ │ ├── front_binder.h │ │ │ │ └── function_ref.h │ │ ├── hash │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── hash.h │ │ │ ├── hash_benchmark.cc │ │ │ ├── hash_test.cc │ │ │ ├── hash_testing.h │ │ │ └── internal │ │ │ │ ├── city.cc │ │ │ │ ├── city.h │ │ │ │ ├── city_test.cc │ │ │ │ ├── hash.cc │ │ │ │ ├── hash.h │ │ │ │ ├── low_level_hash.cc │ │ │ │ ├── low_level_hash.h │ │ │ │ ├── low_level_hash_test.cc │ │ │ │ ├── print_hash_of.cc │ │ │ │ └── spy_hash_state.h │ │ ├── memory │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── memory.h │ │ │ ├── memory_exception_safety_test.cc │ │ │ └── memory_test.cc │ │ ├── meta │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── type_traits.h │ │ │ └── type_traits_test.cc │ │ ├── numeric │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── bits.h │ │ │ ├── bits_benchmark.cc │ │ │ ├── bits_test.cc │ │ │ ├── int128.cc │ │ │ ├── int128.h │ │ │ ├── int128_benchmark.cc │ │ │ ├── int128_have_intrinsic.inc │ │ │ ├── int128_no_intrinsic.inc │ │ │ ├── int128_stream_test.cc │ │ │ ├── int128_test.cc │ │ │ └── internal │ │ │ │ ├── bits.h │ │ │ │ └── representation.h │ │ ├── profiling │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ └── internal │ │ │ │ ├── exponential_biased.cc │ │ │ │ ├── exponential_biased.h │ │ │ │ ├── exponential_biased_test.cc │ │ │ │ ├── periodic_sampler.cc │ │ │ │ ├── periodic_sampler.h │ │ │ │ ├── periodic_sampler_benchmark.cc │ │ │ │ ├── periodic_sampler_test.cc │ │ │ │ ├── sample_recorder.h │ │ │ │ └── sample_recorder_test.cc │ │ ├── random │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── benchmarks.cc │ │ │ ├── bernoulli_distribution.h │ │ │ ├── bernoulli_distribution_test.cc │ │ │ ├── beta_distribution.h │ │ │ ├── beta_distribution_test.cc │ │ │ ├── bit_gen_ref.h │ │ │ ├── bit_gen_ref_test.cc │ │ │ ├── discrete_distribution.cc │ │ │ ├── discrete_distribution.h │ │ │ ├── discrete_distribution_test.cc │ │ │ ├── distributions.h │ │ │ ├── distributions_test.cc │ │ │ ├── examples_test.cc │ │ │ ├── exponential_distribution.h │ │ │ ├── exponential_distribution_test.cc │ │ │ ├── gaussian_distribution.cc │ │ │ ├── gaussian_distribution.h │ │ │ ├── gaussian_distribution_test.cc │ │ │ ├── generators_test.cc │ │ │ ├── internal │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── chi_square.cc │ │ │ │ ├── chi_square.h │ │ │ │ ├── chi_square_test.cc │ │ │ │ ├── distribution_caller.h │ │ │ │ ├── distribution_test_util.cc │ │ │ │ ├── distribution_test_util.h │ │ │ │ ├── distribution_test_util_test.cc │ │ │ │ ├── explicit_seed_seq.h │ │ │ │ ├── explicit_seed_seq_test.cc │ │ │ │ ├── fast_uniform_bits.h │ │ │ │ ├── fast_uniform_bits_test.cc │ │ │ │ ├── fastmath.h │ │ │ │ ├── fastmath_test.cc │ │ │ │ ├── gaussian_distribution_gentables.cc │ │ │ │ ├── generate_real.h │ │ │ │ ├── generate_real_test.cc │ │ │ │ ├── iostream_state_saver.h │ │ │ │ ├── iostream_state_saver_test.cc │ │ │ │ ├── mock_helpers.h │ │ │ │ ├── mock_overload_set.h │ │ │ │ ├── nanobenchmark.cc │ │ │ │ ├── nanobenchmark.h │ │ │ │ ├── nanobenchmark_test.cc │ │ │ │ ├── nonsecure_base.h │ │ │ │ ├── nonsecure_base_test.cc │ │ │ │ ├── pcg_engine.h │ │ │ │ ├── pcg_engine_test.cc │ │ │ │ ├── platform.h │ │ │ │ ├── pool_urbg.cc │ │ │ │ ├── pool_urbg.h │ │ │ │ ├── pool_urbg_test.cc │ │ │ │ ├── randen.cc │ │ │ │ ├── randen.h │ │ │ │ ├── randen_benchmarks.cc │ │ │ │ ├── randen_detect.cc │ │ │ │ ├── randen_detect.h │ │ │ │ ├── randen_engine.h │ │ │ │ ├── randen_engine_test.cc │ │ │ │ ├── randen_hwaes.cc │ │ │ │ ├── randen_hwaes.h │ │ │ │ ├── randen_hwaes_test.cc │ │ │ │ ├── randen_round_keys.cc │ │ │ │ ├── randen_slow.cc │ │ │ │ ├── randen_slow.h │ │ │ │ ├── randen_slow_test.cc │ │ │ │ ├── randen_test.cc │ │ │ │ ├── randen_traits.h │ │ │ │ ├── salted_seed_seq.h │ │ │ │ ├── salted_seed_seq_test.cc │ │ │ │ ├── seed_material.cc │ │ │ │ ├── seed_material.h │ │ │ │ ├── seed_material_test.cc │ │ │ │ ├── sequence_urbg.h │ │ │ │ ├── traits.h │ │ │ │ ├── traits_test.cc │ │ │ │ ├── uniform_helper.h │ │ │ │ ├── uniform_helper_test.cc │ │ │ │ ├── wide_multiply.h │ │ │ │ └── wide_multiply_test.cc │ │ │ ├── log_uniform_int_distribution.h │ │ │ ├── log_uniform_int_distribution_test.cc │ │ │ ├── mock_distributions.h │ │ │ ├── mock_distributions_test.cc │ │ │ ├── mocking_bit_gen.h │ │ │ ├── mocking_bit_gen_test.cc │ │ │ ├── poisson_distribution.h │ │ │ ├── poisson_distribution_test.cc │ │ │ ├── random.h │ │ │ ├── seed_gen_exception.cc │ │ │ ├── seed_gen_exception.h │ │ │ ├── seed_sequences.cc │ │ │ ├── seed_sequences.h │ │ │ ├── seed_sequences_test.cc │ │ │ ├── uniform_int_distribution.h │ │ │ ├── uniform_int_distribution_test.cc │ │ │ ├── uniform_real_distribution.h │ │ │ ├── uniform_real_distribution_test.cc │ │ │ ├── zipf_distribution.h │ │ │ └── zipf_distribution_test.cc │ │ ├── status │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── internal │ │ │ │ ├── status_internal.h │ │ │ │ └── statusor_internal.h │ │ │ ├── status.cc │ │ │ ├── status.h │ │ │ ├── status_payload_printer.cc │ │ │ ├── status_payload_printer.h │ │ │ ├── status_test.cc │ │ │ ├── statusor.cc │ │ │ ├── statusor.h │ │ │ └── statusor_test.cc │ │ ├── strings │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── ascii.cc │ │ │ ├── ascii.h │ │ │ ├── ascii_benchmark.cc │ │ │ ├── ascii_test.cc │ │ │ ├── charconv.cc │ │ │ ├── charconv.h │ │ │ ├── charconv_benchmark.cc │ │ │ ├── charconv_test.cc │ │ │ ├── cord.cc │ │ │ ├── cord.h │ │ │ ├── cord_analysis.cc │ │ │ ├── cord_analysis.h │ │ │ ├── cord_ring_reader_test.cc │ │ │ ├── cord_ring_test.cc │ │ │ ├── cord_test.cc │ │ │ ├── cord_test_helpers.h │ │ │ ├── cordz_test.cc │ │ │ ├── cordz_test_helpers.h │ │ │ ├── escaping.cc │ │ │ ├── escaping.h │ │ │ ├── escaping_benchmark.cc │ │ │ ├── escaping_test.cc │ │ │ ├── internal │ │ │ │ ├── char_map.h │ │ │ │ ├── char_map_benchmark.cc │ │ │ │ ├── char_map_test.cc │ │ │ │ ├── charconv_bigint.cc │ │ │ │ ├── charconv_bigint.h │ │ │ │ ├── charconv_bigint_test.cc │ │ │ │ ├── charconv_parse.cc │ │ │ │ ├── charconv_parse.h │ │ │ │ ├── charconv_parse_test.cc │ │ │ │ ├── cord_data_edge.h │ │ │ │ ├── cord_data_edge_test.cc │ │ │ │ ├── cord_internal.cc │ │ │ │ ├── cord_internal.h │ │ │ │ ├── cord_rep_btree.cc │ │ │ │ ├── cord_rep_btree.h │ │ │ │ ├── cord_rep_btree_navigator.cc │ │ │ │ ├── cord_rep_btree_navigator.h │ │ │ │ ├── cord_rep_btree_navigator_test.cc │ │ │ │ ├── cord_rep_btree_reader.cc │ │ │ │ ├── cord_rep_btree_reader.h │ │ │ │ ├── cord_rep_btree_reader_test.cc │ │ │ │ ├── cord_rep_btree_test.cc │ │ │ │ ├── cord_rep_consume.cc │ │ │ │ ├── cord_rep_consume.h │ │ │ │ ├── cord_rep_crc.cc │ │ │ │ ├── cord_rep_crc.h │ │ │ │ ├── cord_rep_crc_test.cc │ │ │ │ ├── cord_rep_flat.h │ │ │ │ ├── cord_rep_ring.cc │ │ │ │ ├── cord_rep_ring.h │ │ │ │ ├── cord_rep_ring_reader.h │ │ │ │ ├── cord_rep_test_util.h │ │ │ │ ├── cordz_functions.cc │ │ │ │ ├── cordz_functions.h │ │ │ │ ├── cordz_functions_test.cc │ │ │ │ ├── cordz_handle.cc │ │ │ │ ├── cordz_handle.h │ │ │ │ ├── cordz_handle_test.cc │ │ │ │ ├── cordz_info.cc │ │ │ │ ├── cordz_info.h │ │ │ │ ├── cordz_info_statistics_test.cc │ │ │ │ ├── cordz_info_test.cc │ │ │ │ ├── cordz_sample_token.cc │ │ │ │ ├── cordz_sample_token.h │ │ │ │ ├── cordz_sample_token_test.cc │ │ │ │ ├── cordz_statistics.h │ │ │ │ ├── cordz_update_scope.h │ │ │ │ ├── cordz_update_scope_test.cc │ │ │ │ ├── cordz_update_tracker.h │ │ │ │ ├── cordz_update_tracker_test.cc │ │ │ │ ├── escaping.cc │ │ │ │ ├── escaping.h │ │ │ │ ├── escaping_test_common.h │ │ │ │ ├── memutil.cc │ │ │ │ ├── memutil.h │ │ │ │ ├── memutil_benchmark.cc │ │ │ │ ├── memutil_test.cc │ │ │ │ ├── numbers_test_common.h │ │ │ │ ├── ostringstream.cc │ │ │ │ ├── ostringstream.h │ │ │ │ ├── ostringstream_benchmark.cc │ │ │ │ ├── ostringstream_test.cc │ │ │ │ ├── pow10_helper.cc │ │ │ │ ├── pow10_helper.h │ │ │ │ ├── pow10_helper_test.cc │ │ │ │ ├── resize_uninitialized.h │ │ │ │ ├── resize_uninitialized_test.cc │ │ │ │ ├── stl_type_traits.h │ │ │ │ ├── str_format │ │ │ │ │ ├── arg.cc │ │ │ │ │ ├── arg.h │ │ │ │ │ ├── arg_test.cc │ │ │ │ │ ├── bind.cc │ │ │ │ │ ├── bind.h │ │ │ │ │ ├── bind_test.cc │ │ │ │ │ ├── checker.h │ │ │ │ │ ├── checker_test.cc │ │ │ │ │ ├── convert_test.cc │ │ │ │ │ ├── extension.cc │ │ │ │ │ ├── extension.h │ │ │ │ │ ├── extension_test.cc │ │ │ │ │ ├── float_conversion.cc │ │ │ │ │ ├── float_conversion.h │ │ │ │ │ ├── output.cc │ │ │ │ │ ├── output.h │ │ │ │ │ ├── output_test.cc │ │ │ │ │ ├── parser.cc │ │ │ │ │ ├── parser.h │ │ │ │ │ └── parser_test.cc │ │ │ │ ├── str_join_internal.h │ │ │ │ ├── str_split_internal.h │ │ │ │ ├── string_constant.h │ │ │ │ ├── string_constant_test.cc │ │ │ │ ├── utf8.cc │ │ │ │ ├── utf8.h │ │ │ │ └── utf8_test.cc │ │ │ ├── match.cc │ │ │ ├── match.h │ │ │ ├── match_test.cc │ │ │ ├── numbers.cc │ │ │ ├── numbers.h │ │ │ ├── numbers_benchmark.cc │ │ │ ├── numbers_test.cc │ │ │ ├── str_cat.cc │ │ │ ├── str_cat.h │ │ │ ├── str_cat_benchmark.cc │ │ │ ├── str_cat_test.cc │ │ │ ├── str_format.h │ │ │ ├── str_format_test.cc │ │ │ ├── str_join.h │ │ │ ├── str_join_benchmark.cc │ │ │ ├── str_join_test.cc │ │ │ ├── str_replace.cc │ │ │ ├── str_replace.h │ │ │ ├── str_replace_benchmark.cc │ │ │ ├── str_replace_test.cc │ │ │ ├── str_split.cc │ │ │ ├── str_split.h │ │ │ ├── str_split_benchmark.cc │ │ │ ├── str_split_test.cc │ │ │ ├── string_view.cc │ │ │ ├── string_view.h │ │ │ ├── string_view_benchmark.cc │ │ │ ├── string_view_test.cc │ │ │ ├── strip.h │ │ │ ├── strip_test.cc │ │ │ ├── substitute.cc │ │ │ ├── substitute.h │ │ │ └── substitute_test.cc │ │ ├── synchronization │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── barrier.cc │ │ │ ├── barrier.h │ │ │ ├── barrier_test.cc │ │ │ ├── blocking_counter.cc │ │ │ ├── blocking_counter.h │ │ │ ├── blocking_counter_benchmark.cc │ │ │ ├── blocking_counter_test.cc │ │ │ ├── internal │ │ │ │ ├── create_thread_identity.cc │ │ │ │ ├── create_thread_identity.h │ │ │ │ ├── futex.h │ │ │ │ ├── graphcycles.cc │ │ │ │ ├── graphcycles.h │ │ │ │ ├── graphcycles_benchmark.cc │ │ │ │ ├── graphcycles_test.cc │ │ │ │ ├── kernel_timeout.h │ │ │ │ ├── per_thread_sem.cc │ │ │ │ ├── per_thread_sem.h │ │ │ │ ├── per_thread_sem_test.cc │ │ │ │ ├── thread_pool.h │ │ │ │ ├── waiter.cc │ │ │ │ └── waiter.h │ │ │ ├── lifetime_test.cc │ │ │ ├── mutex.cc │ │ │ ├── mutex.h │ │ │ ├── mutex_benchmark.cc │ │ │ ├── mutex_test.cc │ │ │ ├── notification.cc │ │ │ ├── notification.h │ │ │ └── notification_test.cc │ │ ├── time │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── civil_time.cc │ │ │ ├── civil_time.h │ │ │ ├── civil_time_benchmark.cc │ │ │ ├── civil_time_test.cc │ │ │ ├── clock.cc │ │ │ ├── clock.h │ │ │ ├── clock_benchmark.cc │ │ │ ├── clock_test.cc │ │ │ ├── duration.cc │ │ │ ├── duration_benchmark.cc │ │ │ ├── duration_test.cc │ │ │ ├── format.cc │ │ │ ├── format_benchmark.cc │ │ │ ├── format_test.cc │ │ │ ├── internal │ │ │ │ ├── cctz │ │ │ │ │ ├── BUILD.bazel │ │ │ │ │ ├── include │ │ │ │ │ │ └── cctz │ │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ │ ├── src │ │ │ │ │ │ ├── cctz_benchmark.cc │ │ │ │ │ │ ├── civil_time_detail.cc │ │ │ │ │ │ ├── civil_time_test.cc │ │ │ │ │ │ ├── time_zone_fixed.cc │ │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ │ ├── time_zone_format.cc │ │ │ │ │ │ ├── time_zone_format_test.cc │ │ │ │ │ │ ├── time_zone_if.cc │ │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ │ ├── time_zone_impl.cc │ │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ │ ├── time_zone_info.cc │ │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ │ ├── time_zone_libc.cc │ │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ │ ├── time_zone_lookup.cc │ │ │ │ │ │ ├── time_zone_lookup_test.cc │ │ │ │ │ │ ├── time_zone_posix.cc │ │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ │ ├── tzfile.h │ │ │ │ │ │ └── zone_info_source.cc │ │ │ │ │ └── testdata │ │ │ │ │ │ ├── README.zoneinfo │ │ │ │ │ │ ├── version │ │ │ │ │ │ └── zoneinfo │ │ │ │ │ │ ├── Africa │ │ │ │ │ │ ├── Abidjan │ │ │ │ │ │ ├── Accra │ │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ │ ├── Algiers │ │ │ │ │ │ ├── Asmara │ │ │ │ │ │ ├── Asmera │ │ │ │ │ │ ├── Bamako │ │ │ │ │ │ ├── Bangui │ │ │ │ │ │ ├── Banjul │ │ │ │ │ │ ├── Bissau │ │ │ │ │ │ ├── Blantyre │ │ │ │ │ │ ├── Brazzaville │ │ │ │ │ │ ├── Bujumbura │ │ │ │ │ │ ├── Cairo │ │ │ │ │ │ ├── Casablanca │ │ │ │ │ │ ├── Ceuta │ │ │ │ │ │ ├── Conakry │ │ │ │ │ │ ├── Dakar │ │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ │ ├── Djibouti │ │ │ │ │ │ ├── Douala │ │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ │ ├── Freetown │ │ │ │ │ │ ├── Gaborone │ │ │ │ │ │ ├── Harare │ │ │ │ │ │ ├── Johannesburg │ │ │ │ │ │ ├── Juba │ │ │ │ │ │ ├── Kampala │ │ │ │ │ │ ├── Khartoum │ │ │ │ │ │ ├── Kigali │ │ │ │ │ │ ├── Kinshasa │ │ │ │ │ │ ├── Lagos │ │ │ │ │ │ ├── Libreville │ │ │ │ │ │ ├── Lome │ │ │ │ │ │ ├── Luanda │ │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ │ ├── Lusaka │ │ │ │ │ │ ├── Malabo │ │ │ │ │ │ ├── Maputo │ │ │ │ │ │ ├── Maseru │ │ │ │ │ │ ├── Mbabane │ │ │ │ │ │ ├── Mogadishu │ │ │ │ │ │ ├── Monrovia │ │ │ │ │ │ ├── Nairobi │ │ │ │ │ │ ├── Ndjamena │ │ │ │ │ │ ├── Niamey │ │ │ │ │ │ ├── Nouakchott │ │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ │ ├── Timbuktu │ │ │ │ │ │ ├── Tripoli │ │ │ │ │ │ ├── Tunis │ │ │ │ │ │ └── Windhoek │ │ │ │ │ │ ├── America │ │ │ │ │ │ ├── Adak │ │ │ │ │ │ ├── Anchorage │ │ │ │ │ │ ├── Anguilla │ │ │ │ │ │ ├── Antigua │ │ │ │ │ │ ├── Araguaina │ │ │ │ │ │ ├── Argentina │ │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ │ ├── Aruba │ │ │ │ │ │ ├── Asuncion │ │ │ │ │ │ ├── Atikokan │ │ │ │ │ │ ├── Atka │ │ │ │ │ │ ├── Bahia │ │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ │ ├── Barbados │ │ │ │ │ │ ├── Belem │ │ │ │ │ │ ├── Belize │ │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ │ ├── Bogota │ │ │ │ │ │ ├── Boise │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ │ ├── Cancun │ │ │ │ │ │ ├── Caracas │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ ├── Cayenne │ │ │ │ │ │ ├── Cayman │ │ │ │ │ │ ├── Chicago │ │ │ │ │ │ ├── Chihuahua │ │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ │ ├── Creston │ │ │ │ │ │ ├── Cuiaba │ │ │ │ │ │ ├── Curacao │ │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ │ ├── Dawson │ │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ │ ├── Denver │ │ │ │ │ │ ├── Detroit │ │ │ │ │ │ ├── Dominica │ │ │ │ │ │ ├── Edmonton │ │ │ │ │ │ ├── Eirunepe │ │ │ │ │ │ ├── El_Salvador │ │ │ │ │ │ ├── Ensenada │ │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ │ ├── Fortaleza │ │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ │ ├── Godthab │ │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ │ ├── Grenada │ │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ │ ├── Guatemala │ │ │ │ │ │ ├── Guayaquil │ │ │ │ │ │ ├── Guyana │ │ │ │ │ │ ├── Halifax │ │ │ │ │ │ ├── Havana │ │ │ │ │ │ ├── Hermosillo │ │ │ │ │ │ ├── Indiana │ │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ │ └── Winamac │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ ├── Inuvik │ │ │ │ │ │ ├── Iqaluit │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ ├── Juneau │ │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ │ └── Monticello │ │ │ │ │ │ ├── Knox_IN │ │ │ │ │ │ ├── Kralendijk │ │ │ │ │ │ ├── La_Paz │ │ │ │ │ │ ├── Lima │ │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ │ ├── Maceio │ │ │ │ │ │ ├── Managua │ │ │ │ │ │ ├── Manaus │ │ │ │ │ │ ├── Marigot │ │ │ │ │ │ ├── Martinique │ │ │ │ │ │ ├── Matamoros │ │ │ │ │ │ ├── Mazatlan │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ ├── Menominee │ │ │ │ │ │ ├── Merida │ │ │ │ │ │ ├── Metlakatla │ │ │ │ │ │ ├── Mexico_City │ │ │ │ │ │ ├── Miquelon │ │ │ │ │ │ ├── Moncton │ │ │ │ │ │ ├── Monterrey │ │ │ │ │ │ ├── Montevideo │ │ │ │ │ │ ├── Montreal │ │ │ │ │ │ ├── Montserrat │ │ │ │ │ │ ├── Nassau │ │ │ │ │ │ ├── New_York │ │ │ │ │ │ ├── Nipigon │ │ │ │ │ │ ├── Nome │ │ │ │ │ │ ├── Noronha │ │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ │ ├── Center │ │ │ │ │ │ │ └── New_Salem │ │ │ │ │ │ ├── Nuuk │ │ │ │ │ │ ├── Ojinaga │ │ │ │ │ │ ├── Panama │ │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ │ ├── Paramaribo │ │ │ │ │ │ ├── Phoenix │ │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ │ ├── Punta_Arenas │ │ │ │ │ │ ├── Rainy_River │ │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ │ ├── Recife │ │ │ │ │ │ ├── Regina │ │ │ │ │ │ ├── Resolute │ │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ │ ├── Rosario │ │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ │ ├── Santarem │ │ │ │ │ │ ├── Santiago │ │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ │ ├── Shiprock │ │ │ │ │ │ ├── Sitka │ │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ │ ├── St_Johns │ │ │ │ │ │ ├── St_Kitts │ │ │ │ │ │ ├── St_Lucia │ │ │ │ │ │ ├── St_Thomas │ │ │ │ │ │ ├── St_Vincent │ │ │ │ │ │ ├── Swift_Current │ │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ │ ├── Thule │ │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ │ ├── Tijuana │ │ │ │ │ │ ├── Toronto │ │ │ │ │ │ ├── Tortola │ │ │ │ │ │ ├── Vancouver │ │ │ │ │ │ ├── Virgin │ │ │ │ │ │ ├── Whitehorse │ │ │ │ │ │ ├── Winnipeg │ │ │ │ │ │ ├── Yakutat │ │ │ │ │ │ └── Yellowknife │ │ │ │ │ │ ├── Antarctica │ │ │ │ │ │ ├── Casey │ │ │ │ │ │ ├── Davis │ │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ │ ├── Macquarie │ │ │ │ │ │ ├── Mawson │ │ │ │ │ │ ├── McMurdo │ │ │ │ │ │ ├── Palmer │ │ │ │ │ │ ├── Rothera │ │ │ │ │ │ ├── South_Pole │ │ │ │ │ │ ├── Syowa │ │ │ │ │ │ ├── Troll │ │ │ │ │ │ └── Vostok │ │ │ │ │ │ ├── Arctic │ │ │ │ │ │ └── Longyearbyen │ │ │ │ │ │ ├── Asia │ │ │ │ │ │ ├── Aden │ │ │ │ │ │ ├── Almaty │ │ │ │ │ │ ├── Amman │ │ │ │ │ │ ├── Anadyr │ │ │ │ │ │ ├── Aqtau │ │ │ │ │ │ ├── Aqtobe │ │ │ │ │ │ ├── Ashgabat │ │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ │ ├── Atyrau │ │ │ │ │ │ ├── Baghdad │ │ │ │ │ │ ├── Bahrain │ │ │ │ │ │ ├── Baku │ │ │ │ │ │ ├── Bangkok │ │ │ │ │ │ ├── Barnaul │ │ │ │ │ │ ├── Beirut │ │ │ │ │ │ ├── Bishkek │ │ │ │ │ │ ├── Brunei │ │ │ │ │ │ ├── Calcutta │ │ │ │ │ │ ├── Chita │ │ │ │ │ │ ├── Choibalsan │ │ │ │ │ │ ├── Chongqing │ │ │ │ │ │ ├── Chungking │ │ │ │ │ │ ├── Colombo │ │ │ │ │ │ ├── Dacca │ │ │ │ │ │ ├── Damascus │ │ │ │ │ │ ├── Dhaka │ │ │ │ │ │ ├── Dili │ │ │ │ │ │ ├── Dubai │ │ │ │ │ │ ├── Dushanbe │ │ │ │ │ │ ├── Famagusta │ │ │ │ │ │ ├── Gaza │ │ │ │ │ │ ├── Harbin │ │ │ │ │ │ ├── Hebron │ │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ │ ├── Hovd │ │ │ │ │ │ ├── Irkutsk │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ ├── Jakarta │ │ │ │ │ │ ├── Jayapura │ │ │ │ │ │ ├── Jerusalem │ │ │ │ │ │ ├── Kabul │ │ │ │ │ │ ├── Kamchatka │ │ │ │ │ │ ├── Karachi │ │ │ │ │ │ ├── Kashgar │ │ │ │ │ │ ├── Kathmandu │ │ │ │ │ │ ├── Katmandu │ │ │ │ │ │ ├── Khandyga │ │ │ │ │ │ ├── Kolkata │ │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ │ ├── Kuching │ │ │ │ │ │ ├── Kuwait │ │ │ │ │ │ ├── Macao │ │ │ │ │ │ ├── Macau │ │ │ │ │ │ ├── Magadan │ │ │ │ │ │ ├── Makassar │ │ │ │ │ │ ├── Manila │ │ │ │ │ │ ├── Muscat │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ │ ├── Omsk │ │ │ │ │ │ ├── Oral │ │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ │ ├── Pontianak │ │ │ │ │ │ ├── Pyongyang │ │ │ │ │ │ ├── Qatar │ │ │ │ │ │ ├── Qostanay │ │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ │ ├── Rangoon │ │ │ │ │ │ ├── Riyadh │ │ │ │ │ │ ├── Saigon │ │ │ │ │ │ ├── Sakhalin │ │ │ │ │ │ ├── Samarkand │ │ │ │ │ │ ├── Seoul │ │ │ │ │ │ ├── Shanghai │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ │ ├── Taipei │ │ │ │ │ │ ├── Tashkent │ │ │ │ │ │ ├── Tbilisi │ │ │ │ │ │ ├── Tehran │ │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ │ ├── Thimbu │ │ │ │ │ │ ├── Thimphu │ │ │ │ │ │ ├── Tokyo │ │ │ │ │ │ ├── Tomsk │ │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ │ ├── Urumqi │ │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ │ ├── Vientiane │ │ │ │ │ │ ├── Vladivostok │ │ │ │ │ │ ├── Yakutsk │ │ │ │ │ │ ├── Yangon │ │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ │ └── Yerevan │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ ├── Azores │ │ │ │ │ │ ├── Bermuda │ │ │ │ │ │ ├── Canary │ │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ │ ├── Faeroe │ │ │ │ │ │ ├── Faroe │ │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ │ ├── Madeira │ │ │ │ │ │ ├── Reykjavik │ │ │ │ │ │ ├── South_Georgia │ │ │ │ │ │ ├── St_Helena │ │ │ │ │ │ └── Stanley │ │ │ │ │ │ ├── Australia │ │ │ │ │ │ ├── ACT │ │ │ │ │ │ ├── Adelaide │ │ │ │ │ │ ├── Brisbane │ │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ │ ├── Canberra │ │ │ │ │ │ ├── Currie │ │ │ │ │ │ ├── Darwin │ │ │ │ │ │ ├── Eucla │ │ │ │ │ │ ├── Hobart │ │ │ │ │ │ ├── LHI │ │ │ │ │ │ ├── Lindeman │ │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ │ ├── Melbourne │ │ │ │ │ │ ├── NSW │ │ │ │ │ │ ├── North │ │ │ │ │ │ ├── Perth │ │ │ │ │ │ ├── Queensland │ │ │ │ │ │ ├── South │ │ │ │ │ │ ├── Sydney │ │ │ │ │ │ ├── Tasmania │ │ │ │ │ │ ├── Victoria │ │ │ │ │ │ ├── West │ │ │ │ │ │ └── Yancowinna │ │ │ │ │ │ ├── Brazil │ │ │ │ │ │ ├── Acre │ │ │ │ │ │ ├── DeNoronha │ │ │ │ │ │ ├── East │ │ │ │ │ │ └── West │ │ │ │ │ │ ├── CET │ │ │ │ │ │ ├── CST6CDT │ │ │ │ │ │ ├── Canada │ │ │ │ │ │ ├── Atlantic │ │ │ │ │ │ ├── Central │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ ├── Newfoundland │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ │ └── Yukon │ │ │ │ │ │ ├── Chile │ │ │ │ │ │ ├── Continental │ │ │ │ │ │ └── EasterIsland │ │ │ │ │ │ ├── Cuba │ │ │ │ │ │ ├── EET │ │ │ │ │ │ ├── EST │ │ │ │ │ │ ├── EST5EDT │ │ │ │ │ │ ├── Egypt │ │ │ │ │ │ ├── Eire │ │ │ │ │ │ ├── Etc │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ ├── GMT+1 │ │ │ │ │ │ ├── GMT+10 │ │ │ │ │ │ ├── GMT+11 │ │ │ │ │ │ ├── GMT+12 │ │ │ │ │ │ ├── GMT+2 │ │ │ │ │ │ ├── GMT+3 │ │ │ │ │ │ ├── GMT+4 │ │ │ │ │ │ ├── GMT+5 │ │ │ │ │ │ ├── GMT+6 │ │ │ │ │ │ ├── GMT+7 │ │ │ │ │ │ ├── GMT+8 │ │ │ │ │ │ ├── GMT+9 │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ ├── GMT-1 │ │ │ │ │ │ ├── GMT-10 │ │ │ │ │ │ ├── GMT-11 │ │ │ │ │ │ ├── GMT-12 │ │ │ │ │ │ ├── GMT-13 │ │ │ │ │ │ ├── GMT-14 │ │ │ │ │ │ ├── GMT-2 │ │ │ │ │ │ ├── GMT-3 │ │ │ │ │ │ ├── GMT-4 │ │ │ │ │ │ ├── GMT-5 │ │ │ │ │ │ ├── GMT-6 │ │ │ │ │ │ ├── GMT-7 │ │ │ │ │ │ ├── GMT-8 │ │ │ │ │ │ ├── GMT-9 │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ └── Zulu │ │ │ │ │ │ ├── Europe │ │ │ │ │ │ ├── Amsterdam │ │ │ │ │ │ ├── Andorra │ │ │ │ │ │ ├── Astrakhan │ │ │ │ │ │ ├── Athens │ │ │ │ │ │ ├── Belfast │ │ │ │ │ │ ├── Belgrade │ │ │ │ │ │ ├── Berlin │ │ │ │ │ │ ├── Bratislava │ │ │ │ │ │ ├── Brussels │ │ │ │ │ │ ├── Bucharest │ │ │ │ │ │ ├── Budapest │ │ │ │ │ │ ├── Busingen │ │ │ │ │ │ ├── Chisinau │ │ │ │ │ │ ├── Copenhagen │ │ │ │ │ │ ├── Dublin │ │ │ │ │ │ ├── Gibraltar │ │ │ │ │ │ ├── Guernsey │ │ │ │ │ │ ├── Helsinki │ │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ │ ├── Istanbul │ │ │ │ │ │ ├── Jersey │ │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ │ ├── Kiev │ │ │ │ │ │ ├── Kirov │ │ │ │ │ │ ├── Lisbon │ │ │ │ │ │ ├── Ljubljana │ │ │ │ │ │ ├── London │ │ │ │ │ │ ├── Luxembourg │ │ │ │ │ │ ├── Madrid │ │ │ │ │ │ ├── Malta │ │ │ │ │ │ ├── Mariehamn │ │ │ │ │ │ ├── Minsk │ │ │ │ │ │ ├── Monaco │ │ │ │ │ │ ├── Moscow │ │ │ │ │ │ ├── Nicosia │ │ │ │ │ │ ├── Oslo │ │ │ │ │ │ ├── Paris │ │ │ │ │ │ ├── Podgorica │ │ │ │ │ │ ├── Prague │ │ │ │ │ │ ├── Riga │ │ │ │ │ │ ├── Rome │ │ │ │ │ │ ├── Samara │ │ │ │ │ │ ├── San_Marino │ │ │ │ │ │ ├── Sarajevo │ │ │ │ │ │ ├── Saratov │ │ │ │ │ │ ├── Simferopol │ │ │ │ │ │ ├── Skopje │ │ │ │ │ │ ├── Sofia │ │ │ │ │ │ ├── Stockholm │ │ │ │ │ │ ├── Tallinn │ │ │ │ │ │ ├── Tirane │ │ │ │ │ │ ├── Tiraspol │ │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ │ ├── Vaduz │ │ │ │ │ │ ├── Vatican │ │ │ │ │ │ ├── Vienna │ │ │ │ │ │ ├── Vilnius │ │ │ │ │ │ ├── Volgograd │ │ │ │ │ │ ├── Warsaw │ │ │ │ │ │ ├── Zagreb │ │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ │ └── Zurich │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ ├── GB │ │ │ │ │ │ ├── GB-Eire │ │ │ │ │ │ ├── GMT │ │ │ │ │ │ ├── GMT+0 │ │ │ │ │ │ ├── GMT-0 │ │ │ │ │ │ ├── GMT0 │ │ │ │ │ │ ├── Greenwich │ │ │ │ │ │ ├── HST │ │ │ │ │ │ ├── Hongkong │ │ │ │ │ │ ├── Iceland │ │ │ │ │ │ ├── Indian │ │ │ │ │ │ ├── Antananarivo │ │ │ │ │ │ ├── Chagos │ │ │ │ │ │ ├── Christmas │ │ │ │ │ │ ├── Cocos │ │ │ │ │ │ ├── Comoro │ │ │ │ │ │ ├── Kerguelen │ │ │ │ │ │ ├── Mahe │ │ │ │ │ │ ├── Maldives │ │ │ │ │ │ ├── Mauritius │ │ │ │ │ │ ├── Mayotte │ │ │ │ │ │ └── Reunion │ │ │ │ │ │ ├── Iran │ │ │ │ │ │ ├── Israel │ │ │ │ │ │ ├── Jamaica │ │ │ │ │ │ ├── Japan │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ ├── Libya │ │ │ │ │ │ ├── MET │ │ │ │ │ │ ├── MST │ │ │ │ │ │ ├── MST7MDT │ │ │ │ │ │ ├── Mexico │ │ │ │ │ │ ├── BajaNorte │ │ │ │ │ │ ├── BajaSur │ │ │ │ │ │ └── General │ │ │ │ │ │ ├── NZ │ │ │ │ │ │ ├── NZ-CHAT │ │ │ │ │ │ ├── Navajo │ │ │ │ │ │ ├── PRC │ │ │ │ │ │ ├── PST8PDT │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ ├── Apia │ │ │ │ │ │ ├── Auckland │ │ │ │ │ │ ├── Bougainville │ │ │ │ │ │ ├── Chatham │ │ │ │ │ │ ├── Chuuk │ │ │ │ │ │ ├── Easter │ │ │ │ │ │ ├── Efate │ │ │ │ │ │ ├── Enderbury │ │ │ │ │ │ ├── Fakaofo │ │ │ │ │ │ ├── Fiji │ │ │ │ │ │ ├── Funafuti │ │ │ │ │ │ ├── Galapagos │ │ │ │ │ │ ├── Gambier │ │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ │ ├── Guam │ │ │ │ │ │ ├── Honolulu │ │ │ │ │ │ ├── Johnston │ │ │ │ │ │ ├── Kanton │ │ │ │ │ │ ├── Kiritimati │ │ │ │ │ │ ├── Kosrae │ │ │ │ │ │ ├── Kwajalein │ │ │ │ │ │ ├── Majuro │ │ │ │ │ │ ├── Marquesas │ │ │ │ │ │ ├── Midway │ │ │ │ │ │ ├── Nauru │ │ │ │ │ │ ├── Niue │ │ │ │ │ │ ├── Norfolk │ │ │ │ │ │ ├── Noumea │ │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ │ ├── Palau │ │ │ │ │ │ ├── Pitcairn │ │ │ │ │ │ ├── Pohnpei │ │ │ │ │ │ ├── Ponape │ │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ │ ├── Rarotonga │ │ │ │ │ │ ├── Saipan │ │ │ │ │ │ ├── Samoa │ │ │ │ │ │ ├── Tahiti │ │ │ │ │ │ ├── Tarawa │ │ │ │ │ │ ├── Tongatapu │ │ │ │ │ │ ├── Truk │ │ │ │ │ │ ├── Wake │ │ │ │ │ │ ├── Wallis │ │ │ │ │ │ └── Yap │ │ │ │ │ │ ├── Poland │ │ │ │ │ │ ├── Portugal │ │ │ │ │ │ ├── ROC │ │ │ │ │ │ ├── ROK │ │ │ │ │ │ ├── Singapore │ │ │ │ │ │ ├── Turkey │ │ │ │ │ │ ├── UCT │ │ │ │ │ │ ├── US │ │ │ │ │ │ ├── Alaska │ │ │ │ │ │ ├── Aleutian │ │ │ │ │ │ ├── Arizona │ │ │ │ │ │ ├── Central │ │ │ │ │ │ ├── East-Indiana │ │ │ │ │ │ ├── Eastern │ │ │ │ │ │ ├── Hawaii │ │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ │ ├── Michigan │ │ │ │ │ │ ├── Mountain │ │ │ │ │ │ ├── Pacific │ │ │ │ │ │ └── Samoa │ │ │ │ │ │ ├── UTC │ │ │ │ │ │ ├── Universal │ │ │ │ │ │ ├── W-SU │ │ │ │ │ │ ├── WET │ │ │ │ │ │ ├── Zulu │ │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ │ ├── localtime │ │ │ │ │ │ └── zone1970.tab │ │ │ │ ├── get_current_time_chrono.inc │ │ │ │ ├── get_current_time_posix.inc │ │ │ │ ├── test_util.cc │ │ │ │ ├── test_util.h │ │ │ │ └── zoneinfo.inc │ │ │ ├── time.cc │ │ │ ├── time.h │ │ │ ├── time_benchmark.cc │ │ │ ├── time_test.cc │ │ │ └── time_zone_test.cc │ │ ├── types │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── any.h │ │ │ ├── any_exception_safety_test.cc │ │ │ ├── any_test.cc │ │ │ ├── bad_any_cast.cc │ │ │ ├── bad_any_cast.h │ │ │ ├── bad_optional_access.cc │ │ │ ├── bad_optional_access.h │ │ │ ├── bad_variant_access.cc │ │ │ ├── bad_variant_access.h │ │ │ ├── compare.h │ │ │ ├── compare_test.cc │ │ │ ├── internal │ │ │ │ ├── conformance_aliases.h │ │ │ │ ├── conformance_archetype.h │ │ │ │ ├── conformance_profile.h │ │ │ │ ├── conformance_testing.h │ │ │ │ ├── conformance_testing_helpers.h │ │ │ │ ├── conformance_testing_test.cc │ │ │ │ ├── optional.h │ │ │ │ ├── parentheses.h │ │ │ │ ├── span.h │ │ │ │ ├── transform_args.h │ │ │ │ └── variant.h │ │ │ ├── optional.h │ │ │ ├── optional_exception_safety_test.cc │ │ │ ├── optional_test.cc │ │ │ ├── span.h │ │ │ ├── span_test.cc │ │ │ ├── variant.h │ │ │ ├── variant_benchmark.cc │ │ │ ├── variant_exception_safety_test.cc │ │ │ └── variant_test.cc │ │ └── utility │ │ │ ├── BUILD.bazel │ │ │ ├── CMakeLists.txt │ │ │ ├── utility.h │ │ │ └── utility_test.cc │ ├── ci │ │ ├── absl_alternate_options.h │ │ ├── cmake_common.sh │ │ ├── cmake_install_test.sh │ │ ├── linux_clang-latest_libcxx_asan_bazel.sh │ │ ├── linux_clang-latest_libcxx_bazel.sh │ │ ├── linux_clang-latest_libcxx_tsan_bazel.sh │ │ ├── linux_clang-latest_libstdcxx_bazel.sh │ │ ├── linux_docker_containers.sh │ │ ├── linux_gcc-floor_libstdcxx_bazel.sh │ │ ├── linux_gcc-latest_libstdcxx_bazel.sh │ │ ├── linux_gcc-latest_libstdcxx_cmake.sh │ │ ├── linux_gcc_alpine_cmake.sh │ │ ├── macos_xcode_bazel.sh │ │ └── macos_xcode_cmake.sh │ ├── conanfile.py │ └── create_lts.py │ ├── oneTBB │ ├── .bazelrc │ ├── .bazelversion │ ├── .gitattributes │ ├── BUILD.bazel │ ├── Bazel.md │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── INSTALL.md │ ├── LICENSE.txt │ ├── README.md │ ├── RELEASE_NOTES.md │ ├── SYSTEM_REQUIREMENTS.md │ ├── WORKSPACE.bazel │ ├── cmake │ │ ├── README.md │ │ ├── android │ │ │ ├── device_environment_cleanup.cmake │ │ │ ├── environment.cmake │ │ │ └── test_launcher.cmake │ │ ├── compilers │ │ │ ├── AppleClang.cmake │ │ │ ├── Clang.cmake │ │ │ ├── GNU.cmake │ │ │ ├── Intel.cmake │ │ │ ├── IntelLLVM.cmake │ │ │ ├── MSVC.cmake │ │ │ └── QCC.cmake │ │ ├── config_generation.cmake │ │ ├── hwloc_detection.cmake │ │ ├── memcheck.cmake │ │ ├── packaging.cmake │ │ ├── post_install │ │ │ └── CMakeLists.txt │ │ ├── python │ │ │ └── test_launcher.cmake │ │ ├── sanitize.cmake │ │ ├── scripts │ │ │ └── cmake_gen_github_configs.cmake │ │ ├── suppressions │ │ │ ├── lsan.suppressions │ │ │ └── tsan.suppressions │ │ ├── templates │ │ │ ├── TBBConfig.cmake.in │ │ │ └── TBBConfigVersion.cmake.in │ │ ├── test_spec.cmake │ │ ├── toolchains │ │ │ └── mips.cmake │ │ ├── utils.cmake │ │ └── vars_utils.cmake │ ├── include │ │ ├── oneapi │ │ │ ├── tbb.h │ │ │ └── tbb │ │ │ │ ├── blocked_range.h │ │ │ │ ├── blocked_range2d.h │ │ │ │ ├── blocked_range3d.h │ │ │ │ ├── blocked_rangeNd.h │ │ │ │ ├── cache_aligned_allocator.h │ │ │ │ ├── collaborative_call_once.h │ │ │ │ ├── combinable.h │ │ │ │ ├── concurrent_hash_map.h │ │ │ │ ├── concurrent_lru_cache.h │ │ │ │ ├── concurrent_map.h │ │ │ │ ├── concurrent_priority_queue.h │ │ │ │ ├── concurrent_queue.h │ │ │ │ ├── concurrent_set.h │ │ │ │ ├── concurrent_unordered_map.h │ │ │ │ ├── concurrent_unordered_set.h │ │ │ │ ├── concurrent_vector.h │ │ │ │ ├── detail │ │ │ │ ├── _aggregator.h │ │ │ │ ├── _aligned_space.h │ │ │ │ ├── _allocator_traits.h │ │ │ │ ├── _assert.h │ │ │ │ ├── _attach.h │ │ │ │ ├── _concurrent_queue_base.h │ │ │ │ ├── _concurrent_skip_list.h │ │ │ │ ├── _concurrent_unordered_base.h │ │ │ │ ├── _config.h │ │ │ │ ├── _containers_helpers.h │ │ │ │ ├── _exception.h │ │ │ │ ├── _export.h │ │ │ │ ├── _flow_graph_body_impl.h │ │ │ │ ├── _flow_graph_cache_impl.h │ │ │ │ ├── _flow_graph_impl.h │ │ │ │ ├── _flow_graph_indexer_impl.h │ │ │ │ ├── _flow_graph_item_buffer_impl.h │ │ │ │ ├── _flow_graph_join_impl.h │ │ │ │ ├── _flow_graph_node_impl.h │ │ │ │ ├── _flow_graph_node_set_impl.h │ │ │ │ ├── _flow_graph_nodes_deduction.h │ │ │ │ ├── _flow_graph_tagged_buffer_impl.h │ │ │ │ ├── _flow_graph_trace_impl.h │ │ │ │ ├── _flow_graph_types_impl.h │ │ │ │ ├── _hash_compare.h │ │ │ │ ├── _intrusive_list_node.h │ │ │ │ ├── _machine.h │ │ │ │ ├── _mutex_common.h │ │ │ │ ├── _namespace_injection.h │ │ │ │ ├── _node_handle.h │ │ │ │ ├── _pipeline_filters.h │ │ │ │ ├── _pipeline_filters_deduction.h │ │ │ │ ├── _range_common.h │ │ │ │ ├── _rtm_mutex.h │ │ │ │ ├── _rtm_rw_mutex.h │ │ │ │ ├── _scoped_lock.h │ │ │ │ ├── _segment_table.h │ │ │ │ ├── _small_object_pool.h │ │ │ │ ├── _string_resource.h │ │ │ │ ├── _task.h │ │ │ │ ├── _task_handle.h │ │ │ │ ├── _template_helpers.h │ │ │ │ ├── _utils.h │ │ │ │ └── _waitable_atomic.h │ │ │ │ ├── enumerable_thread_specific.h │ │ │ │ ├── flow_graph.h │ │ │ │ ├── flow_graph_abstractions.h │ │ │ │ ├── global_control.h │ │ │ │ ├── info.h │ │ │ │ ├── memory_pool.h │ │ │ │ ├── mutex.h │ │ │ │ ├── null_mutex.h │ │ │ │ ├── null_rw_mutex.h │ │ │ │ ├── parallel_for.h │ │ │ │ ├── parallel_for_each.h │ │ │ │ ├── parallel_invoke.h │ │ │ │ ├── parallel_pipeline.h │ │ │ │ ├── parallel_reduce.h │ │ │ │ ├── parallel_scan.h │ │ │ │ ├── parallel_sort.h │ │ │ │ ├── partitioner.h │ │ │ │ ├── profiling.h │ │ │ │ ├── queuing_mutex.h │ │ │ │ ├── queuing_rw_mutex.h │ │ │ │ ├── rw_mutex.h │ │ │ │ ├── scalable_allocator.h │ │ │ │ ├── spin_mutex.h │ │ │ │ ├── spin_rw_mutex.h │ │ │ │ ├── task.h │ │ │ │ ├── task_arena.h │ │ │ │ ├── task_group.h │ │ │ │ ├── task_scheduler_observer.h │ │ │ │ ├── tbb_allocator.h │ │ │ │ ├── tbbmalloc_proxy.h │ │ │ │ ├── tick_count.h │ │ │ │ └── version.h │ │ └── tbb │ │ │ ├── blocked_range.h │ │ │ ├── blocked_range2d.h │ │ │ ├── blocked_range3d.h │ │ │ ├── blocked_rangeNd.h │ │ │ ├── cache_aligned_allocator.h │ │ │ ├── collaborative_call_once.h │ │ │ ├── combinable.h │ │ │ ├── concurrent_hash_map.h │ │ │ ├── concurrent_lru_cache.h │ │ │ ├── concurrent_map.h │ │ │ ├── concurrent_priority_queue.h │ │ │ ├── concurrent_queue.h │ │ │ ├── concurrent_set.h │ │ │ ├── concurrent_unordered_map.h │ │ │ ├── concurrent_unordered_set.h │ │ │ ├── concurrent_vector.h │ │ │ ├── enumerable_thread_specific.h │ │ │ ├── flow_graph.h │ │ │ ├── flow_graph_abstractions.h │ │ │ ├── global_control.h │ │ │ ├── info.h │ │ │ ├── memory_pool.h │ │ │ ├── null_mutex.h │ │ │ ├── null_rw_mutex.h │ │ │ ├── parallel_for.h │ │ │ ├── parallel_for_each.h │ │ │ ├── parallel_invoke.h │ │ │ ├── parallel_pipeline.h │ │ │ ├── parallel_reduce.h │ │ │ ├── parallel_scan.h │ │ │ ├── parallel_sort.h │ │ │ ├── partitioner.h │ │ │ ├── profiling.h │ │ │ ├── queuing_mutex.h │ │ │ ├── queuing_rw_mutex.h │ │ │ ├── scalable_allocator.h │ │ │ ├── spin_mutex.h │ │ │ ├── spin_rw_mutex.h │ │ │ ├── task.h │ │ │ ├── task_arena.h │ │ │ ├── task_group.h │ │ │ ├── task_scheduler_observer.h │ │ │ ├── tbb.h │ │ │ ├── tbb_allocator.h │ │ │ ├── tbbmalloc_proxy.h │ │ │ ├── tick_count.h │ │ │ └── version.h │ ├── integration │ │ ├── cmake │ │ │ └── generate_vars.cmake │ │ ├── linux │ │ │ ├── env │ │ │ │ ├── vars.sh │ │ │ │ └── vars.sh.in │ │ │ ├── modulefiles │ │ │ │ ├── tbb │ │ │ │ └── tbb32 │ │ │ └── sys_check │ │ │ │ └── sys_check.sh │ │ ├── mac │ │ │ └── env │ │ │ │ ├── vars.sh │ │ │ │ └── vars.sh.in │ │ ├── pkg-config │ │ │ └── tbb.pc.in │ │ └── windows │ │ │ ├── env │ │ │ ├── vars.bat │ │ │ └── vars.bat.in │ │ │ ├── nuget │ │ │ ├── inteltbb.devel.win.targets │ │ │ └── inteltbb.redist.win.targets │ │ │ └── sys_check │ │ │ └── sys_check.bat │ ├── python │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── TBB.py │ │ ├── rml │ │ │ ├── CMakeLists.txt │ │ │ ├── ipc_server.cpp │ │ │ ├── ipc_utils.cpp │ │ │ └── ipc_utils.h │ │ ├── setup.py │ │ └── tbb │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── api.i │ │ │ ├── pool.py │ │ │ └── test.py │ ├── src │ │ ├── tbb │ │ │ ├── CMakeLists.txt │ │ │ ├── address_waiter.cpp │ │ │ ├── allocator.cpp │ │ │ ├── arena.cpp │ │ │ ├── arena.h │ │ │ ├── arena_slot.cpp │ │ │ ├── arena_slot.h │ │ │ ├── assert_impl.h │ │ │ ├── co_context.h │ │ │ ├── concurrent_bounded_queue.cpp │ │ │ ├── concurrent_monitor.h │ │ │ ├── concurrent_monitor_mutex.h │ │ │ ├── def │ │ │ │ ├── lin32-tbb.def │ │ │ │ ├── lin64-tbb.def │ │ │ │ ├── mac64-tbb.def │ │ │ │ ├── win32-tbb.def │ │ │ │ └── win64-tbb.def │ │ │ ├── dynamic_link.cpp │ │ │ ├── dynamic_link.h │ │ │ ├── environment.h │ │ │ ├── exception.cpp │ │ │ ├── global_control.cpp │ │ │ ├── governor.cpp │ │ │ ├── governor.h │ │ │ ├── intrusive_list.h │ │ │ ├── itt_notify.cpp │ │ │ ├── itt_notify.h │ │ │ ├── mailbox.h │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── market.cpp │ │ │ ├── market.h │ │ │ ├── market_concurrent_monitor.h │ │ │ ├── misc.cpp │ │ │ ├── misc.h │ │ │ ├── misc_ex.cpp │ │ │ ├── observer_proxy.cpp │ │ │ ├── observer_proxy.h │ │ │ ├── parallel_pipeline.cpp │ │ │ ├── private_server.cpp │ │ │ ├── profiling.cpp │ │ │ ├── queuing_rw_mutex.cpp │ │ │ ├── rml_base.h │ │ │ ├── rml_tbb.cpp │ │ │ ├── rml_tbb.h │ │ │ ├── rml_thread_monitor.h │ │ │ ├── rtm_mutex.cpp │ │ │ ├── rtm_rw_mutex.cpp │ │ │ ├── scheduler_common.h │ │ │ ├── semaphore.cpp │ │ │ ├── semaphore.h │ │ │ ├── small_object_pool.cpp │ │ │ ├── small_object_pool_impl.h │ │ │ ├── task.cpp │ │ │ ├── task_dispatcher.cpp │ │ │ ├── task_dispatcher.h │ │ │ ├── task_group_context.cpp │ │ │ ├── task_stream.h │ │ │ ├── thread_data.h │ │ │ ├── tls.h │ │ │ ├── tools_api │ │ │ │ ├── disable_warnings.h │ │ │ │ ├── ittnotify.h │ │ │ │ ├── ittnotify_config.h │ │ │ │ ├── ittnotify_static.c │ │ │ │ ├── ittnotify_static.h │ │ │ │ ├── ittnotify_types.h │ │ │ │ └── legacy │ │ │ │ │ └── ittnotify.h │ │ │ ├── version.cpp │ │ │ └── waiters.h │ │ ├── tbbbind │ │ │ ├── CMakeLists.txt │ │ │ ├── def │ │ │ │ ├── lin32-tbbbind.def │ │ │ │ ├── lin64-tbbbind.def │ │ │ │ ├── win32-tbbbind.def │ │ │ │ └── win64-tbbbind.def │ │ │ └── tbb_bind.cpp │ │ ├── tbbmalloc │ │ │ ├── CMakeLists.txt │ │ │ ├── Customize.h │ │ │ ├── MapMemory.h │ │ │ ├── Statistics.h │ │ │ ├── Synchronize.h │ │ │ ├── TypeDefinitions.h │ │ │ ├── backend.cpp │ │ │ ├── backend.h │ │ │ ├── backref.cpp │ │ │ ├── def │ │ │ │ ├── lin32-tbbmalloc.def │ │ │ │ ├── lin64-tbbmalloc.def │ │ │ │ ├── mac64-tbbmalloc.def │ │ │ │ ├── win32-tbbmalloc.def │ │ │ │ └── win64-tbbmalloc.def │ │ │ ├── frontend.cpp │ │ │ ├── large_objects.cpp │ │ │ ├── large_objects.h │ │ │ ├── shared_utils.h │ │ │ ├── tbbmalloc.cpp │ │ │ ├── tbbmalloc_internal.h │ │ │ └── tbbmalloc_internal_api.h │ │ └── tbbmalloc_proxy │ │ │ ├── CMakeLists.txt │ │ │ ├── def │ │ │ ├── lin32-proxy.def │ │ │ └── lin64-proxy.def │ │ │ ├── function_replacement.cpp │ │ │ ├── function_replacement.h │ │ │ ├── proxy.cpp │ │ │ ├── proxy.h │ │ │ └── proxy_overload_osx.h │ └── third-party-programs.txt │ ├── parallel-hashmap │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ └── parallel_hashmap │ │ ├── btree.h │ │ ├── conanfile.py │ │ ├── meminfo.h │ │ ├── phmap.h │ │ ├── phmap_base.h │ │ ├── phmap_bits.h │ │ ├── phmap_config.h │ │ ├── phmap_dump.h │ │ ├── phmap_fwd_decl.h │ │ └── phmap_utils.h │ └── yocto │ └── yocto_parallel.h ├── code ├── booleans.cpp ├── booleans.h ├── foctree.cpp └── foctree.h ├── data ├── .gitignore ├── armadillo.obj ├── bunny.obj ├── bunny100k.obj ├── bunny200k.obj ├── bunny25k.obj ├── bunny50k.obj ├── cactus.off ├── cactus100k.obj ├── cactus10k.obj ├── cactus200k.obj ├── cactus25k.obj ├── cactus50k.obj ├── cow.obj ├── cow100K.obj ├── cow200K.obj ├── cow25k.obj ├── cow50k.obj ├── cube.obj ├── fertility.obj ├── res.obj ├── sphere1.obj ├── sphere2.obj ├── spheres.obj └── spheres │ ├── 0.obj │ ├── 1.obj │ ├── 10.obj │ ├── 100.obj │ ├── 101.obj │ ├── 102.obj │ ├── 103.obj │ ├── 104.obj │ ├── 105.obj │ ├── 106.obj │ ├── 107.obj │ ├── 108.obj │ ├── 109.obj │ ├── 11.obj │ ├── 110.obj │ ├── 111.obj │ ├── 112.obj │ ├── 113.obj │ ├── 114.obj │ ├── 115.obj │ ├── 116.obj │ ├── 117.obj │ ├── 118.obj │ ├── 119.obj │ ├── 12.obj │ ├── 120.obj │ ├── 121.obj │ ├── 122.obj │ ├── 123.obj │ ├── 124.obj │ ├── 125.obj │ ├── 126.obj │ ├── 127.obj │ ├── 128.obj │ ├── 129.obj │ ├── 13.obj │ ├── 130.obj │ ├── 131.obj │ ├── 132.obj │ ├── 133.obj │ ├── 134.obj │ ├── 135.obj │ ├── 136.obj │ ├── 137.obj │ ├── 138.obj │ ├── 139.obj │ ├── 14.obj │ ├── 140.obj │ ├── 141.obj │ ├── 142.obj │ ├── 143.obj │ ├── 144.obj │ ├── 145.obj │ ├── 146.obj │ ├── 147.obj │ ├── 148.obj │ ├── 149.obj │ ├── 15.obj │ ├── 150.obj │ ├── 151.obj │ ├── 152.obj │ ├── 153.obj │ ├── 154.obj │ ├── 155.obj │ ├── 156.obj │ ├── 157.obj │ ├── 158.obj │ ├── 159.obj │ ├── 16.obj │ ├── 160.obj │ ├── 161.obj │ ├── 162.obj │ ├── 163.obj │ ├── 164.obj │ ├── 165.obj │ ├── 166.obj │ ├── 167.obj │ ├── 168.obj │ ├── 169.obj │ ├── 17.obj │ ├── 170.obj │ ├── 171.obj │ ├── 172.obj │ ├── 173.obj │ ├── 174.obj │ ├── 175.obj │ ├── 176.obj │ ├── 177.obj │ ├── 178.obj │ ├── 179.obj │ ├── 18.obj │ ├── 180.obj │ ├── 181.obj │ ├── 182.obj │ ├── 183.obj │ ├── 184.obj │ ├── 185.obj │ ├── 186.obj │ ├── 187.obj │ ├── 188.obj │ ├── 189.obj │ ├── 19.obj │ ├── 190.obj │ ├── 191.obj │ ├── 192.obj │ ├── 193.obj │ ├── 194.obj │ ├── 195.obj │ ├── 196.obj │ ├── 197.obj │ ├── 198.obj │ ├── 199.obj │ ├── 2.obj │ ├── 20.obj │ ├── 200.obj │ ├── 201.obj │ ├── 202.obj │ ├── 203.obj │ ├── 204.obj │ ├── 205.obj │ ├── 206.obj │ ├── 207.obj │ ├── 208.obj │ ├── 209.obj │ ├── 21.obj │ ├── 210.obj │ ├── 211.obj │ ├── 212.obj │ ├── 213.obj │ ├── 214.obj │ ├── 215.obj │ ├── 216.obj │ ├── 217.obj │ ├── 218.obj │ ├── 219.obj │ ├── 22.obj │ ├── 220.obj │ ├── 221.obj │ ├── 222.obj │ ├── 223.obj │ ├── 224.obj │ ├── 225.obj │ ├── 226.obj │ ├── 227.obj │ ├── 228.obj │ ├── 229.obj │ ├── 23.obj │ ├── 230.obj │ ├── 231.obj │ ├── 232.obj │ ├── 233.obj │ ├── 234.obj │ ├── 235.obj │ ├── 236.obj │ ├── 237.obj │ ├── 238.obj │ ├── 239.obj │ ├── 24.obj │ ├── 240.obj │ ├── 241.obj │ ├── 242.obj │ ├── 243.obj │ ├── 244.obj │ ├── 245.obj │ ├── 246.obj │ ├── 247.obj │ ├── 248.obj │ ├── 249.obj │ ├── 25.obj │ ├── 250.obj │ ├── 251.obj │ ├── 252.obj │ ├── 253.obj │ ├── 254.obj │ ├── 255.obj │ ├── 256.obj │ ├── 257.obj │ ├── 258.obj │ ├── 259.obj │ ├── 26.obj │ ├── 260.obj │ ├── 261.obj │ ├── 262.obj │ ├── 263.obj │ ├── 264.obj │ ├── 265.obj │ ├── 266.obj │ ├── 267.obj │ ├── 268.obj │ ├── 269.obj │ ├── 27.obj │ ├── 270.obj │ ├── 271.obj │ ├── 272.obj │ ├── 273.obj │ ├── 274.obj │ ├── 275.obj │ ├── 276.obj │ ├── 277.obj │ ├── 278.obj │ ├── 279.obj │ ├── 28.obj │ ├── 280.obj │ ├── 281.obj │ ├── 282.obj │ ├── 283.obj │ ├── 284.obj │ ├── 285.obj │ ├── 286.obj │ ├── 287.obj │ ├── 288.obj │ ├── 289.obj │ ├── 29.obj │ ├── 290.obj │ ├── 291.obj │ ├── 292.obj │ ├── 293.obj │ ├── 294.obj │ ├── 295.obj │ ├── 296.obj │ ├── 297.obj │ ├── 298.obj │ ├── 299.obj │ ├── 3.obj │ ├── 30.obj │ ├── 300.obj │ ├── 301.obj │ ├── 302.obj │ ├── 303.obj │ ├── 304.obj │ ├── 305.obj │ ├── 306.obj │ ├── 307.obj │ ├── 308.obj │ ├── 309.obj │ ├── 31.obj │ ├── 310.obj │ ├── 311.obj │ ├── 312.obj │ ├── 313.obj │ ├── 314.obj │ ├── 315.obj │ ├── 316.obj │ ├── 317.obj │ ├── 318.obj │ ├── 319.obj │ ├── 32.obj │ ├── 320.obj │ ├── 321.obj │ ├── 322.obj │ ├── 323.obj │ ├── 324.obj │ ├── 325.obj │ ├── 326.obj │ ├── 327.obj │ ├── 328.obj │ ├── 329.obj │ ├── 33.obj │ ├── 330.obj │ ├── 331.obj │ ├── 332.obj │ ├── 333.obj │ ├── 334.obj │ ├── 335.obj │ ├── 336.obj │ ├── 337.obj │ ├── 338.obj │ ├── 339.obj │ ├── 34.obj │ ├── 340.obj │ ├── 341.obj │ ├── 342.obj │ ├── 343.obj │ ├── 344.obj │ ├── 345.obj │ ├── 346.obj │ ├── 347.obj │ ├── 348.obj │ ├── 349.obj │ ├── 35.obj │ ├── 350.obj │ ├── 351.obj │ ├── 352.obj │ ├── 353.obj │ ├── 354.obj │ ├── 355.obj │ ├── 356.obj │ ├── 357.obj │ ├── 358.obj │ ├── 359.obj │ ├── 36.obj │ ├── 360.obj │ ├── 361.obj │ ├── 362.obj │ ├── 363.obj │ ├── 364.obj │ ├── 365.obj │ ├── 366.obj │ ├── 367.obj │ ├── 368.obj │ ├── 369.obj │ ├── 37.obj │ ├── 370.obj │ ├── 371.obj │ ├── 372.obj │ ├── 373.obj │ ├── 374.obj │ ├── 375.obj │ ├── 376.obj │ ├── 377.obj │ ├── 378.obj │ ├── 379.obj │ ├── 38.obj │ ├── 380.obj │ ├── 381.obj │ ├── 382.obj │ ├── 383.obj │ ├── 384.obj │ ├── 385.obj │ ├── 386.obj │ ├── 387.obj │ ├── 388.obj │ ├── 389.obj │ ├── 39.obj │ ├── 390.obj │ ├── 391.obj │ ├── 392.obj │ ├── 393.obj │ ├── 394.obj │ ├── 395.obj │ ├── 396.obj │ ├── 397.obj │ ├── 398.obj │ ├── 399.obj │ ├── 4.obj │ ├── 40.obj │ ├── 400.obj │ ├── 401.obj │ ├── 402.obj │ ├── 403.obj │ ├── 404.obj │ ├── 405.obj │ ├── 406.obj │ ├── 407.obj │ ├── 408.obj │ ├── 409.obj │ ├── 41.obj │ ├── 410.obj │ ├── 411.obj │ ├── 412.obj │ ├── 413.obj │ ├── 414.obj │ ├── 415.obj │ ├── 416.obj │ ├── 417.obj │ ├── 418.obj │ ├── 419.obj │ ├── 42.obj │ ├── 420.obj │ ├── 421.obj │ ├── 422.obj │ ├── 423.obj │ ├── 424.obj │ ├── 425.obj │ ├── 426.obj │ ├── 427.obj │ ├── 428.obj │ ├── 429.obj │ ├── 43.obj │ ├── 430.obj │ ├── 431.obj │ ├── 432.obj │ ├── 433.obj │ ├── 434.obj │ ├── 435.obj │ ├── 436.obj │ ├── 437.obj │ ├── 438.obj │ ├── 439.obj │ ├── 44.obj │ ├── 440.obj │ ├── 441.obj │ ├── 442.obj │ ├── 443.obj │ ├── 444.obj │ ├── 445.obj │ ├── 446.obj │ ├── 447.obj │ ├── 448.obj │ ├── 449.obj │ ├── 45.obj │ ├── 450.obj │ ├── 451.obj │ ├── 452.obj │ ├── 453.obj │ ├── 454.obj │ ├── 455.obj │ ├── 456.obj │ ├── 457.obj │ ├── 458.obj │ ├── 459.obj │ ├── 46.obj │ ├── 460.obj │ ├── 461.obj │ ├── 462.obj │ ├── 463.obj │ ├── 464.obj │ ├── 465.obj │ ├── 466.obj │ ├── 467.obj │ ├── 468.obj │ ├── 469.obj │ ├── 47.obj │ ├── 470.obj │ ├── 471.obj │ ├── 472.obj │ ├── 473.obj │ ├── 474.obj │ ├── 475.obj │ ├── 476.obj │ ├── 477.obj │ ├── 478.obj │ ├── 479.obj │ ├── 48.obj │ ├── 480.obj │ ├── 481.obj │ ├── 482.obj │ ├── 483.obj │ ├── 484.obj │ ├── 485.obj │ ├── 486.obj │ ├── 487.obj │ ├── 488.obj │ ├── 489.obj │ ├── 49.obj │ ├── 490.obj │ ├── 491.obj │ ├── 492.obj │ ├── 493.obj │ ├── 494.obj │ ├── 495.obj │ ├── 496.obj │ ├── 497.obj │ ├── 498.obj │ ├── 499.obj │ ├── 5.obj │ ├── 50.obj │ ├── 500.obj │ ├── 501.obj │ ├── 502.obj │ ├── 503.obj │ ├── 504.obj │ ├── 505.obj │ ├── 506.obj │ ├── 507.obj │ ├── 508.obj │ ├── 509.obj │ ├── 51.obj │ ├── 510.obj │ ├── 511.obj │ ├── 512.obj │ ├── 513.obj │ ├── 514.obj │ ├── 515.obj │ ├── 516.obj │ ├── 517.obj │ ├── 518.obj │ ├── 519.obj │ ├── 52.obj │ ├── 520.obj │ ├── 521.obj │ ├── 522.obj │ ├── 523.obj │ ├── 524.obj │ ├── 525.obj │ ├── 526.obj │ ├── 527.obj │ ├── 528.obj │ ├── 529.obj │ ├── 53.obj │ ├── 530.obj │ ├── 531.obj │ ├── 532.obj │ ├── 533.obj │ ├── 534.obj │ ├── 535.obj │ ├── 536.obj │ ├── 537.obj │ ├── 538.obj │ ├── 539.obj │ ├── 54.obj │ ├── 540.obj │ ├── 541.obj │ ├── 542.obj │ ├── 543.obj │ ├── 544.obj │ ├── 545.obj │ ├── 546.obj │ ├── 547.obj │ ├── 548.obj │ ├── 549.obj │ ├── 55.obj │ ├── 550.obj │ ├── 551.obj │ ├── 552.obj │ ├── 553.obj │ ├── 554.obj │ ├── 555.obj │ ├── 556.obj │ ├── 557.obj │ ├── 558.obj │ ├── 559.obj │ ├── 56.obj │ ├── 560.obj │ ├── 561.obj │ ├── 562.obj │ ├── 563.obj │ ├── 564.obj │ ├── 565.obj │ ├── 566.obj │ ├── 567.obj │ ├── 568.obj │ ├── 569.obj │ ├── 57.obj │ ├── 570.obj │ ├── 571.obj │ ├── 572.obj │ ├── 573.obj │ ├── 574.obj │ ├── 575.obj │ ├── 576.obj │ ├── 577.obj │ ├── 578.obj │ ├── 579.obj │ ├── 58.obj │ ├── 580.obj │ ├── 581.obj │ ├── 582.obj │ ├── 583.obj │ ├── 584.obj │ ├── 585.obj │ ├── 586.obj │ ├── 587.obj │ ├── 588.obj │ ├── 589.obj │ ├── 59.obj │ ├── 590.obj │ ├── 591.obj │ ├── 592.obj │ ├── 593.obj │ ├── 594.obj │ ├── 595.obj │ ├── 596.obj │ ├── 597.obj │ ├── 598.obj │ ├── 599.obj │ ├── 6.obj │ ├── 60.obj │ ├── 600.obj │ ├── 601.obj │ ├── 602.obj │ ├── 603.obj │ ├── 604.obj │ ├── 605.obj │ ├── 606.obj │ ├── 607.obj │ ├── 608.obj │ ├── 609.obj │ ├── 61.obj │ ├── 610.obj │ ├── 611.obj │ ├── 612.obj │ ├── 613.obj │ ├── 614.obj │ ├── 615.obj │ ├── 616.obj │ ├── 617.obj │ ├── 618.obj │ ├── 619.obj │ ├── 62.obj │ ├── 620.obj │ ├── 621.obj │ ├── 622.obj │ ├── 623.obj │ ├── 624.obj │ ├── 625.obj │ ├── 626.obj │ ├── 627.obj │ ├── 628.obj │ ├── 629.obj │ ├── 63.obj │ ├── 630.obj │ ├── 631.obj │ ├── 632.obj │ ├── 633.obj │ ├── 634.obj │ ├── 635.obj │ ├── 636.obj │ ├── 637.obj │ ├── 638.obj │ ├── 639.obj │ ├── 64.obj │ ├── 640.obj │ ├── 641.obj │ ├── 642.obj │ ├── 643.obj │ ├── 644.obj │ ├── 645.obj │ ├── 646.obj │ ├── 647.obj │ ├── 648.obj │ ├── 649.obj │ ├── 65.obj │ ├── 650.obj │ ├── 651.obj │ ├── 652.obj │ ├── 653.obj │ ├── 654.obj │ ├── 655.obj │ ├── 656.obj │ ├── 657.obj │ ├── 658.obj │ ├── 659.obj │ ├── 66.obj │ ├── 660.obj │ ├── 661.obj │ ├── 662.obj │ ├── 663.obj │ ├── 664.obj │ ├── 665.obj │ ├── 666.obj │ ├── 667.obj │ ├── 668.obj │ ├── 669.obj │ ├── 67.obj │ ├── 670.obj │ ├── 671.obj │ ├── 672.obj │ ├── 673.obj │ ├── 674.obj │ ├── 675.obj │ ├── 676.obj │ ├── 677.obj │ ├── 678.obj │ ├── 679.obj │ ├── 68.obj │ ├── 680.obj │ ├── 681.obj │ ├── 682.obj │ ├── 683.obj │ ├── 684.obj │ ├── 685.obj │ ├── 686.obj │ ├── 687.obj │ ├── 688.obj │ ├── 689.obj │ ├── 69.obj │ ├── 690.obj │ ├── 691.obj │ ├── 692.obj │ ├── 693.obj │ ├── 694.obj │ ├── 695.obj │ ├── 696.obj │ ├── 697.obj │ ├── 698.obj │ ├── 699.obj │ ├── 7.obj │ ├── 70.obj │ ├── 700.obj │ ├── 701.obj │ ├── 702.obj │ ├── 71.obj │ ├── 72.obj │ ├── 73.obj │ ├── 74.obj │ ├── 75.obj │ ├── 76.obj │ ├── 77.obj │ ├── 78.obj │ ├── 79.obj │ ├── 8.obj │ ├── 80.obj │ ├── 81.obj │ ├── 82.obj │ ├── 83.obj │ ├── 84.obj │ ├── 85.obj │ ├── 86.obj │ ├── 87.obj │ ├── 88.obj │ ├── 89.obj │ ├── 9.obj │ ├── 90.obj │ ├── 91.obj │ ├── 92.obj │ ├── 93.obj │ ├── 94.obj │ ├── 95.obj │ ├── 96.obj │ ├── 97.obj │ ├── 98.obj │ └── 99.obj ├── main-arap.cpp ├── main-inputcheck.cpp ├── main-rotation.cpp ├── main-stencil.cpp ├── main.cpp └── teaser_img.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/README.md -------------------------------------------------------------------------------- /arrangements/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/LICENSE -------------------------------------------------------------------------------- /arrangements/code/aux_structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/aux_structure.cpp -------------------------------------------------------------------------------- /arrangements/code/aux_structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/aux_structure.h -------------------------------------------------------------------------------- /arrangements/code/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/common.h -------------------------------------------------------------------------------- /arrangements/code/custom_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/custom_stack.h -------------------------------------------------------------------------------- /arrangements/code/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/debug.h -------------------------------------------------------------------------------- /arrangements/code/fast_trimesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/fast_trimesh.cpp -------------------------------------------------------------------------------- /arrangements/code/fast_trimesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/fast_trimesh.h -------------------------------------------------------------------------------- /arrangements/code/intersection_classification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/intersection_classification.cpp -------------------------------------------------------------------------------- /arrangements/code/intersection_classification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/intersection_classification.h -------------------------------------------------------------------------------- /arrangements/code/io_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/io_functions.cpp -------------------------------------------------------------------------------- /arrangements/code/io_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/io_functions.h -------------------------------------------------------------------------------- /arrangements/code/processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/processing.cpp -------------------------------------------------------------------------------- /arrangements/code/processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/processing.h -------------------------------------------------------------------------------- /arrangements/code/solve_intersections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/solve_intersections.cpp -------------------------------------------------------------------------------- /arrangements/code/solve_intersections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/solve_intersections.h -------------------------------------------------------------------------------- /arrangements/code/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/tree.h -------------------------------------------------------------------------------- /arrangements/code/triangle_soup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/triangle_soup.cpp -------------------------------------------------------------------------------- /arrangements/code/triangle_soup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/triangle_soup.h -------------------------------------------------------------------------------- /arrangements/code/triangulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/triangulation.cpp -------------------------------------------------------------------------------- /arrangements/code/triangulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/triangulation.h -------------------------------------------------------------------------------- /arrangements/code/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/code/utils.h -------------------------------------------------------------------------------- /arrangements/external/Cinolib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/Cinolib/LICENSE -------------------------------------------------------------------------------- /arrangements/external/Cinolib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/Cinolib/README.md -------------------------------------------------------------------------------- /arrangements/external/Cinolib/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/Cinolib/TODO.md -------------------------------------------------------------------------------- /arrangements/external/Cinolib/cinolib-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/Cinolib/cinolib-config.cmake -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/debug/gdb/__init__.py: -------------------------------------------------------------------------------- 1 | # Intentionally empty 2 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/doc/snippets/MatrixBase_cwiseSqrt.cpp: -------------------------------------------------------------------------------- 1 | Vector3d v(1,2,4); 2 | cout << v.cwiseSqrt() << endl; 3 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/doc/snippets/MatrixBase_identity.cpp: -------------------------------------------------------------------------------- 1 | cout << Matrix::Identity() << endl; 2 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/doc/snippets/MatrixBase_identity_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXd::Identity(4, 3) << endl; 2 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/doc/snippets/MatrixBase_ones_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Ones(2,3) << endl; 2 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/doc/snippets/MatrixBase_random.cpp: -------------------------------------------------------------------------------- 1 | cout << 100 * Matrix2i::Random() << endl; 2 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/doc/snippets/MatrixBase_random_int.cpp: -------------------------------------------------------------------------------- 1 | cout << VectorXi::Random(2) << endl; 2 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/doc/snippets/MatrixBase_random_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Random(2,3) << endl; 2 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/doc/snippets/MatrixBase_zero_int_int.cpp: -------------------------------------------------------------------------------- 1 | cout << MatrixXi::Zero(2,3) << endl; 2 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/scripts/debug.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Debug . 4 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/scripts/release.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cmake -DCMAKE_BUILD_TYPE=Release . 4 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/eigen/test/evaluator_common.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/imgui/glfw/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake") 2 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/external/stb/stb_image.cpp: -------------------------------------------------------------------------------- 1 | #define STB_IMAGE_IMPLEMENTATION 2 | #include "stb_image.h" 3 | -------------------------------------------------------------------------------- /arrangements/external/Cinolib/include/cinolib/pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/Cinolib/include/cinolib/pi.h -------------------------------------------------------------------------------- /arrangements/external/Indirect_Predicates/JPCK/predicates/TODO.txt: -------------------------------------------------------------------------------- 1 | misaligned3d_indirect flavours 2 | -------------------------------------------------------------------------------- /arrangements/external/Indirect_Predicates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/Indirect_Predicates/LICENSE -------------------------------------------------------------------------------- /arrangements/external/Indirect_Predicates/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/Indirect_Predicates/test.cpp -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/.clang-format -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/AUTHORS -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/BUILD.bazel -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/CMake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/CMake/README.md -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/CONTRIBUTING.md -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/FAQ.md -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/LICENSE -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/README.md -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/UPGRADES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/UPGRADES.md -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/WORKSPACE -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/absl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/absl/BUILD.bazel -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/absl/base/casts.h -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/absl/base/port.h -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/absl/flags/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/absl/flags/flag.h -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/absl/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/absl/hash/hash.h -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/absl/time/internal/cctz/testdata/version: -------------------------------------------------------------------------------- 1 | 2022a 2 | -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/conanfile.py -------------------------------------------------------------------------------- /arrangements/external/abseil-cpp/create_lts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/abseil-cpp/create_lts.py -------------------------------------------------------------------------------- /arrangements/external/oneTBB/.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/.bazelrc -------------------------------------------------------------------------------- /arrangements/external/oneTBB/.bazelversion: -------------------------------------------------------------------------------- 1 | 5.0.0 2 | -------------------------------------------------------------------------------- /arrangements/external/oneTBB/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/.gitattributes -------------------------------------------------------------------------------- /arrangements/external/oneTBB/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/BUILD.bazel -------------------------------------------------------------------------------- /arrangements/external/oneTBB/Bazel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/Bazel.md -------------------------------------------------------------------------------- /arrangements/external/oneTBB/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/CMakeLists.txt -------------------------------------------------------------------------------- /arrangements/external/oneTBB/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/CONTRIBUTING.md -------------------------------------------------------------------------------- /arrangements/external/oneTBB/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/INSTALL.md -------------------------------------------------------------------------------- /arrangements/external/oneTBB/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/LICENSE.txt -------------------------------------------------------------------------------- /arrangements/external/oneTBB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/README.md -------------------------------------------------------------------------------- /arrangements/external/oneTBB/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/RELEASE_NOTES.md -------------------------------------------------------------------------------- /arrangements/external/oneTBB/WORKSPACE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/WORKSPACE.bazel -------------------------------------------------------------------------------- /arrangements/external/oneTBB/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/cmake/README.md -------------------------------------------------------------------------------- /arrangements/external/oneTBB/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/cmake/utils.cmake -------------------------------------------------------------------------------- /arrangements/external/oneTBB/include/tbb/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/include/tbb/info.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/include/tbb/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/include/tbb/task.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/include/tbb/tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/include/tbb/tbb.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/python/README.md -------------------------------------------------------------------------------- /arrangements/external/oneTBB/python/TBB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/python/TBB.py -------------------------------------------------------------------------------- /arrangements/external/oneTBB/python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/python/setup.py -------------------------------------------------------------------------------- /arrangements/external/oneTBB/python/tbb/api.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/python/tbb/api.i -------------------------------------------------------------------------------- /arrangements/external/oneTBB/python/tbb/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/python/tbb/pool.py -------------------------------------------------------------------------------- /arrangements/external/oneTBB/python/tbb/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/python/tbb/test.py -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/arena.cpp -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/arena.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/governor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/governor.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/mailbox.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/main.cpp -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/main.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/market.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/market.cpp -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/market.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/market.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/misc.cpp -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/misc.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/misc_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/misc_ex.cpp -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/rml_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/rml_base.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/rml_tbb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/rml_tbb.cpp -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/rml_tbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/rml_tbb.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/semaphore.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/task.cpp -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/tls.h -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/version.cpp -------------------------------------------------------------------------------- /arrangements/external/oneTBB/src/tbb/waiters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/oneTBB/src/tbb/waiters.h -------------------------------------------------------------------------------- /arrangements/external/parallel-hashmap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/parallel-hashmap/LICENSE -------------------------------------------------------------------------------- /arrangements/external/parallel-hashmap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/parallel-hashmap/README.md -------------------------------------------------------------------------------- /arrangements/external/yocto/yocto_parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/arrangements/external/yocto/yocto_parallel.h -------------------------------------------------------------------------------- /code/booleans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/code/booleans.cpp -------------------------------------------------------------------------------- /code/booleans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/code/booleans.h -------------------------------------------------------------------------------- /code/foctree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/code/foctree.cpp -------------------------------------------------------------------------------- /code/foctree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/code/foctree.h -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | dragon7M.obj -------------------------------------------------------------------------------- /data/armadillo.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/armadillo.obj -------------------------------------------------------------------------------- /data/bunny.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/bunny.obj -------------------------------------------------------------------------------- /data/bunny100k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/bunny100k.obj -------------------------------------------------------------------------------- /data/bunny200k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/bunny200k.obj -------------------------------------------------------------------------------- /data/bunny25k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/bunny25k.obj -------------------------------------------------------------------------------- /data/bunny50k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/bunny50k.obj -------------------------------------------------------------------------------- /data/cactus.off: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cactus.off -------------------------------------------------------------------------------- /data/cactus100k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cactus100k.obj -------------------------------------------------------------------------------- /data/cactus10k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cactus10k.obj -------------------------------------------------------------------------------- /data/cactus200k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cactus200k.obj -------------------------------------------------------------------------------- /data/cactus25k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cactus25k.obj -------------------------------------------------------------------------------- /data/cactus50k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cactus50k.obj -------------------------------------------------------------------------------- /data/cow.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cow.obj -------------------------------------------------------------------------------- /data/cow100K.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cow100K.obj -------------------------------------------------------------------------------- /data/cow200K.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cow200K.obj -------------------------------------------------------------------------------- /data/cow25k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cow25k.obj -------------------------------------------------------------------------------- /data/cow50k.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cow50k.obj -------------------------------------------------------------------------------- /data/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/cube.obj -------------------------------------------------------------------------------- /data/fertility.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/fertility.obj -------------------------------------------------------------------------------- /data/res.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/res.obj -------------------------------------------------------------------------------- /data/sphere1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/sphere1.obj -------------------------------------------------------------------------------- /data/sphere2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/sphere2.obj -------------------------------------------------------------------------------- /data/spheres.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres.obj -------------------------------------------------------------------------------- /data/spheres/0.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/0.obj -------------------------------------------------------------------------------- /data/spheres/1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/1.obj -------------------------------------------------------------------------------- /data/spheres/10.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/10.obj -------------------------------------------------------------------------------- /data/spheres/100.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/100.obj -------------------------------------------------------------------------------- /data/spheres/101.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/101.obj -------------------------------------------------------------------------------- /data/spheres/102.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/102.obj -------------------------------------------------------------------------------- /data/spheres/103.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/103.obj -------------------------------------------------------------------------------- /data/spheres/104.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/104.obj -------------------------------------------------------------------------------- /data/spheres/105.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/105.obj -------------------------------------------------------------------------------- /data/spheres/106.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/106.obj -------------------------------------------------------------------------------- /data/spheres/107.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/107.obj -------------------------------------------------------------------------------- /data/spheres/108.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/108.obj -------------------------------------------------------------------------------- /data/spheres/109.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/109.obj -------------------------------------------------------------------------------- /data/spheres/11.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/11.obj -------------------------------------------------------------------------------- /data/spheres/110.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/110.obj -------------------------------------------------------------------------------- /data/spheres/111.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/111.obj -------------------------------------------------------------------------------- /data/spheres/112.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/112.obj -------------------------------------------------------------------------------- /data/spheres/113.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/113.obj -------------------------------------------------------------------------------- /data/spheres/114.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/114.obj -------------------------------------------------------------------------------- /data/spheres/115.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/115.obj -------------------------------------------------------------------------------- /data/spheres/116.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/116.obj -------------------------------------------------------------------------------- /data/spheres/117.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/117.obj -------------------------------------------------------------------------------- /data/spheres/118.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/118.obj -------------------------------------------------------------------------------- /data/spheres/119.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/119.obj -------------------------------------------------------------------------------- /data/spheres/12.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/12.obj -------------------------------------------------------------------------------- /data/spheres/120.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/120.obj -------------------------------------------------------------------------------- /data/spheres/121.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/121.obj -------------------------------------------------------------------------------- /data/spheres/122.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/122.obj -------------------------------------------------------------------------------- /data/spheres/123.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/123.obj -------------------------------------------------------------------------------- /data/spheres/124.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/124.obj -------------------------------------------------------------------------------- /data/spheres/125.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/125.obj -------------------------------------------------------------------------------- /data/spheres/126.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/126.obj -------------------------------------------------------------------------------- /data/spheres/127.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/127.obj -------------------------------------------------------------------------------- /data/spheres/128.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/128.obj -------------------------------------------------------------------------------- /data/spheres/129.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/129.obj -------------------------------------------------------------------------------- /data/spheres/13.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/13.obj -------------------------------------------------------------------------------- /data/spheres/130.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/130.obj -------------------------------------------------------------------------------- /data/spheres/131.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/131.obj -------------------------------------------------------------------------------- /data/spheres/132.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/132.obj -------------------------------------------------------------------------------- /data/spheres/133.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/133.obj -------------------------------------------------------------------------------- /data/spheres/134.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/134.obj -------------------------------------------------------------------------------- /data/spheres/135.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/135.obj -------------------------------------------------------------------------------- /data/spheres/136.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/136.obj -------------------------------------------------------------------------------- /data/spheres/137.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/137.obj -------------------------------------------------------------------------------- /data/spheres/138.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/138.obj -------------------------------------------------------------------------------- /data/spheres/139.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/139.obj -------------------------------------------------------------------------------- /data/spheres/14.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/14.obj -------------------------------------------------------------------------------- /data/spheres/140.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/140.obj -------------------------------------------------------------------------------- /data/spheres/141.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/141.obj -------------------------------------------------------------------------------- /data/spheres/142.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/142.obj -------------------------------------------------------------------------------- /data/spheres/143.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/143.obj -------------------------------------------------------------------------------- /data/spheres/144.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/144.obj -------------------------------------------------------------------------------- /data/spheres/145.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/145.obj -------------------------------------------------------------------------------- /data/spheres/146.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/146.obj -------------------------------------------------------------------------------- /data/spheres/147.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/147.obj -------------------------------------------------------------------------------- /data/spheres/148.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/148.obj -------------------------------------------------------------------------------- /data/spheres/149.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/149.obj -------------------------------------------------------------------------------- /data/spheres/15.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/15.obj -------------------------------------------------------------------------------- /data/spheres/150.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/150.obj -------------------------------------------------------------------------------- /data/spheres/151.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/151.obj -------------------------------------------------------------------------------- /data/spheres/152.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/152.obj -------------------------------------------------------------------------------- /data/spheres/153.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/153.obj -------------------------------------------------------------------------------- /data/spheres/154.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/154.obj -------------------------------------------------------------------------------- /data/spheres/155.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/155.obj -------------------------------------------------------------------------------- /data/spheres/156.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/156.obj -------------------------------------------------------------------------------- /data/spheres/157.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/157.obj -------------------------------------------------------------------------------- /data/spheres/158.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/158.obj -------------------------------------------------------------------------------- /data/spheres/159.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/159.obj -------------------------------------------------------------------------------- /data/spheres/16.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/16.obj -------------------------------------------------------------------------------- /data/spheres/160.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/160.obj -------------------------------------------------------------------------------- /data/spheres/161.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/161.obj -------------------------------------------------------------------------------- /data/spheres/162.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/162.obj -------------------------------------------------------------------------------- /data/spheres/163.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/163.obj -------------------------------------------------------------------------------- /data/spheres/164.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/164.obj -------------------------------------------------------------------------------- /data/spheres/165.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/165.obj -------------------------------------------------------------------------------- /data/spheres/166.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/166.obj -------------------------------------------------------------------------------- /data/spheres/167.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/167.obj -------------------------------------------------------------------------------- /data/spheres/168.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/168.obj -------------------------------------------------------------------------------- /data/spheres/169.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/169.obj -------------------------------------------------------------------------------- /data/spheres/17.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/17.obj -------------------------------------------------------------------------------- /data/spheres/170.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/170.obj -------------------------------------------------------------------------------- /data/spheres/171.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/171.obj -------------------------------------------------------------------------------- /data/spheres/172.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/172.obj -------------------------------------------------------------------------------- /data/spheres/173.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/173.obj -------------------------------------------------------------------------------- /data/spheres/174.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/174.obj -------------------------------------------------------------------------------- /data/spheres/175.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/175.obj -------------------------------------------------------------------------------- /data/spheres/176.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/176.obj -------------------------------------------------------------------------------- /data/spheres/177.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/177.obj -------------------------------------------------------------------------------- /data/spheres/178.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/178.obj -------------------------------------------------------------------------------- /data/spheres/179.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/179.obj -------------------------------------------------------------------------------- /data/spheres/18.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/18.obj -------------------------------------------------------------------------------- /data/spheres/180.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/180.obj -------------------------------------------------------------------------------- /data/spheres/181.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/181.obj -------------------------------------------------------------------------------- /data/spheres/182.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/182.obj -------------------------------------------------------------------------------- /data/spheres/183.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/183.obj -------------------------------------------------------------------------------- /data/spheres/184.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/184.obj -------------------------------------------------------------------------------- /data/spheres/185.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/185.obj -------------------------------------------------------------------------------- /data/spheres/186.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/186.obj -------------------------------------------------------------------------------- /data/spheres/187.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/187.obj -------------------------------------------------------------------------------- /data/spheres/188.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/188.obj -------------------------------------------------------------------------------- /data/spheres/189.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/189.obj -------------------------------------------------------------------------------- /data/spheres/19.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/19.obj -------------------------------------------------------------------------------- /data/spheres/190.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/190.obj -------------------------------------------------------------------------------- /data/spheres/191.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/191.obj -------------------------------------------------------------------------------- /data/spheres/192.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/192.obj -------------------------------------------------------------------------------- /data/spheres/193.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/193.obj -------------------------------------------------------------------------------- /data/spheres/194.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/194.obj -------------------------------------------------------------------------------- /data/spheres/195.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/195.obj -------------------------------------------------------------------------------- /data/spheres/196.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/196.obj -------------------------------------------------------------------------------- /data/spheres/197.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/197.obj -------------------------------------------------------------------------------- /data/spheres/198.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/198.obj -------------------------------------------------------------------------------- /data/spheres/199.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/199.obj -------------------------------------------------------------------------------- /data/spheres/2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/2.obj -------------------------------------------------------------------------------- /data/spheres/20.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/20.obj -------------------------------------------------------------------------------- /data/spheres/200.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/200.obj -------------------------------------------------------------------------------- /data/spheres/201.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/201.obj -------------------------------------------------------------------------------- /data/spheres/202.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/202.obj -------------------------------------------------------------------------------- /data/spheres/203.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/203.obj -------------------------------------------------------------------------------- /data/spheres/204.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/204.obj -------------------------------------------------------------------------------- /data/spheres/205.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/205.obj -------------------------------------------------------------------------------- /data/spheres/206.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/206.obj -------------------------------------------------------------------------------- /data/spheres/207.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/207.obj -------------------------------------------------------------------------------- /data/spheres/208.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/208.obj -------------------------------------------------------------------------------- /data/spheres/209.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/209.obj -------------------------------------------------------------------------------- /data/spheres/21.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/21.obj -------------------------------------------------------------------------------- /data/spheres/210.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/210.obj -------------------------------------------------------------------------------- /data/spheres/211.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/211.obj -------------------------------------------------------------------------------- /data/spheres/212.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/212.obj -------------------------------------------------------------------------------- /data/spheres/213.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/213.obj -------------------------------------------------------------------------------- /data/spheres/214.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/214.obj -------------------------------------------------------------------------------- /data/spheres/215.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/215.obj -------------------------------------------------------------------------------- /data/spheres/216.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/216.obj -------------------------------------------------------------------------------- /data/spheres/217.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/217.obj -------------------------------------------------------------------------------- /data/spheres/218.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/218.obj -------------------------------------------------------------------------------- /data/spheres/219.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/219.obj -------------------------------------------------------------------------------- /data/spheres/22.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/22.obj -------------------------------------------------------------------------------- /data/spheres/220.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/220.obj -------------------------------------------------------------------------------- /data/spheres/221.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/221.obj -------------------------------------------------------------------------------- /data/spheres/222.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/222.obj -------------------------------------------------------------------------------- /data/spheres/223.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/223.obj -------------------------------------------------------------------------------- /data/spheres/224.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/224.obj -------------------------------------------------------------------------------- /data/spheres/225.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/225.obj -------------------------------------------------------------------------------- /data/spheres/226.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/226.obj -------------------------------------------------------------------------------- /data/spheres/227.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/227.obj -------------------------------------------------------------------------------- /data/spheres/228.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/228.obj -------------------------------------------------------------------------------- /data/spheres/229.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/229.obj -------------------------------------------------------------------------------- /data/spheres/23.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/23.obj -------------------------------------------------------------------------------- /data/spheres/230.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/230.obj -------------------------------------------------------------------------------- /data/spheres/231.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/231.obj -------------------------------------------------------------------------------- /data/spheres/232.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/232.obj -------------------------------------------------------------------------------- /data/spheres/233.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/233.obj -------------------------------------------------------------------------------- /data/spheres/234.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/234.obj -------------------------------------------------------------------------------- /data/spheres/235.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/235.obj -------------------------------------------------------------------------------- /data/spheres/236.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/236.obj -------------------------------------------------------------------------------- /data/spheres/237.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/237.obj -------------------------------------------------------------------------------- /data/spheres/238.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/238.obj -------------------------------------------------------------------------------- /data/spheres/239.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/239.obj -------------------------------------------------------------------------------- /data/spheres/24.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/24.obj -------------------------------------------------------------------------------- /data/spheres/240.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/240.obj -------------------------------------------------------------------------------- /data/spheres/241.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/241.obj -------------------------------------------------------------------------------- /data/spheres/242.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/242.obj -------------------------------------------------------------------------------- /data/spheres/243.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/243.obj -------------------------------------------------------------------------------- /data/spheres/244.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/244.obj -------------------------------------------------------------------------------- /data/spheres/245.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/245.obj -------------------------------------------------------------------------------- /data/spheres/246.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/246.obj -------------------------------------------------------------------------------- /data/spheres/247.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/247.obj -------------------------------------------------------------------------------- /data/spheres/248.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/248.obj -------------------------------------------------------------------------------- /data/spheres/249.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/249.obj -------------------------------------------------------------------------------- /data/spheres/25.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/25.obj -------------------------------------------------------------------------------- /data/spheres/250.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/250.obj -------------------------------------------------------------------------------- /data/spheres/251.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/251.obj -------------------------------------------------------------------------------- /data/spheres/252.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/252.obj -------------------------------------------------------------------------------- /data/spheres/253.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/253.obj -------------------------------------------------------------------------------- /data/spheres/254.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/254.obj -------------------------------------------------------------------------------- /data/spheres/255.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/255.obj -------------------------------------------------------------------------------- /data/spheres/256.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/256.obj -------------------------------------------------------------------------------- /data/spheres/257.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/257.obj -------------------------------------------------------------------------------- /data/spheres/258.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/258.obj -------------------------------------------------------------------------------- /data/spheres/259.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/259.obj -------------------------------------------------------------------------------- /data/spheres/26.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/26.obj -------------------------------------------------------------------------------- /data/spheres/260.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/260.obj -------------------------------------------------------------------------------- /data/spheres/261.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/261.obj -------------------------------------------------------------------------------- /data/spheres/262.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/262.obj -------------------------------------------------------------------------------- /data/spheres/263.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/263.obj -------------------------------------------------------------------------------- /data/spheres/264.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/264.obj -------------------------------------------------------------------------------- /data/spheres/265.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/265.obj -------------------------------------------------------------------------------- /data/spheres/266.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/266.obj -------------------------------------------------------------------------------- /data/spheres/267.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/267.obj -------------------------------------------------------------------------------- /data/spheres/268.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/268.obj -------------------------------------------------------------------------------- /data/spheres/269.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/269.obj -------------------------------------------------------------------------------- /data/spheres/27.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/27.obj -------------------------------------------------------------------------------- /data/spheres/270.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/270.obj -------------------------------------------------------------------------------- /data/spheres/271.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/271.obj -------------------------------------------------------------------------------- /data/spheres/272.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/272.obj -------------------------------------------------------------------------------- /data/spheres/273.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/273.obj -------------------------------------------------------------------------------- /data/spheres/274.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/274.obj -------------------------------------------------------------------------------- /data/spheres/275.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/275.obj -------------------------------------------------------------------------------- /data/spheres/276.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/276.obj -------------------------------------------------------------------------------- /data/spheres/277.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/277.obj -------------------------------------------------------------------------------- /data/spheres/278.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/278.obj -------------------------------------------------------------------------------- /data/spheres/279.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/279.obj -------------------------------------------------------------------------------- /data/spheres/28.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/28.obj -------------------------------------------------------------------------------- /data/spheres/280.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/280.obj -------------------------------------------------------------------------------- /data/spheres/281.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/281.obj -------------------------------------------------------------------------------- /data/spheres/282.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/282.obj -------------------------------------------------------------------------------- /data/spheres/283.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/283.obj -------------------------------------------------------------------------------- /data/spheres/284.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/284.obj -------------------------------------------------------------------------------- /data/spheres/285.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/285.obj -------------------------------------------------------------------------------- /data/spheres/286.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/286.obj -------------------------------------------------------------------------------- /data/spheres/287.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/287.obj -------------------------------------------------------------------------------- /data/spheres/288.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/288.obj -------------------------------------------------------------------------------- /data/spheres/289.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/289.obj -------------------------------------------------------------------------------- /data/spheres/29.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/29.obj -------------------------------------------------------------------------------- /data/spheres/290.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/290.obj -------------------------------------------------------------------------------- /data/spheres/291.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/291.obj -------------------------------------------------------------------------------- /data/spheres/292.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/292.obj -------------------------------------------------------------------------------- /data/spheres/293.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/293.obj -------------------------------------------------------------------------------- /data/spheres/294.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/294.obj -------------------------------------------------------------------------------- /data/spheres/295.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/295.obj -------------------------------------------------------------------------------- /data/spheres/296.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/296.obj -------------------------------------------------------------------------------- /data/spheres/297.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/297.obj -------------------------------------------------------------------------------- /data/spheres/298.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/298.obj -------------------------------------------------------------------------------- /data/spheres/299.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/299.obj -------------------------------------------------------------------------------- /data/spheres/3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/3.obj -------------------------------------------------------------------------------- /data/spheres/30.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/30.obj -------------------------------------------------------------------------------- /data/spheres/300.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/300.obj -------------------------------------------------------------------------------- /data/spheres/301.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/301.obj -------------------------------------------------------------------------------- /data/spheres/302.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/302.obj -------------------------------------------------------------------------------- /data/spheres/303.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/303.obj -------------------------------------------------------------------------------- /data/spheres/304.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/304.obj -------------------------------------------------------------------------------- /data/spheres/305.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/305.obj -------------------------------------------------------------------------------- /data/spheres/306.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/306.obj -------------------------------------------------------------------------------- /data/spheres/307.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/307.obj -------------------------------------------------------------------------------- /data/spheres/308.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/308.obj -------------------------------------------------------------------------------- /data/spheres/309.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/309.obj -------------------------------------------------------------------------------- /data/spheres/31.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/31.obj -------------------------------------------------------------------------------- /data/spheres/310.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/310.obj -------------------------------------------------------------------------------- /data/spheres/311.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/311.obj -------------------------------------------------------------------------------- /data/spheres/312.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/312.obj -------------------------------------------------------------------------------- /data/spheres/313.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/313.obj -------------------------------------------------------------------------------- /data/spheres/314.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/314.obj -------------------------------------------------------------------------------- /data/spheres/315.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/315.obj -------------------------------------------------------------------------------- /data/spheres/316.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/316.obj -------------------------------------------------------------------------------- /data/spheres/317.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/317.obj -------------------------------------------------------------------------------- /data/spheres/318.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/318.obj -------------------------------------------------------------------------------- /data/spheres/319.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/319.obj -------------------------------------------------------------------------------- /data/spheres/32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/32.obj -------------------------------------------------------------------------------- /data/spheres/320.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/320.obj -------------------------------------------------------------------------------- /data/spheres/321.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/321.obj -------------------------------------------------------------------------------- /data/spheres/322.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/322.obj -------------------------------------------------------------------------------- /data/spheres/323.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/323.obj -------------------------------------------------------------------------------- /data/spheres/324.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/324.obj -------------------------------------------------------------------------------- /data/spheres/325.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/325.obj -------------------------------------------------------------------------------- /data/spheres/326.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/326.obj -------------------------------------------------------------------------------- /data/spheres/327.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/327.obj -------------------------------------------------------------------------------- /data/spheres/328.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/328.obj -------------------------------------------------------------------------------- /data/spheres/329.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/329.obj -------------------------------------------------------------------------------- /data/spheres/33.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/33.obj -------------------------------------------------------------------------------- /data/spheres/330.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/330.obj -------------------------------------------------------------------------------- /data/spheres/331.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/331.obj -------------------------------------------------------------------------------- /data/spheres/332.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/332.obj -------------------------------------------------------------------------------- /data/spheres/333.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/333.obj -------------------------------------------------------------------------------- /data/spheres/334.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/334.obj -------------------------------------------------------------------------------- /data/spheres/335.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/335.obj -------------------------------------------------------------------------------- /data/spheres/336.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/336.obj -------------------------------------------------------------------------------- /data/spheres/337.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/337.obj -------------------------------------------------------------------------------- /data/spheres/338.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/338.obj -------------------------------------------------------------------------------- /data/spheres/339.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/339.obj -------------------------------------------------------------------------------- /data/spheres/34.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/34.obj -------------------------------------------------------------------------------- /data/spheres/340.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/340.obj -------------------------------------------------------------------------------- /data/spheres/341.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/341.obj -------------------------------------------------------------------------------- /data/spheres/342.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/342.obj -------------------------------------------------------------------------------- /data/spheres/343.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/343.obj -------------------------------------------------------------------------------- /data/spheres/344.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/344.obj -------------------------------------------------------------------------------- /data/spheres/345.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/345.obj -------------------------------------------------------------------------------- /data/spheres/346.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/346.obj -------------------------------------------------------------------------------- /data/spheres/347.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/347.obj -------------------------------------------------------------------------------- /data/spheres/348.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/348.obj -------------------------------------------------------------------------------- /data/spheres/349.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/349.obj -------------------------------------------------------------------------------- /data/spheres/35.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/35.obj -------------------------------------------------------------------------------- /data/spheres/350.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/350.obj -------------------------------------------------------------------------------- /data/spheres/351.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/351.obj -------------------------------------------------------------------------------- /data/spheres/352.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/352.obj -------------------------------------------------------------------------------- /data/spheres/353.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/353.obj -------------------------------------------------------------------------------- /data/spheres/354.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/354.obj -------------------------------------------------------------------------------- /data/spheres/355.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/355.obj -------------------------------------------------------------------------------- /data/spheres/356.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/356.obj -------------------------------------------------------------------------------- /data/spheres/357.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/357.obj -------------------------------------------------------------------------------- /data/spheres/358.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/358.obj -------------------------------------------------------------------------------- /data/spheres/359.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/359.obj -------------------------------------------------------------------------------- /data/spheres/36.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/36.obj -------------------------------------------------------------------------------- /data/spheres/360.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/360.obj -------------------------------------------------------------------------------- /data/spheres/361.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/361.obj -------------------------------------------------------------------------------- /data/spheres/362.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/362.obj -------------------------------------------------------------------------------- /data/spheres/363.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/363.obj -------------------------------------------------------------------------------- /data/spheres/364.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/364.obj -------------------------------------------------------------------------------- /data/spheres/365.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/365.obj -------------------------------------------------------------------------------- /data/spheres/366.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/366.obj -------------------------------------------------------------------------------- /data/spheres/367.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/367.obj -------------------------------------------------------------------------------- /data/spheres/368.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/368.obj -------------------------------------------------------------------------------- /data/spheres/369.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/369.obj -------------------------------------------------------------------------------- /data/spheres/37.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/37.obj -------------------------------------------------------------------------------- /data/spheres/370.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/370.obj -------------------------------------------------------------------------------- /data/spheres/371.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/371.obj -------------------------------------------------------------------------------- /data/spheres/372.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/372.obj -------------------------------------------------------------------------------- /data/spheres/373.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/373.obj -------------------------------------------------------------------------------- /data/spheres/374.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/374.obj -------------------------------------------------------------------------------- /data/spheres/375.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/375.obj -------------------------------------------------------------------------------- /data/spheres/376.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/376.obj -------------------------------------------------------------------------------- /data/spheres/377.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/377.obj -------------------------------------------------------------------------------- /data/spheres/378.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/378.obj -------------------------------------------------------------------------------- /data/spheres/379.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/379.obj -------------------------------------------------------------------------------- /data/spheres/38.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/38.obj -------------------------------------------------------------------------------- /data/spheres/380.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/380.obj -------------------------------------------------------------------------------- /data/spheres/381.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/381.obj -------------------------------------------------------------------------------- /data/spheres/382.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/382.obj -------------------------------------------------------------------------------- /data/spheres/383.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/383.obj -------------------------------------------------------------------------------- /data/spheres/384.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/384.obj -------------------------------------------------------------------------------- /data/spheres/385.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/385.obj -------------------------------------------------------------------------------- /data/spheres/386.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/386.obj -------------------------------------------------------------------------------- /data/spheres/387.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/387.obj -------------------------------------------------------------------------------- /data/spheres/388.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/388.obj -------------------------------------------------------------------------------- /data/spheres/389.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/389.obj -------------------------------------------------------------------------------- /data/spheres/39.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/39.obj -------------------------------------------------------------------------------- /data/spheres/390.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/390.obj -------------------------------------------------------------------------------- /data/spheres/391.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/391.obj -------------------------------------------------------------------------------- /data/spheres/392.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/392.obj -------------------------------------------------------------------------------- /data/spheres/393.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/393.obj -------------------------------------------------------------------------------- /data/spheres/394.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/394.obj -------------------------------------------------------------------------------- /data/spheres/395.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/395.obj -------------------------------------------------------------------------------- /data/spheres/396.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/396.obj -------------------------------------------------------------------------------- /data/spheres/397.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/397.obj -------------------------------------------------------------------------------- /data/spheres/398.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/398.obj -------------------------------------------------------------------------------- /data/spheres/399.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/399.obj -------------------------------------------------------------------------------- /data/spheres/4.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/4.obj -------------------------------------------------------------------------------- /data/spheres/40.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/40.obj -------------------------------------------------------------------------------- /data/spheres/400.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/400.obj -------------------------------------------------------------------------------- /data/spheres/401.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/401.obj -------------------------------------------------------------------------------- /data/spheres/402.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/402.obj -------------------------------------------------------------------------------- /data/spheres/403.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/403.obj -------------------------------------------------------------------------------- /data/spheres/404.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/404.obj -------------------------------------------------------------------------------- /data/spheres/405.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/405.obj -------------------------------------------------------------------------------- /data/spheres/406.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/406.obj -------------------------------------------------------------------------------- /data/spheres/407.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/407.obj -------------------------------------------------------------------------------- /data/spheres/408.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/408.obj -------------------------------------------------------------------------------- /data/spheres/409.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/409.obj -------------------------------------------------------------------------------- /data/spheres/41.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/41.obj -------------------------------------------------------------------------------- /data/spheres/410.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/410.obj -------------------------------------------------------------------------------- /data/spheres/411.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/411.obj -------------------------------------------------------------------------------- /data/spheres/412.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/412.obj -------------------------------------------------------------------------------- /data/spheres/413.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/413.obj -------------------------------------------------------------------------------- /data/spheres/414.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/414.obj -------------------------------------------------------------------------------- /data/spheres/415.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/415.obj -------------------------------------------------------------------------------- /data/spheres/416.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/416.obj -------------------------------------------------------------------------------- /data/spheres/417.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/417.obj -------------------------------------------------------------------------------- /data/spheres/418.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/418.obj -------------------------------------------------------------------------------- /data/spheres/419.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/419.obj -------------------------------------------------------------------------------- /data/spheres/42.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/42.obj -------------------------------------------------------------------------------- /data/spheres/420.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/420.obj -------------------------------------------------------------------------------- /data/spheres/421.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/421.obj -------------------------------------------------------------------------------- /data/spheres/422.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/422.obj -------------------------------------------------------------------------------- /data/spheres/423.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/423.obj -------------------------------------------------------------------------------- /data/spheres/424.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/424.obj -------------------------------------------------------------------------------- /data/spheres/425.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/425.obj -------------------------------------------------------------------------------- /data/spheres/426.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/426.obj -------------------------------------------------------------------------------- /data/spheres/427.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/427.obj -------------------------------------------------------------------------------- /data/spheres/428.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/428.obj -------------------------------------------------------------------------------- /data/spheres/429.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/429.obj -------------------------------------------------------------------------------- /data/spheres/43.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/43.obj -------------------------------------------------------------------------------- /data/spheres/430.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/430.obj -------------------------------------------------------------------------------- /data/spheres/431.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/431.obj -------------------------------------------------------------------------------- /data/spheres/432.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/432.obj -------------------------------------------------------------------------------- /data/spheres/433.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/433.obj -------------------------------------------------------------------------------- /data/spheres/434.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/434.obj -------------------------------------------------------------------------------- /data/spheres/435.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/435.obj -------------------------------------------------------------------------------- /data/spheres/436.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/436.obj -------------------------------------------------------------------------------- /data/spheres/437.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/437.obj -------------------------------------------------------------------------------- /data/spheres/438.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/438.obj -------------------------------------------------------------------------------- /data/spheres/439.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/439.obj -------------------------------------------------------------------------------- /data/spheres/44.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/44.obj -------------------------------------------------------------------------------- /data/spheres/440.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/440.obj -------------------------------------------------------------------------------- /data/spheres/441.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/441.obj -------------------------------------------------------------------------------- /data/spheres/442.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/442.obj -------------------------------------------------------------------------------- /data/spheres/443.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/443.obj -------------------------------------------------------------------------------- /data/spheres/444.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/444.obj -------------------------------------------------------------------------------- /data/spheres/445.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/445.obj -------------------------------------------------------------------------------- /data/spheres/446.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/446.obj -------------------------------------------------------------------------------- /data/spheres/447.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/447.obj -------------------------------------------------------------------------------- /data/spheres/448.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/448.obj -------------------------------------------------------------------------------- /data/spheres/449.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/449.obj -------------------------------------------------------------------------------- /data/spheres/45.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/45.obj -------------------------------------------------------------------------------- /data/spheres/450.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/450.obj -------------------------------------------------------------------------------- /data/spheres/451.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/451.obj -------------------------------------------------------------------------------- /data/spheres/452.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/452.obj -------------------------------------------------------------------------------- /data/spheres/453.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/453.obj -------------------------------------------------------------------------------- /data/spheres/454.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/454.obj -------------------------------------------------------------------------------- /data/spheres/455.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/455.obj -------------------------------------------------------------------------------- /data/spheres/456.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/456.obj -------------------------------------------------------------------------------- /data/spheres/457.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/457.obj -------------------------------------------------------------------------------- /data/spheres/458.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/458.obj -------------------------------------------------------------------------------- /data/spheres/459.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/459.obj -------------------------------------------------------------------------------- /data/spheres/46.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/46.obj -------------------------------------------------------------------------------- /data/spheres/460.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/460.obj -------------------------------------------------------------------------------- /data/spheres/461.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/461.obj -------------------------------------------------------------------------------- /data/spheres/462.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/462.obj -------------------------------------------------------------------------------- /data/spheres/463.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/463.obj -------------------------------------------------------------------------------- /data/spheres/464.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/464.obj -------------------------------------------------------------------------------- /data/spheres/465.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/465.obj -------------------------------------------------------------------------------- /data/spheres/466.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/466.obj -------------------------------------------------------------------------------- /data/spheres/467.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/467.obj -------------------------------------------------------------------------------- /data/spheres/468.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/468.obj -------------------------------------------------------------------------------- /data/spheres/469.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/469.obj -------------------------------------------------------------------------------- /data/spheres/47.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/47.obj -------------------------------------------------------------------------------- /data/spheres/470.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/470.obj -------------------------------------------------------------------------------- /data/spheres/471.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/471.obj -------------------------------------------------------------------------------- /data/spheres/472.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/472.obj -------------------------------------------------------------------------------- /data/spheres/473.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/473.obj -------------------------------------------------------------------------------- /data/spheres/474.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/474.obj -------------------------------------------------------------------------------- /data/spheres/475.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/475.obj -------------------------------------------------------------------------------- /data/spheres/476.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/476.obj -------------------------------------------------------------------------------- /data/spheres/477.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/477.obj -------------------------------------------------------------------------------- /data/spheres/478.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/478.obj -------------------------------------------------------------------------------- /data/spheres/479.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/479.obj -------------------------------------------------------------------------------- /data/spheres/48.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/48.obj -------------------------------------------------------------------------------- /data/spheres/480.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/480.obj -------------------------------------------------------------------------------- /data/spheres/481.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/481.obj -------------------------------------------------------------------------------- /data/spheres/482.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/482.obj -------------------------------------------------------------------------------- /data/spheres/483.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/483.obj -------------------------------------------------------------------------------- /data/spheres/484.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/484.obj -------------------------------------------------------------------------------- /data/spheres/485.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/485.obj -------------------------------------------------------------------------------- /data/spheres/486.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/486.obj -------------------------------------------------------------------------------- /data/spheres/487.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/487.obj -------------------------------------------------------------------------------- /data/spheres/488.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/488.obj -------------------------------------------------------------------------------- /data/spheres/489.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/489.obj -------------------------------------------------------------------------------- /data/spheres/49.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/49.obj -------------------------------------------------------------------------------- /data/spheres/490.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/490.obj -------------------------------------------------------------------------------- /data/spheres/491.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/491.obj -------------------------------------------------------------------------------- /data/spheres/492.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/492.obj -------------------------------------------------------------------------------- /data/spheres/493.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/493.obj -------------------------------------------------------------------------------- /data/spheres/494.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/494.obj -------------------------------------------------------------------------------- /data/spheres/495.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/495.obj -------------------------------------------------------------------------------- /data/spheres/496.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/496.obj -------------------------------------------------------------------------------- /data/spheres/497.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/497.obj -------------------------------------------------------------------------------- /data/spheres/498.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/498.obj -------------------------------------------------------------------------------- /data/spheres/499.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/499.obj -------------------------------------------------------------------------------- /data/spheres/5.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/5.obj -------------------------------------------------------------------------------- /data/spheres/50.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/50.obj -------------------------------------------------------------------------------- /data/spheres/500.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/500.obj -------------------------------------------------------------------------------- /data/spheres/501.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/501.obj -------------------------------------------------------------------------------- /data/spheres/502.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/502.obj -------------------------------------------------------------------------------- /data/spheres/503.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/503.obj -------------------------------------------------------------------------------- /data/spheres/504.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/504.obj -------------------------------------------------------------------------------- /data/spheres/505.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/505.obj -------------------------------------------------------------------------------- /data/spheres/506.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/506.obj -------------------------------------------------------------------------------- /data/spheres/507.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/507.obj -------------------------------------------------------------------------------- /data/spheres/508.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/508.obj -------------------------------------------------------------------------------- /data/spheres/509.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/509.obj -------------------------------------------------------------------------------- /data/spheres/51.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/51.obj -------------------------------------------------------------------------------- /data/spheres/510.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/510.obj -------------------------------------------------------------------------------- /data/spheres/511.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/511.obj -------------------------------------------------------------------------------- /data/spheres/512.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/512.obj -------------------------------------------------------------------------------- /data/spheres/513.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/513.obj -------------------------------------------------------------------------------- /data/spheres/514.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/514.obj -------------------------------------------------------------------------------- /data/spheres/515.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/515.obj -------------------------------------------------------------------------------- /data/spheres/516.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/516.obj -------------------------------------------------------------------------------- /data/spheres/517.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/517.obj -------------------------------------------------------------------------------- /data/spheres/518.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/518.obj -------------------------------------------------------------------------------- /data/spheres/519.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/519.obj -------------------------------------------------------------------------------- /data/spheres/52.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/52.obj -------------------------------------------------------------------------------- /data/spheres/520.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/520.obj -------------------------------------------------------------------------------- /data/spheres/521.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/521.obj -------------------------------------------------------------------------------- /data/spheres/522.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/522.obj -------------------------------------------------------------------------------- /data/spheres/523.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/523.obj -------------------------------------------------------------------------------- /data/spheres/524.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/524.obj -------------------------------------------------------------------------------- /data/spheres/525.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/525.obj -------------------------------------------------------------------------------- /data/spheres/526.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/526.obj -------------------------------------------------------------------------------- /data/spheres/527.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/527.obj -------------------------------------------------------------------------------- /data/spheres/528.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/528.obj -------------------------------------------------------------------------------- /data/spheres/529.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/529.obj -------------------------------------------------------------------------------- /data/spheres/53.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/53.obj -------------------------------------------------------------------------------- /data/spheres/530.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/530.obj -------------------------------------------------------------------------------- /data/spheres/531.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/531.obj -------------------------------------------------------------------------------- /data/spheres/532.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/532.obj -------------------------------------------------------------------------------- /data/spheres/533.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/533.obj -------------------------------------------------------------------------------- /data/spheres/534.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/534.obj -------------------------------------------------------------------------------- /data/spheres/535.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/535.obj -------------------------------------------------------------------------------- /data/spheres/536.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/536.obj -------------------------------------------------------------------------------- /data/spheres/537.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/537.obj -------------------------------------------------------------------------------- /data/spheres/538.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/538.obj -------------------------------------------------------------------------------- /data/spheres/539.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/539.obj -------------------------------------------------------------------------------- /data/spheres/54.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/54.obj -------------------------------------------------------------------------------- /data/spheres/540.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/540.obj -------------------------------------------------------------------------------- /data/spheres/541.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/541.obj -------------------------------------------------------------------------------- /data/spheres/542.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/542.obj -------------------------------------------------------------------------------- /data/spheres/543.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/543.obj -------------------------------------------------------------------------------- /data/spheres/544.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/544.obj -------------------------------------------------------------------------------- /data/spheres/545.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/545.obj -------------------------------------------------------------------------------- /data/spheres/546.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/546.obj -------------------------------------------------------------------------------- /data/spheres/547.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/547.obj -------------------------------------------------------------------------------- /data/spheres/548.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/548.obj -------------------------------------------------------------------------------- /data/spheres/549.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/549.obj -------------------------------------------------------------------------------- /data/spheres/55.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/55.obj -------------------------------------------------------------------------------- /data/spheres/550.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/550.obj -------------------------------------------------------------------------------- /data/spheres/551.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/551.obj -------------------------------------------------------------------------------- /data/spheres/552.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/552.obj -------------------------------------------------------------------------------- /data/spheres/553.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/553.obj -------------------------------------------------------------------------------- /data/spheres/554.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/554.obj -------------------------------------------------------------------------------- /data/spheres/555.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/555.obj -------------------------------------------------------------------------------- /data/spheres/556.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/556.obj -------------------------------------------------------------------------------- /data/spheres/557.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/557.obj -------------------------------------------------------------------------------- /data/spheres/558.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/558.obj -------------------------------------------------------------------------------- /data/spheres/559.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/559.obj -------------------------------------------------------------------------------- /data/spheres/56.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/56.obj -------------------------------------------------------------------------------- /data/spheres/560.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/560.obj -------------------------------------------------------------------------------- /data/spheres/561.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/561.obj -------------------------------------------------------------------------------- /data/spheres/562.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/562.obj -------------------------------------------------------------------------------- /data/spheres/563.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/563.obj -------------------------------------------------------------------------------- /data/spheres/564.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/564.obj -------------------------------------------------------------------------------- /data/spheres/565.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/565.obj -------------------------------------------------------------------------------- /data/spheres/566.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/566.obj -------------------------------------------------------------------------------- /data/spheres/567.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/567.obj -------------------------------------------------------------------------------- /data/spheres/568.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/568.obj -------------------------------------------------------------------------------- /data/spheres/569.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/569.obj -------------------------------------------------------------------------------- /data/spheres/57.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/57.obj -------------------------------------------------------------------------------- /data/spheres/570.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/570.obj -------------------------------------------------------------------------------- /data/spheres/571.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/571.obj -------------------------------------------------------------------------------- /data/spheres/572.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/572.obj -------------------------------------------------------------------------------- /data/spheres/573.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/573.obj -------------------------------------------------------------------------------- /data/spheres/574.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/574.obj -------------------------------------------------------------------------------- /data/spheres/575.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/575.obj -------------------------------------------------------------------------------- /data/spheres/576.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/576.obj -------------------------------------------------------------------------------- /data/spheres/577.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/577.obj -------------------------------------------------------------------------------- /data/spheres/578.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/578.obj -------------------------------------------------------------------------------- /data/spheres/579.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/579.obj -------------------------------------------------------------------------------- /data/spheres/58.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/58.obj -------------------------------------------------------------------------------- /data/spheres/580.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/580.obj -------------------------------------------------------------------------------- /data/spheres/581.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/581.obj -------------------------------------------------------------------------------- /data/spheres/582.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/582.obj -------------------------------------------------------------------------------- /data/spheres/583.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/583.obj -------------------------------------------------------------------------------- /data/spheres/584.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/584.obj -------------------------------------------------------------------------------- /data/spheres/585.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/585.obj -------------------------------------------------------------------------------- /data/spheres/586.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/586.obj -------------------------------------------------------------------------------- /data/spheres/587.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/587.obj -------------------------------------------------------------------------------- /data/spheres/588.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/588.obj -------------------------------------------------------------------------------- /data/spheres/589.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/589.obj -------------------------------------------------------------------------------- /data/spheres/59.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/59.obj -------------------------------------------------------------------------------- /data/spheres/590.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/590.obj -------------------------------------------------------------------------------- /data/spheres/591.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/591.obj -------------------------------------------------------------------------------- /data/spheres/592.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/592.obj -------------------------------------------------------------------------------- /data/spheres/593.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/593.obj -------------------------------------------------------------------------------- /data/spheres/594.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/594.obj -------------------------------------------------------------------------------- /data/spheres/595.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/595.obj -------------------------------------------------------------------------------- /data/spheres/596.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/596.obj -------------------------------------------------------------------------------- /data/spheres/597.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/597.obj -------------------------------------------------------------------------------- /data/spheres/598.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/598.obj -------------------------------------------------------------------------------- /data/spheres/599.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/599.obj -------------------------------------------------------------------------------- /data/spheres/6.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/6.obj -------------------------------------------------------------------------------- /data/spheres/60.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/60.obj -------------------------------------------------------------------------------- /data/spheres/600.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/600.obj -------------------------------------------------------------------------------- /data/spheres/601.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/601.obj -------------------------------------------------------------------------------- /data/spheres/602.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/602.obj -------------------------------------------------------------------------------- /data/spheres/603.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/603.obj -------------------------------------------------------------------------------- /data/spheres/604.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/604.obj -------------------------------------------------------------------------------- /data/spheres/605.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/605.obj -------------------------------------------------------------------------------- /data/spheres/606.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/606.obj -------------------------------------------------------------------------------- /data/spheres/607.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/607.obj -------------------------------------------------------------------------------- /data/spheres/608.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/608.obj -------------------------------------------------------------------------------- /data/spheres/609.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/609.obj -------------------------------------------------------------------------------- /data/spheres/61.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/61.obj -------------------------------------------------------------------------------- /data/spheres/610.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/610.obj -------------------------------------------------------------------------------- /data/spheres/611.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/611.obj -------------------------------------------------------------------------------- /data/spheres/612.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/612.obj -------------------------------------------------------------------------------- /data/spheres/613.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/613.obj -------------------------------------------------------------------------------- /data/spheres/614.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/614.obj -------------------------------------------------------------------------------- /data/spheres/615.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/615.obj -------------------------------------------------------------------------------- /data/spheres/616.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/616.obj -------------------------------------------------------------------------------- /data/spheres/617.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/617.obj -------------------------------------------------------------------------------- /data/spheres/618.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/618.obj -------------------------------------------------------------------------------- /data/spheres/619.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/619.obj -------------------------------------------------------------------------------- /data/spheres/62.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/62.obj -------------------------------------------------------------------------------- /data/spheres/620.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/620.obj -------------------------------------------------------------------------------- /data/spheres/621.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/621.obj -------------------------------------------------------------------------------- /data/spheres/622.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/622.obj -------------------------------------------------------------------------------- /data/spheres/623.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/623.obj -------------------------------------------------------------------------------- /data/spheres/624.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/624.obj -------------------------------------------------------------------------------- /data/spheres/625.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/625.obj -------------------------------------------------------------------------------- /data/spheres/626.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/626.obj -------------------------------------------------------------------------------- /data/spheres/627.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/627.obj -------------------------------------------------------------------------------- /data/spheres/628.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/628.obj -------------------------------------------------------------------------------- /data/spheres/629.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/629.obj -------------------------------------------------------------------------------- /data/spheres/63.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/63.obj -------------------------------------------------------------------------------- /data/spheres/630.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/630.obj -------------------------------------------------------------------------------- /data/spheres/631.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/631.obj -------------------------------------------------------------------------------- /data/spheres/632.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/632.obj -------------------------------------------------------------------------------- /data/spheres/633.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/633.obj -------------------------------------------------------------------------------- /data/spheres/634.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/634.obj -------------------------------------------------------------------------------- /data/spheres/635.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/635.obj -------------------------------------------------------------------------------- /data/spheres/636.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/636.obj -------------------------------------------------------------------------------- /data/spheres/637.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/637.obj -------------------------------------------------------------------------------- /data/spheres/638.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/638.obj -------------------------------------------------------------------------------- /data/spheres/639.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/639.obj -------------------------------------------------------------------------------- /data/spheres/64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/64.obj -------------------------------------------------------------------------------- /data/spheres/640.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/640.obj -------------------------------------------------------------------------------- /data/spheres/641.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/641.obj -------------------------------------------------------------------------------- /data/spheres/642.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/642.obj -------------------------------------------------------------------------------- /data/spheres/643.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/643.obj -------------------------------------------------------------------------------- /data/spheres/644.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/644.obj -------------------------------------------------------------------------------- /data/spheres/645.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/645.obj -------------------------------------------------------------------------------- /data/spheres/646.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/646.obj -------------------------------------------------------------------------------- /data/spheres/647.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/647.obj -------------------------------------------------------------------------------- /data/spheres/648.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/648.obj -------------------------------------------------------------------------------- /data/spheres/649.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/649.obj -------------------------------------------------------------------------------- /data/spheres/65.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/65.obj -------------------------------------------------------------------------------- /data/spheres/650.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/650.obj -------------------------------------------------------------------------------- /data/spheres/651.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/651.obj -------------------------------------------------------------------------------- /data/spheres/652.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/652.obj -------------------------------------------------------------------------------- /data/spheres/653.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/653.obj -------------------------------------------------------------------------------- /data/spheres/654.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/654.obj -------------------------------------------------------------------------------- /data/spheres/655.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/655.obj -------------------------------------------------------------------------------- /data/spheres/656.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/656.obj -------------------------------------------------------------------------------- /data/spheres/657.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/657.obj -------------------------------------------------------------------------------- /data/spheres/658.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/658.obj -------------------------------------------------------------------------------- /data/spheres/659.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/659.obj -------------------------------------------------------------------------------- /data/spheres/66.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/66.obj -------------------------------------------------------------------------------- /data/spheres/660.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/660.obj -------------------------------------------------------------------------------- /data/spheres/661.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/661.obj -------------------------------------------------------------------------------- /data/spheres/662.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/662.obj -------------------------------------------------------------------------------- /data/spheres/663.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/663.obj -------------------------------------------------------------------------------- /data/spheres/664.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/664.obj -------------------------------------------------------------------------------- /data/spheres/665.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/665.obj -------------------------------------------------------------------------------- /data/spheres/666.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/666.obj -------------------------------------------------------------------------------- /data/spheres/667.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/667.obj -------------------------------------------------------------------------------- /data/spheres/668.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/668.obj -------------------------------------------------------------------------------- /data/spheres/669.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/669.obj -------------------------------------------------------------------------------- /data/spheres/67.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/67.obj -------------------------------------------------------------------------------- /data/spheres/670.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/670.obj -------------------------------------------------------------------------------- /data/spheres/671.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/671.obj -------------------------------------------------------------------------------- /data/spheres/672.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/672.obj -------------------------------------------------------------------------------- /data/spheres/673.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/673.obj -------------------------------------------------------------------------------- /data/spheres/674.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/674.obj -------------------------------------------------------------------------------- /data/spheres/675.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/675.obj -------------------------------------------------------------------------------- /data/spheres/676.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/676.obj -------------------------------------------------------------------------------- /data/spheres/677.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/677.obj -------------------------------------------------------------------------------- /data/spheres/678.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/678.obj -------------------------------------------------------------------------------- /data/spheres/679.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/679.obj -------------------------------------------------------------------------------- /data/spheres/68.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/68.obj -------------------------------------------------------------------------------- /data/spheres/680.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/680.obj -------------------------------------------------------------------------------- /data/spheres/681.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/681.obj -------------------------------------------------------------------------------- /data/spheres/682.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/682.obj -------------------------------------------------------------------------------- /data/spheres/683.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/683.obj -------------------------------------------------------------------------------- /data/spheres/684.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/684.obj -------------------------------------------------------------------------------- /data/spheres/685.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/685.obj -------------------------------------------------------------------------------- /data/spheres/686.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/686.obj -------------------------------------------------------------------------------- /data/spheres/687.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/687.obj -------------------------------------------------------------------------------- /data/spheres/688.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/688.obj -------------------------------------------------------------------------------- /data/spheres/689.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/689.obj -------------------------------------------------------------------------------- /data/spheres/69.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/69.obj -------------------------------------------------------------------------------- /data/spheres/690.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/690.obj -------------------------------------------------------------------------------- /data/spheres/691.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/691.obj -------------------------------------------------------------------------------- /data/spheres/692.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/692.obj -------------------------------------------------------------------------------- /data/spheres/693.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/693.obj -------------------------------------------------------------------------------- /data/spheres/694.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/694.obj -------------------------------------------------------------------------------- /data/spheres/695.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/695.obj -------------------------------------------------------------------------------- /data/spheres/696.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/696.obj -------------------------------------------------------------------------------- /data/spheres/697.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/697.obj -------------------------------------------------------------------------------- /data/spheres/698.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/698.obj -------------------------------------------------------------------------------- /data/spheres/699.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/699.obj -------------------------------------------------------------------------------- /data/spheres/7.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/7.obj -------------------------------------------------------------------------------- /data/spheres/70.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/70.obj -------------------------------------------------------------------------------- /data/spheres/700.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/700.obj -------------------------------------------------------------------------------- /data/spheres/701.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/701.obj -------------------------------------------------------------------------------- /data/spheres/702.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/702.obj -------------------------------------------------------------------------------- /data/spheres/71.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/71.obj -------------------------------------------------------------------------------- /data/spheres/72.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/72.obj -------------------------------------------------------------------------------- /data/spheres/73.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/73.obj -------------------------------------------------------------------------------- /data/spheres/74.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/74.obj -------------------------------------------------------------------------------- /data/spheres/75.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/75.obj -------------------------------------------------------------------------------- /data/spheres/76.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/76.obj -------------------------------------------------------------------------------- /data/spheres/77.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/77.obj -------------------------------------------------------------------------------- /data/spheres/78.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/78.obj -------------------------------------------------------------------------------- /data/spheres/79.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/79.obj -------------------------------------------------------------------------------- /data/spheres/8.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/8.obj -------------------------------------------------------------------------------- /data/spheres/80.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/80.obj -------------------------------------------------------------------------------- /data/spheres/81.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/81.obj -------------------------------------------------------------------------------- /data/spheres/82.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/82.obj -------------------------------------------------------------------------------- /data/spheres/83.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/83.obj -------------------------------------------------------------------------------- /data/spheres/84.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/84.obj -------------------------------------------------------------------------------- /data/spheres/85.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/85.obj -------------------------------------------------------------------------------- /data/spheres/86.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/86.obj -------------------------------------------------------------------------------- /data/spheres/87.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/87.obj -------------------------------------------------------------------------------- /data/spheres/88.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/88.obj -------------------------------------------------------------------------------- /data/spheres/89.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/89.obj -------------------------------------------------------------------------------- /data/spheres/9.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/9.obj -------------------------------------------------------------------------------- /data/spheres/90.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/90.obj -------------------------------------------------------------------------------- /data/spheres/91.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/91.obj -------------------------------------------------------------------------------- /data/spheres/92.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/92.obj -------------------------------------------------------------------------------- /data/spheres/93.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/93.obj -------------------------------------------------------------------------------- /data/spheres/94.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/94.obj -------------------------------------------------------------------------------- /data/spheres/95.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/95.obj -------------------------------------------------------------------------------- /data/spheres/96.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/96.obj -------------------------------------------------------------------------------- /data/spheres/97.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/97.obj -------------------------------------------------------------------------------- /data/spheres/98.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/98.obj -------------------------------------------------------------------------------- /data/spheres/99.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/data/spheres/99.obj -------------------------------------------------------------------------------- /main-arap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/main-arap.cpp -------------------------------------------------------------------------------- /main-inputcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/main-inputcheck.cpp -------------------------------------------------------------------------------- /main-rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/main-rotation.cpp -------------------------------------------------------------------------------- /main-stencil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/main-stencil.cpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/main.cpp -------------------------------------------------------------------------------- /teaser_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gcherchi/InteractiveAndRobustMeshBooleans/HEAD/teaser_img.png --------------------------------------------------------------------------------