├── .gitignore ├── CMakeLists.txt ├── COPYRIGHT ├── LICENSE ├── README.md ├── examples ├── bird.vec ├── hullabaloo.vec └── torus.vec ├── src ├── Gui │ ├── Application.cpp │ ├── Application.h │ ├── CMakeLists.txt │ ├── Gui.pro │ ├── Gui.rc │ ├── Info.plist │ ├── UpdateCheck.cpp │ ├── UpdateCheck.h │ ├── UpdateCheckDialog.cpp │ ├── UpdateCheckDialog.h │ ├── VPaint.ico │ ├── images │ │ ├── VPaint.ico │ │ ├── aboutlogo.png │ │ ├── add-cycles.png │ │ ├── change-color.png │ │ ├── change-width.png │ │ ├── checkerboard.png │ │ ├── create-face.png │ │ ├── display-mode-normal-outline.png │ │ ├── display-mode-normal.png │ │ ├── display-mode-outline.png │ │ ├── glue.png │ │ ├── go-first-view.png │ │ ├── go-first.png │ │ ├── go-last-view.png │ │ ├── go-last.png │ │ ├── go-next-view.png │ │ ├── go-next.png │ │ ├── go-pause.png │ │ ├── go-play.png │ │ ├── go-previous-view.png │ │ ├── go-previous.png │ │ ├── icon-16.png │ │ ├── icon-256.png │ │ ├── icon-32.png │ │ ├── icon-48.png │ │ ├── icon.xcf │ │ ├── icons.svg │ │ ├── letter.xcf │ │ ├── logo.png │ │ ├── logo.svg │ │ ├── onion-skinning-off.png │ │ ├── onion-skinning-on.png │ │ ├── paint.png │ │ ├── planar-map-off.png │ │ ├── planar-map-on.png │ │ ├── pressure-off.png │ │ ├── pressure-on.png │ │ ├── pressure.png │ │ ├── refresh.png │ │ ├── remove-cycles.png │ │ ├── sculpt.png │ │ ├── select.png │ │ ├── simplify.png │ │ ├── sketch.png │ │ ├── snapping-off.png │ │ ├── snapping-on.png │ │ ├── string.xcf │ │ ├── svg.icns │ │ ├── svg.xcf │ │ ├── unglue.png │ │ ├── vec.icns │ │ ├── vec.xcf │ │ ├── view-settings-active.png │ │ ├── view-settings.png │ │ └── vpaint.icns │ ├── main.cpp │ └── resources.qrc ├── Third │ ├── COPYING.BSD │ ├── COPYING.LGPL2 │ ├── COPYING.LGPL3 │ ├── COPYING.MINPACK │ ├── COPYING.MPL2 │ ├── Eigen │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── LU │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ │ ├── Cholesky │ │ │ ├── LDLT.h │ │ │ ├── LLT.h │ │ │ └── LLT_LAPACKE.h │ │ │ ├── CholmodSupport │ │ │ └── CholmodSupport.h │ │ │ ├── Core │ │ │ ├── Array.h │ │ │ ├── ArrayBase.h │ │ │ ├── ArrayWrapper.h │ │ │ ├── Assign.h │ │ │ ├── AssignEvaluator.h │ │ │ ├── Assign_MKL.h │ │ │ ├── BandMatrix.h │ │ │ ├── Block.h │ │ │ ├── BooleanRedux.h │ │ │ ├── CommaInitializer.h │ │ │ ├── ConditionEstimator.h │ │ │ ├── CoreEvaluators.h │ │ │ ├── CoreIterators.h │ │ │ ├── CwiseBinaryOp.h │ │ │ ├── CwiseNullaryOp.h │ │ │ ├── CwiseTernaryOp.h │ │ │ ├── CwiseUnaryOp.h │ │ │ ├── CwiseUnaryView.h │ │ │ ├── DenseBase.h │ │ │ ├── DenseCoeffsBase.h │ │ │ ├── DenseStorage.h │ │ │ ├── Diagonal.h │ │ │ ├── DiagonalMatrix.h │ │ │ ├── DiagonalProduct.h │ │ │ ├── Dot.h │ │ │ ├── EigenBase.h │ │ │ ├── ForceAlignedAccess.h │ │ │ ├── Fuzzy.h │ │ │ ├── GeneralProduct.h │ │ │ ├── GenericPacketMath.h │ │ │ ├── GlobalFunctions.h │ │ │ ├── IO.h │ │ │ ├── Inverse.h │ │ │ ├── Map.h │ │ │ ├── MapBase.h │ │ │ ├── MathFunctions.h │ │ │ ├── MathFunctionsImpl.h │ │ │ ├── Matrix.h │ │ │ ├── MatrixBase.h │ │ │ ├── NestByValue.h │ │ │ ├── NoAlias.h │ │ │ ├── NumTraits.h │ │ │ ├── PermutationMatrix.h │ │ │ ├── PlainObjectBase.h │ │ │ ├── Product.h │ │ │ ├── ProductEvaluators.h │ │ │ ├── Random.h │ │ │ ├── Redux.h │ │ │ ├── Ref.h │ │ │ ├── Replicate.h │ │ │ ├── ReturnByValue.h │ │ │ ├── Reverse.h │ │ │ ├── Select.h │ │ │ ├── SelfAdjointView.h │ │ │ ├── SelfCwiseBinaryOp.h │ │ │ ├── Solve.h │ │ │ ├── SolveTriangular.h │ │ │ ├── SolverBase.h │ │ │ ├── StableNorm.h │ │ │ ├── Stride.h │ │ │ ├── Swap.h │ │ │ ├── Transpose.h │ │ │ ├── Transpositions.h │ │ │ ├── TriangularMatrix.h │ │ │ ├── VectorBlock.h │ │ │ ├── VectorwiseOp.h │ │ │ ├── Visitor.h │ │ │ ├── arch │ │ │ │ ├── AVX │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── AVX512 │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── AltiVec │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── CUDA │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── Half.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ ├── PacketMathHalf.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ ├── Default │ │ │ │ │ ├── ConjHelper.h │ │ │ │ │ └── Settings.h │ │ │ │ ├── NEON │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ │ ├── SSE │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ ├── PacketMath.h │ │ │ │ │ └── TypeCasting.h │ │ │ │ └── ZVector │ │ │ │ │ ├── Complex.h │ │ │ │ │ ├── MathFunctions.h │ │ │ │ │ └── PacketMath.h │ │ │ ├── functors │ │ │ │ ├── AssignmentFunctors.h │ │ │ │ ├── BinaryFunctors.h │ │ │ │ ├── NullaryFunctors.h │ │ │ │ ├── StlFunctors.h │ │ │ │ ├── TernaryFunctors.h │ │ │ │ └── UnaryFunctors.h │ │ │ ├── products │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── GeneralMatrixMatrix.h │ │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ │ ├── GeneralMatrixVector.h │ │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ │ ├── Parallelizer.h │ │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ │ ├── SelfadjointMatrixVector.h │ │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ │ ├── SelfadjointProduct.h │ │ │ │ ├── SelfadjointRank2Update.h │ │ │ │ ├── TriangularMatrixMatrix.h │ │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ │ ├── TriangularMatrixVector.h │ │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ │ ├── TriangularSolverMatrix.h │ │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ │ └── TriangularSolverVector.h │ │ │ └── util │ │ │ │ ├── BlasUtil.h │ │ │ │ ├── Constants.h │ │ │ │ ├── DisableStupidWarnings.h │ │ │ │ ├── ForwardDeclarations.h │ │ │ │ ├── MKL_support.h │ │ │ │ ├── Macros.h │ │ │ │ ├── Memory.h │ │ │ │ ├── Meta.h │ │ │ │ ├── NonMPL2.h │ │ │ │ ├── ReenableStupidWarnings.h │ │ │ │ ├── StaticAssert.h │ │ │ │ └── XprHelper.h │ │ │ ├── Eigenvalues │ │ │ ├── ComplexEigenSolver.h │ │ │ ├── ComplexSchur.h │ │ │ ├── ComplexSchur_LAPACKE.h │ │ │ ├── EigenSolver.h │ │ │ ├── GeneralizedEigenSolver.h │ │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ │ ├── HessenbergDecomposition.h │ │ │ ├── MatrixBaseEigenvalues.h │ │ │ ├── RealQZ.h │ │ │ ├── RealSchur.h │ │ │ ├── RealSchur_LAPACKE.h │ │ │ ├── SelfAdjointEigenSolver.h │ │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ │ └── Tridiagonalization.h │ │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── AngleAxis.h │ │ │ ├── EulerAngles.h │ │ │ ├── Homogeneous.h │ │ │ ├── Hyperplane.h │ │ │ ├── OrthoMethods.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ ├── Translation.h │ │ │ ├── Umeyama.h │ │ │ └── arch │ │ │ │ └── Geometry_SSE.h │ │ │ ├── Householder │ │ │ ├── BlockHouseholder.h │ │ │ ├── Householder.h │ │ │ └── HouseholderSequence.h │ │ │ ├── IterativeLinearSolvers │ │ │ ├── BasicPreconditioners.h │ │ │ ├── BiCGSTAB.h │ │ │ ├── ConjugateGradient.h │ │ │ ├── IncompleteCholesky.h │ │ │ ├── IncompleteLUT.h │ │ │ ├── IterativeSolverBase.h │ │ │ ├── LeastSquareConjugateGradient.h │ │ │ └── SolveWithGuess.h │ │ │ ├── Jacobi │ │ │ └── Jacobi.h │ │ │ ├── LU │ │ │ ├── Determinant.h │ │ │ ├── FullPivLU.h │ │ │ ├── InverseImpl.h │ │ │ ├── PartialPivLU.h │ │ │ ├── PartialPivLU_LAPACKE.h │ │ │ └── arch │ │ │ │ └── Inverse_SSE.h │ │ │ ├── MetisSupport │ │ │ └── MetisSupport.h │ │ │ ├── OrderingMethods │ │ │ ├── Amd.h │ │ │ ├── Eigen_Colamd.h │ │ │ └── Ordering.h │ │ │ ├── PaStiXSupport │ │ │ └── PaStiXSupport.h │ │ │ ├── PardisoSupport │ │ │ └── PardisoSupport.h │ │ │ ├── QR │ │ │ ├── ColPivHouseholderQR.h │ │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ │ ├── CompleteOrthogonalDecomposition.h │ │ │ ├── FullPivHouseholderQR.h │ │ │ ├── HouseholderQR.h │ │ │ └── HouseholderQR_LAPACKE.h │ │ │ ├── SPQRSupport │ │ │ └── SuiteSparseQRSupport.h │ │ │ ├── SVD │ │ │ ├── BDCSVD.h │ │ │ ├── JacobiSVD.h │ │ │ ├── JacobiSVD_LAPACKE.h │ │ │ ├── SVDBase.h │ │ │ └── UpperBidiagonalization.h │ │ │ ├── SparseCholesky │ │ │ ├── SimplicialCholesky.h │ │ │ └── SimplicialCholesky_impl.h │ │ │ ├── SparseCore │ │ │ ├── AmbiVector.h │ │ │ ├── CompressedStorage.h │ │ │ ├── ConservativeSparseSparseProduct.h │ │ │ ├── MappedSparseMatrix.h │ │ │ ├── SparseAssign.h │ │ │ ├── SparseBlock.h │ │ │ ├── SparseColEtree.h │ │ │ ├── SparseCompressedBase.h │ │ │ ├── SparseCwiseBinaryOp.h │ │ │ ├── SparseCwiseUnaryOp.h │ │ │ ├── SparseDenseProduct.h │ │ │ ├── SparseDiagonalProduct.h │ │ │ ├── SparseDot.h │ │ │ ├── SparseFuzzy.h │ │ │ ├── SparseMap.h │ │ │ ├── SparseMatrix.h │ │ │ ├── SparseMatrixBase.h │ │ │ ├── SparsePermutation.h │ │ │ ├── SparseProduct.h │ │ │ ├── SparseRedux.h │ │ │ ├── SparseRef.h │ │ │ ├── SparseSelfAdjointView.h │ │ │ ├── SparseSolverBase.h │ │ │ ├── SparseSparseProductWithPruning.h │ │ │ ├── SparseTranspose.h │ │ │ ├── SparseTriangularView.h │ │ │ ├── SparseUtil.h │ │ │ ├── SparseVector.h │ │ │ ├── SparseView.h │ │ │ └── TriangularSolver.h │ │ │ ├── SparseLU │ │ │ ├── SparseLU.h │ │ │ ├── SparseLUImpl.h │ │ │ ├── SparseLU_Memory.h │ │ │ ├── SparseLU_Structs.h │ │ │ ├── SparseLU_SupernodalMatrix.h │ │ │ ├── SparseLU_Utils.h │ │ │ ├── SparseLU_column_bmod.h │ │ │ ├── SparseLU_column_dfs.h │ │ │ ├── SparseLU_copy_to_ucol.h │ │ │ ├── SparseLU_gemm_kernel.h │ │ │ ├── SparseLU_heap_relax_snode.h │ │ │ ├── SparseLU_kernel_bmod.h │ │ │ ├── SparseLU_panel_bmod.h │ │ │ ├── SparseLU_panel_dfs.h │ │ │ ├── SparseLU_pivotL.h │ │ │ ├── SparseLU_pruneL.h │ │ │ └── SparseLU_relax_snode.h │ │ │ ├── SparseQR │ │ │ └── SparseQR.h │ │ │ ├── StlSupport │ │ │ ├── StdDeque.h │ │ │ ├── StdList.h │ │ │ ├── StdVector.h │ │ │ └── details.h │ │ │ ├── SuperLUSupport │ │ │ └── SuperLUSupport.h │ │ │ ├── UmfPackSupport │ │ │ └── UmfPackSupport.h │ │ │ ├── misc │ │ │ ├── Image.h │ │ │ ├── Kernel.h │ │ │ ├── RealSvd2x2.h │ │ │ ├── blas.h │ │ │ ├── lapack.h │ │ │ ├── lapacke.h │ │ │ └── lapacke_mangling.h │ │ │ └── plugins │ │ │ ├── ArrayCwiseBinaryOps.h │ │ │ ├── ArrayCwiseUnaryOps.h │ │ │ ├── BlockMethods.h │ │ │ ├── CommonCwiseBinaryOps.h │ │ │ ├── CommonCwiseUnaryOps.h │ │ │ ├── MatrixCwiseBinaryOps.h │ │ │ └── MatrixCwiseUnaryOps.h │ └── GLEW │ │ ├── GLEW.pro │ │ ├── glew.c │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h ├── VAC │ ├── AboutDialog.cpp │ ├── AboutDialog.h │ ├── AnimatedCycleWidget.cpp │ ├── AnimatedCycleWidget.h │ ├── Background │ │ ├── Background.cpp │ │ ├── Background.h │ │ ├── BackgroundData.cpp │ │ ├── BackgroundData.h │ │ ├── BackgroundRenderer.cpp │ │ ├── BackgroundRenderer.h │ │ ├── BackgroundUrlValidator.cpp │ │ ├── BackgroundUrlValidator.h │ │ ├── BackgroundWidget.cpp │ │ └── BackgroundWidget.h │ ├── CMakeLists.txt │ ├── Color.cpp │ ├── Color.h │ ├── ColorSelector.cpp │ ├── ColorSelector.h │ ├── CssColor.cpp │ ├── CssColor.h │ ├── DevSettings.cpp │ ├── DevSettings.h │ ├── EditCanvasSizeDialog.cpp │ ├── EditCanvasSizeDialog.h │ ├── ExportAsDialog.cpp │ ├── ExportAsDialog.h │ ├── ExportSettings.cpp │ ├── ExportSettings.h │ ├── FilePath.cpp │ ├── FilePath.h │ ├── GLUtils.cpp │ ├── GLUtils.h │ ├── GLWidget.cpp │ ├── GLWidget.h │ ├── GLWidget_Camera.h │ ├── GLWidget_Camera2D.h │ ├── GLWidget_Light.h │ ├── GLWidget_Material.h │ ├── GeometryUtils.cpp │ ├── GeometryUtils.h │ ├── Global.cpp │ ├── Global.h │ ├── IO │ │ ├── FileVersionConverter.cpp │ │ ├── FileVersionConverter.h │ │ ├── FileVersionConverterDialog.cpp │ │ ├── FileVersionConverterDialog.h │ │ ├── XmlStreamConverter.cpp │ │ ├── XmlStreamConverter.h │ │ ├── XmlStreamConverters │ │ │ ├── XmlStreamConverter_1_0_to_1_6.cpp │ │ │ └── XmlStreamConverter_1_0_to_1_6.h │ │ ├── XmlStreamTraverser.cpp │ │ └── XmlStreamTraverser.h │ ├── KeyFrame.cpp │ ├── KeyFrame.h │ ├── Layer.cpp │ ├── Layer.h │ ├── LayersWidget.cpp │ ├── LayersWidget.h │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── MultiView.cpp │ ├── MultiView.h │ ├── ObjectPropertiesWidget.cpp │ ├── ObjectPropertiesWidget.h │ ├── OpenGL.h │ ├── Picking.cpp │ ├── Picking.h │ ├── Random.cpp │ ├── Random.h │ ├── SaveAndLoad.cpp │ ├── SaveAndLoad.h │ ├── Scene.cpp │ ├── Scene.h │ ├── SceneObject.cpp │ ├── SceneObject.h │ ├── SceneObjectVisitor.cpp │ ├── SceneObjectVisitor.h │ ├── SceneObject_Example.h │ ├── SelectionInfoWidget.cpp │ ├── SelectionInfoWidget.h │ ├── Settings.cpp │ ├── Settings.h │ ├── SettingsDialog.cpp │ ├── SettingsDialog.h │ ├── SpinBox.cpp │ ├── SpinBox.h │ ├── SvgImportDialog.cpp │ ├── SvgImportDialog.h │ ├── SvgImportParams.cpp │ ├── SvgImportParams.h │ ├── SvgParser.cpp │ ├── SvgParser.h │ ├── TimeDef.cpp │ ├── TimeDef.h │ ├── Timeline.cpp │ ├── Timeline.h │ ├── VectorAnimationComplex │ │ ├── Algorithms.cpp │ │ ├── Algorithms.h │ │ ├── AnimatedCycle.cpp │ │ ├── AnimatedCycle.h │ │ ├── AnimatedVertex.cpp │ │ ├── AnimatedVertex.h │ │ ├── BoundingBox.cpp │ │ ├── BoundingBox.h │ │ ├── Cell.cpp │ │ ├── Cell.h │ │ ├── CellLinkedList.cpp │ │ ├── CellLinkedList.h │ │ ├── CellList.h │ │ ├── CellObserver.cpp │ │ ├── CellObserver.h │ │ ├── CellVisitor.cpp │ │ ├── CellVisitor.h │ │ ├── Cycle.cpp │ │ ├── Cycle.h │ │ ├── CycleHelper.cpp │ │ ├── CycleHelper.h │ │ ├── EdgeCell.cpp │ │ ├── EdgeCell.h │ │ ├── EdgeGeometry.cpp │ │ ├── EdgeGeometry.h │ │ ├── EdgeSample.cpp │ │ ├── EdgeSample.h │ │ ├── Eigen.h │ │ ├── FaceCell.cpp │ │ ├── FaceCell.h │ │ ├── ForwardDeclaration.h │ │ ├── Halfedge.cpp │ │ ├── Halfedge.h │ │ ├── HalfedgeBase.cpp │ │ ├── HalfedgeBase.h │ │ ├── InbetweenCell.cpp │ │ ├── InbetweenCell.h │ │ ├── InbetweenEdge.cpp │ │ ├── InbetweenEdge.h │ │ ├── InbetweenFace.cpp │ │ ├── InbetweenFace.h │ │ ├── InbetweenHalfedge.cpp │ │ ├── InbetweenHalfedge.h │ │ ├── InbetweenVertex.cpp │ │ ├── InbetweenVertex.h │ │ ├── Intersection.cpp │ │ ├── Intersection.h │ │ ├── KeyCell.cpp │ │ ├── KeyCell.h │ │ ├── KeyEdge.cpp │ │ ├── KeyEdge.h │ │ ├── KeyFace.cpp │ │ ├── KeyFace.h │ │ ├── KeyHalfedge.cpp │ │ ├── KeyHalfedge.h │ │ ├── KeyVertex.cpp │ │ ├── KeyVertex.h │ │ ├── Operator.cpp │ │ ├── Operator.h │ │ ├── Operators.cpp │ │ ├── Operators.h │ │ ├── Path.cpp │ │ ├── Path.h │ │ ├── ProperCycle.cpp │ │ ├── ProperCycle.h │ │ ├── ProperPath.cpp │ │ ├── ProperPath.h │ │ ├── SculptCurve.h │ │ ├── SmartKeyEdgeSet.cpp │ │ ├── SmartKeyEdgeSet.h │ │ ├── SplitMap.h │ │ ├── TransformTool.cpp │ │ ├── TransformTool.h │ │ ├── Triangles.cpp │ │ ├── Triangles.h │ │ ├── VAC.cpp │ │ ├── VAC.h │ │ ├── VertexCell.cpp │ │ ├── VertexCell.h │ │ ├── ZOrderedCells.cpp │ │ └── ZOrderedCells.h │ ├── Version.cpp │ ├── Version.h │ ├── View.cpp │ ├── View.h │ ├── View3D.cpp │ ├── View3D.h │ ├── View3DSettings.cpp │ ├── View3DSettings.h │ ├── ViewSettings.cpp │ ├── ViewSettings.h │ ├── ViewWidget.cpp │ ├── ViewWidget.h │ ├── XmlStreamReader.cpp │ ├── XmlStreamReader.h │ ├── XmlStreamWriter.cpp │ └── XmlStreamWriter.h ├── VPaint.pro └── version.txt ├── tools └── linux │ └── deploy.sh └── update_copyright.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/README.md -------------------------------------------------------------------------------- /examples/bird.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/examples/bird.vec -------------------------------------------------------------------------------- /examples/hullabaloo.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/examples/hullabaloo.vec -------------------------------------------------------------------------------- /examples/torus.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/examples/torus.vec -------------------------------------------------------------------------------- /src/Gui/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/Application.cpp -------------------------------------------------------------------------------- /src/Gui/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/Application.h -------------------------------------------------------------------------------- /src/Gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/Gui/Gui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/Gui.pro -------------------------------------------------------------------------------- /src/Gui/Gui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/Gui.rc -------------------------------------------------------------------------------- /src/Gui/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/Info.plist -------------------------------------------------------------------------------- /src/Gui/UpdateCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/UpdateCheck.cpp -------------------------------------------------------------------------------- /src/Gui/UpdateCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/UpdateCheck.h -------------------------------------------------------------------------------- /src/Gui/UpdateCheckDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/UpdateCheckDialog.cpp -------------------------------------------------------------------------------- /src/Gui/UpdateCheckDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/UpdateCheckDialog.h -------------------------------------------------------------------------------- /src/Gui/VPaint.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/VPaint.ico -------------------------------------------------------------------------------- /src/Gui/images/VPaint.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/VPaint.ico -------------------------------------------------------------------------------- /src/Gui/images/aboutlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/aboutlogo.png -------------------------------------------------------------------------------- /src/Gui/images/add-cycles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/add-cycles.png -------------------------------------------------------------------------------- /src/Gui/images/change-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/change-color.png -------------------------------------------------------------------------------- /src/Gui/images/change-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/change-width.png -------------------------------------------------------------------------------- /src/Gui/images/checkerboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/checkerboard.png -------------------------------------------------------------------------------- /src/Gui/images/create-face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/create-face.png -------------------------------------------------------------------------------- /src/Gui/images/display-mode-normal-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/display-mode-normal-outline.png -------------------------------------------------------------------------------- /src/Gui/images/display-mode-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/display-mode-normal.png -------------------------------------------------------------------------------- /src/Gui/images/display-mode-outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/display-mode-outline.png -------------------------------------------------------------------------------- /src/Gui/images/glue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/glue.png -------------------------------------------------------------------------------- /src/Gui/images/go-first-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/go-first-view.png -------------------------------------------------------------------------------- /src/Gui/images/go-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/go-first.png -------------------------------------------------------------------------------- /src/Gui/images/go-last-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/go-last-view.png -------------------------------------------------------------------------------- /src/Gui/images/go-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/go-last.png -------------------------------------------------------------------------------- /src/Gui/images/go-next-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/go-next-view.png -------------------------------------------------------------------------------- /src/Gui/images/go-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/go-next.png -------------------------------------------------------------------------------- /src/Gui/images/go-pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/go-pause.png -------------------------------------------------------------------------------- /src/Gui/images/go-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/go-play.png -------------------------------------------------------------------------------- /src/Gui/images/go-previous-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/go-previous-view.png -------------------------------------------------------------------------------- /src/Gui/images/go-previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/go-previous.png -------------------------------------------------------------------------------- /src/Gui/images/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/icon-16.png -------------------------------------------------------------------------------- /src/Gui/images/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/icon-256.png -------------------------------------------------------------------------------- /src/Gui/images/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/icon-32.png -------------------------------------------------------------------------------- /src/Gui/images/icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/icon-48.png -------------------------------------------------------------------------------- /src/Gui/images/icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/icon.xcf -------------------------------------------------------------------------------- /src/Gui/images/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/icons.svg -------------------------------------------------------------------------------- /src/Gui/images/letter.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/letter.xcf -------------------------------------------------------------------------------- /src/Gui/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/logo.png -------------------------------------------------------------------------------- /src/Gui/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/logo.svg -------------------------------------------------------------------------------- /src/Gui/images/onion-skinning-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/onion-skinning-off.png -------------------------------------------------------------------------------- /src/Gui/images/onion-skinning-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/onion-skinning-on.png -------------------------------------------------------------------------------- /src/Gui/images/paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/paint.png -------------------------------------------------------------------------------- /src/Gui/images/planar-map-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/planar-map-off.png -------------------------------------------------------------------------------- /src/Gui/images/planar-map-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/planar-map-on.png -------------------------------------------------------------------------------- /src/Gui/images/pressure-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/pressure-off.png -------------------------------------------------------------------------------- /src/Gui/images/pressure-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/pressure-on.png -------------------------------------------------------------------------------- /src/Gui/images/pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/pressure.png -------------------------------------------------------------------------------- /src/Gui/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/refresh.png -------------------------------------------------------------------------------- /src/Gui/images/remove-cycles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/remove-cycles.png -------------------------------------------------------------------------------- /src/Gui/images/sculpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/sculpt.png -------------------------------------------------------------------------------- /src/Gui/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/select.png -------------------------------------------------------------------------------- /src/Gui/images/simplify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/simplify.png -------------------------------------------------------------------------------- /src/Gui/images/sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/sketch.png -------------------------------------------------------------------------------- /src/Gui/images/snapping-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/snapping-off.png -------------------------------------------------------------------------------- /src/Gui/images/snapping-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/snapping-on.png -------------------------------------------------------------------------------- /src/Gui/images/string.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/string.xcf -------------------------------------------------------------------------------- /src/Gui/images/svg.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/svg.icns -------------------------------------------------------------------------------- /src/Gui/images/svg.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/svg.xcf -------------------------------------------------------------------------------- /src/Gui/images/unglue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/unglue.png -------------------------------------------------------------------------------- /src/Gui/images/vec.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/vec.icns -------------------------------------------------------------------------------- /src/Gui/images/vec.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/vec.xcf -------------------------------------------------------------------------------- /src/Gui/images/view-settings-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/view-settings-active.png -------------------------------------------------------------------------------- /src/Gui/images/view-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/view-settings.png -------------------------------------------------------------------------------- /src/Gui/images/vpaint.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/images/vpaint.icns -------------------------------------------------------------------------------- /src/Gui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/main.cpp -------------------------------------------------------------------------------- /src/Gui/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Gui/resources.qrc -------------------------------------------------------------------------------- /src/Third/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/COPYING.BSD -------------------------------------------------------------------------------- /src/Third/COPYING.LGPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/COPYING.LGPL2 -------------------------------------------------------------------------------- /src/Third/COPYING.LGPL3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/COPYING.LGPL3 -------------------------------------------------------------------------------- /src/Third/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/COPYING.MINPACK -------------------------------------------------------------------------------- /src/Third/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/COPYING.MPL2 -------------------------------------------------------------------------------- /src/Third/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /src/Third/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/Cholesky -------------------------------------------------------------------------------- /src/Third/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/CholmodSupport -------------------------------------------------------------------------------- /src/Third/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/Core -------------------------------------------------------------------------------- /src/Third/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/Dense -------------------------------------------------------------------------------- /src/Third/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/Eigen -------------------------------------------------------------------------------- /src/Third/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/Eigenvalues -------------------------------------------------------------------------------- /src/Third/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/Geometry -------------------------------------------------------------------------------- /src/Third/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/Householder -------------------------------------------------------------------------------- /src/Third/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /src/Third/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/Jacobi -------------------------------------------------------------------------------- /src/Third/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/LU -------------------------------------------------------------------------------- /src/Third/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/MetisSupport -------------------------------------------------------------------------------- /src/Third/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/OrderingMethods -------------------------------------------------------------------------------- /src/Third/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /src/Third/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/PardisoSupport -------------------------------------------------------------------------------- /src/Third/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/QR -------------------------------------------------------------------------------- /src/Third/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /src/Third/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/SPQRSupport -------------------------------------------------------------------------------- /src/Third/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/SVD -------------------------------------------------------------------------------- /src/Third/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/Sparse -------------------------------------------------------------------------------- /src/Third/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/SparseCholesky -------------------------------------------------------------------------------- /src/Third/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/SparseCore -------------------------------------------------------------------------------- /src/Third/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/SparseLU -------------------------------------------------------------------------------- /src/Third/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/SparseQR -------------------------------------------------------------------------------- /src/Third/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/StdDeque -------------------------------------------------------------------------------- /src/Third/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/StdList -------------------------------------------------------------------------------- /src/Third/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/StdVector -------------------------------------------------------------------------------- /src/Third/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /src/Third/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /src/Third/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Cholesky/LLT_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Cholesky/LLT_LAPACKE.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/AssignEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/AssignEvaluator.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/ConditionEstimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/ConditionEstimator.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/CoreEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/CoreEvaluators.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/CwiseTernaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/CwiseTernaryOp.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/MathFunctionsImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/MathFunctionsImpl.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/ProductEvaluators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/ProductEvaluators.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/AVX/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/AVX/Complex.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/AVX/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/AVX/MathFunctions.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/AVX/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/AVX/PacketMath.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/AVX/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/AVX/TypeCasting.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/AVX512/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/AVX512/MathFunctions.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/AVX512/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/AVX512/PacketMath.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/AltiVec/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/AltiVec/MathFunctions.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/CUDA/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/CUDA/Complex.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/CUDA/Half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/CUDA/Half.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/CUDA/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/CUDA/MathFunctions.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/CUDA/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/CUDA/PacketMath.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/CUDA/PacketMathHalf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/CUDA/PacketMathHalf.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/CUDA/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/CUDA/TypeCasting.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/Default/ConjHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/Default/ConjHelper.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/NEON/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/NEON/MathFunctions.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/SSE/TypeCasting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/SSE/TypeCasting.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/ZVector/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/ZVector/Complex.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/ZVector/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/ZVector/MathFunctions.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/arch/ZVector/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/arch/ZVector/PacketMath.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/functors/AssignmentFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/functors/AssignmentFunctors.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/functors/BinaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/functors/BinaryFunctors.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/functors/NullaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/functors/NullaryFunctors.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/functors/StlFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/functors/StlFunctors.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/functors/TernaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/functors/TernaryFunctors.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/functors/UnaryFunctors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/functors/UnaryFunctors.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/LU/PartialPivLU_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/LU/PartialPivLU_LAPACKE.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/QR/CompleteOrthogonalDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/QR/CompleteOrthogonalDecomposition.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/QR/HouseholderQR_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/QR/HouseholderQR_LAPACKE.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SVD/JacobiSVD_LAPACKE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SVD/JacobiSVD_LAPACKE.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseAssign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseAssign.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseCompressedBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseCompressedBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseMap.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseRef.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseSolverBase.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/misc/lapacke_mangling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/misc/lapacke_mangling.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /src/Third/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /src/Third/GLEW/GLEW.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/GLEW/GLEW.pro -------------------------------------------------------------------------------- /src/Third/GLEW/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/GLEW/glew.c -------------------------------------------------------------------------------- /src/Third/GLEW/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/GLEW/glew.h -------------------------------------------------------------------------------- /src/Third/GLEW/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/GLEW/glxew.h -------------------------------------------------------------------------------- /src/Third/GLEW/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/Third/GLEW/wglew.h -------------------------------------------------------------------------------- /src/VAC/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/AboutDialog.cpp -------------------------------------------------------------------------------- /src/VAC/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/AboutDialog.h -------------------------------------------------------------------------------- /src/VAC/AnimatedCycleWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/AnimatedCycleWidget.cpp -------------------------------------------------------------------------------- /src/VAC/AnimatedCycleWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/AnimatedCycleWidget.h -------------------------------------------------------------------------------- /src/VAC/Background/Background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Background/Background.cpp -------------------------------------------------------------------------------- /src/VAC/Background/Background.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Background/Background.h -------------------------------------------------------------------------------- /src/VAC/Background/BackgroundData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Background/BackgroundData.cpp -------------------------------------------------------------------------------- /src/VAC/Background/BackgroundData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Background/BackgroundData.h -------------------------------------------------------------------------------- /src/VAC/Background/BackgroundRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Background/BackgroundRenderer.cpp -------------------------------------------------------------------------------- /src/VAC/Background/BackgroundRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Background/BackgroundRenderer.h -------------------------------------------------------------------------------- /src/VAC/Background/BackgroundUrlValidator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Background/BackgroundUrlValidator.cpp -------------------------------------------------------------------------------- /src/VAC/Background/BackgroundUrlValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Background/BackgroundUrlValidator.h -------------------------------------------------------------------------------- /src/VAC/Background/BackgroundWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Background/BackgroundWidget.cpp -------------------------------------------------------------------------------- /src/VAC/Background/BackgroundWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Background/BackgroundWidget.h -------------------------------------------------------------------------------- /src/VAC/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/CMakeLists.txt -------------------------------------------------------------------------------- /src/VAC/Color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Color.cpp -------------------------------------------------------------------------------- /src/VAC/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Color.h -------------------------------------------------------------------------------- /src/VAC/ColorSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ColorSelector.cpp -------------------------------------------------------------------------------- /src/VAC/ColorSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ColorSelector.h -------------------------------------------------------------------------------- /src/VAC/CssColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/CssColor.cpp -------------------------------------------------------------------------------- /src/VAC/CssColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/CssColor.h -------------------------------------------------------------------------------- /src/VAC/DevSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/DevSettings.cpp -------------------------------------------------------------------------------- /src/VAC/DevSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/DevSettings.h -------------------------------------------------------------------------------- /src/VAC/EditCanvasSizeDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/EditCanvasSizeDialog.cpp -------------------------------------------------------------------------------- /src/VAC/EditCanvasSizeDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/EditCanvasSizeDialog.h -------------------------------------------------------------------------------- /src/VAC/ExportAsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ExportAsDialog.cpp -------------------------------------------------------------------------------- /src/VAC/ExportAsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ExportAsDialog.h -------------------------------------------------------------------------------- /src/VAC/ExportSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ExportSettings.cpp -------------------------------------------------------------------------------- /src/VAC/ExportSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ExportSettings.h -------------------------------------------------------------------------------- /src/VAC/FilePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/FilePath.cpp -------------------------------------------------------------------------------- /src/VAC/FilePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/FilePath.h -------------------------------------------------------------------------------- /src/VAC/GLUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/GLUtils.cpp -------------------------------------------------------------------------------- /src/VAC/GLUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/GLUtils.h -------------------------------------------------------------------------------- /src/VAC/GLWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/GLWidget.cpp -------------------------------------------------------------------------------- /src/VAC/GLWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/GLWidget.h -------------------------------------------------------------------------------- /src/VAC/GLWidget_Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/GLWidget_Camera.h -------------------------------------------------------------------------------- /src/VAC/GLWidget_Camera2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/GLWidget_Camera2D.h -------------------------------------------------------------------------------- /src/VAC/GLWidget_Light.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/GLWidget_Light.h -------------------------------------------------------------------------------- /src/VAC/GLWidget_Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/GLWidget_Material.h -------------------------------------------------------------------------------- /src/VAC/GeometryUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/GeometryUtils.cpp -------------------------------------------------------------------------------- /src/VAC/GeometryUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/GeometryUtils.h -------------------------------------------------------------------------------- /src/VAC/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Global.cpp -------------------------------------------------------------------------------- /src/VAC/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Global.h -------------------------------------------------------------------------------- /src/VAC/IO/FileVersionConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/IO/FileVersionConverter.cpp -------------------------------------------------------------------------------- /src/VAC/IO/FileVersionConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/IO/FileVersionConverter.h -------------------------------------------------------------------------------- /src/VAC/IO/FileVersionConverterDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/IO/FileVersionConverterDialog.cpp -------------------------------------------------------------------------------- /src/VAC/IO/FileVersionConverterDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/IO/FileVersionConverterDialog.h -------------------------------------------------------------------------------- /src/VAC/IO/XmlStreamConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/IO/XmlStreamConverter.cpp -------------------------------------------------------------------------------- /src/VAC/IO/XmlStreamConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/IO/XmlStreamConverter.h -------------------------------------------------------------------------------- /src/VAC/IO/XmlStreamConverters/XmlStreamConverter_1_0_to_1_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/IO/XmlStreamConverters/XmlStreamConverter_1_0_to_1_6.cpp -------------------------------------------------------------------------------- /src/VAC/IO/XmlStreamConverters/XmlStreamConverter_1_0_to_1_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/IO/XmlStreamConverters/XmlStreamConverter_1_0_to_1_6.h -------------------------------------------------------------------------------- /src/VAC/IO/XmlStreamTraverser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/IO/XmlStreamTraverser.cpp -------------------------------------------------------------------------------- /src/VAC/IO/XmlStreamTraverser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/IO/XmlStreamTraverser.h -------------------------------------------------------------------------------- /src/VAC/KeyFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/KeyFrame.cpp -------------------------------------------------------------------------------- /src/VAC/KeyFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/KeyFrame.h -------------------------------------------------------------------------------- /src/VAC/Layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Layer.cpp -------------------------------------------------------------------------------- /src/VAC/Layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Layer.h -------------------------------------------------------------------------------- /src/VAC/LayersWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/LayersWidget.cpp -------------------------------------------------------------------------------- /src/VAC/LayersWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/LayersWidget.h -------------------------------------------------------------------------------- /src/VAC/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/MainWindow.cpp -------------------------------------------------------------------------------- /src/VAC/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/MainWindow.h -------------------------------------------------------------------------------- /src/VAC/MultiView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/MultiView.cpp -------------------------------------------------------------------------------- /src/VAC/MultiView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/MultiView.h -------------------------------------------------------------------------------- /src/VAC/ObjectPropertiesWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ObjectPropertiesWidget.cpp -------------------------------------------------------------------------------- /src/VAC/ObjectPropertiesWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ObjectPropertiesWidget.h -------------------------------------------------------------------------------- /src/VAC/OpenGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/OpenGL.h -------------------------------------------------------------------------------- /src/VAC/Picking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Picking.cpp -------------------------------------------------------------------------------- /src/VAC/Picking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Picking.h -------------------------------------------------------------------------------- /src/VAC/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Random.cpp -------------------------------------------------------------------------------- /src/VAC/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Random.h -------------------------------------------------------------------------------- /src/VAC/SaveAndLoad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SaveAndLoad.cpp -------------------------------------------------------------------------------- /src/VAC/SaveAndLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SaveAndLoad.h -------------------------------------------------------------------------------- /src/VAC/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Scene.cpp -------------------------------------------------------------------------------- /src/VAC/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Scene.h -------------------------------------------------------------------------------- /src/VAC/SceneObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SceneObject.cpp -------------------------------------------------------------------------------- /src/VAC/SceneObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SceneObject.h -------------------------------------------------------------------------------- /src/VAC/SceneObjectVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SceneObjectVisitor.cpp -------------------------------------------------------------------------------- /src/VAC/SceneObjectVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SceneObjectVisitor.h -------------------------------------------------------------------------------- /src/VAC/SceneObject_Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SceneObject_Example.h -------------------------------------------------------------------------------- /src/VAC/SelectionInfoWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SelectionInfoWidget.cpp -------------------------------------------------------------------------------- /src/VAC/SelectionInfoWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SelectionInfoWidget.h -------------------------------------------------------------------------------- /src/VAC/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Settings.cpp -------------------------------------------------------------------------------- /src/VAC/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Settings.h -------------------------------------------------------------------------------- /src/VAC/SettingsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SettingsDialog.cpp -------------------------------------------------------------------------------- /src/VAC/SettingsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SettingsDialog.h -------------------------------------------------------------------------------- /src/VAC/SpinBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SpinBox.cpp -------------------------------------------------------------------------------- /src/VAC/SpinBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SpinBox.h -------------------------------------------------------------------------------- /src/VAC/SvgImportDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SvgImportDialog.cpp -------------------------------------------------------------------------------- /src/VAC/SvgImportDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SvgImportDialog.h -------------------------------------------------------------------------------- /src/VAC/SvgImportParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SvgImportParams.cpp -------------------------------------------------------------------------------- /src/VAC/SvgImportParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SvgImportParams.h -------------------------------------------------------------------------------- /src/VAC/SvgParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SvgParser.cpp -------------------------------------------------------------------------------- /src/VAC/SvgParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/SvgParser.h -------------------------------------------------------------------------------- /src/VAC/TimeDef.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/TimeDef.cpp -------------------------------------------------------------------------------- /src/VAC/TimeDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/TimeDef.h -------------------------------------------------------------------------------- /src/VAC/Timeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Timeline.cpp -------------------------------------------------------------------------------- /src/VAC/Timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Timeline.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Algorithms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Algorithms.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Algorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Algorithms.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/AnimatedCycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/AnimatedCycle.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/AnimatedCycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/AnimatedCycle.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/AnimatedVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/AnimatedVertex.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/AnimatedVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/AnimatedVertex.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/BoundingBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/BoundingBox.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/BoundingBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/BoundingBox.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Cell.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Cell.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/CellLinkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/CellLinkedList.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/CellLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/CellLinkedList.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/CellList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/CellList.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/CellObserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/CellObserver.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/CellObserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/CellObserver.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/CellVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/CellVisitor.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/CellVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/CellVisitor.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Cycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Cycle.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Cycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Cycle.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/CycleHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/CycleHelper.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/CycleHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/CycleHelper.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/EdgeCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/EdgeCell.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/EdgeCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/EdgeCell.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/EdgeGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/EdgeGeometry.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/EdgeGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/EdgeGeometry.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/EdgeSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/EdgeSample.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/EdgeSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/EdgeSample.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Eigen.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/FaceCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/FaceCell.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/FaceCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/FaceCell.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/ForwardDeclaration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/ForwardDeclaration.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Halfedge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Halfedge.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Halfedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Halfedge.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/HalfedgeBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/HalfedgeBase.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/HalfedgeBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/HalfedgeBase.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/InbetweenCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/InbetweenCell.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/InbetweenCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/InbetweenCell.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/InbetweenEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/InbetweenEdge.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/InbetweenEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/InbetweenEdge.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/InbetweenFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/InbetweenFace.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/InbetweenFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/InbetweenFace.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/InbetweenHalfedge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/InbetweenHalfedge.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/InbetweenHalfedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/InbetweenHalfedge.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/InbetweenVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/InbetweenVertex.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/InbetweenVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/InbetweenVertex.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Intersection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Intersection.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Intersection.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/KeyCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/KeyCell.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/KeyCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/KeyCell.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/KeyEdge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/KeyEdge.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/KeyEdge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/KeyEdge.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/KeyFace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/KeyFace.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/KeyFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/KeyFace.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/KeyHalfedge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/KeyHalfedge.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/KeyHalfedge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/KeyHalfedge.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/KeyVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/KeyVertex.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/KeyVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/KeyVertex.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Operator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Operator.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Operator.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Operators.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Operators.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Path.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Path.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/ProperCycle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/ProperCycle.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/ProperCycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/ProperCycle.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/ProperPath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/ProperPath.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/ProperPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/ProperPath.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/SculptCurve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/SculptCurve.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/SmartKeyEdgeSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/SmartKeyEdgeSet.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/SmartKeyEdgeSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/SmartKeyEdgeSet.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/SplitMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/SplitMap.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/TransformTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/TransformTool.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/TransformTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/TransformTool.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Triangles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Triangles.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/Triangles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/Triangles.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/VAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/VAC.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/VAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/VAC.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/VertexCell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/VertexCell.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/VertexCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/VertexCell.h -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/ZOrderedCells.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/ZOrderedCells.cpp -------------------------------------------------------------------------------- /src/VAC/VectorAnimationComplex/ZOrderedCells.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/VectorAnimationComplex/ZOrderedCells.h -------------------------------------------------------------------------------- /src/VAC/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Version.cpp -------------------------------------------------------------------------------- /src/VAC/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/Version.h -------------------------------------------------------------------------------- /src/VAC/View.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/View.cpp -------------------------------------------------------------------------------- /src/VAC/View.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/View.h -------------------------------------------------------------------------------- /src/VAC/View3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/View3D.cpp -------------------------------------------------------------------------------- /src/VAC/View3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/View3D.h -------------------------------------------------------------------------------- /src/VAC/View3DSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/View3DSettings.cpp -------------------------------------------------------------------------------- /src/VAC/View3DSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/View3DSettings.h -------------------------------------------------------------------------------- /src/VAC/ViewSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ViewSettings.cpp -------------------------------------------------------------------------------- /src/VAC/ViewSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ViewSettings.h -------------------------------------------------------------------------------- /src/VAC/ViewWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ViewWidget.cpp -------------------------------------------------------------------------------- /src/VAC/ViewWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/ViewWidget.h -------------------------------------------------------------------------------- /src/VAC/XmlStreamReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/XmlStreamReader.cpp -------------------------------------------------------------------------------- /src/VAC/XmlStreamReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/XmlStreamReader.h -------------------------------------------------------------------------------- /src/VAC/XmlStreamWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/XmlStreamWriter.cpp -------------------------------------------------------------------------------- /src/VAC/XmlStreamWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VAC/XmlStreamWriter.h -------------------------------------------------------------------------------- /src/VPaint.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/src/VPaint.pro -------------------------------------------------------------------------------- /src/version.txt: -------------------------------------------------------------------------------- 1 | 1.7 2 | -------------------------------------------------------------------------------- /tools/linux/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/tools/linux/deploy.sh -------------------------------------------------------------------------------- /update_copyright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dalboris/vpaint/HEAD/update_copyright.py --------------------------------------------------------------------------------