├── .gitignore ├── BUILDING.md ├── CMakeLists.txt ├── README.md ├── app ├── CMakeLists.txt ├── app │ ├── app.cpp │ ├── app.h │ ├── colors.cpp │ ├── colors.h │ ├── main.cpp │ ├── update.cpp │ └── update.h ├── canvas │ ├── canvas_view.cpp │ ├── canvas_view.h │ ├── connection │ │ ├── base.cpp │ │ ├── base.h │ │ ├── connection.cpp │ │ ├── connection.h │ │ ├── dummy.cpp │ │ └── dummy.h │ ├── datum_editor.cpp │ ├── datum_editor.h │ ├── datum_port.cpp │ ├── datum_port.h │ ├── datum_row.cpp │ ├── datum_row.h │ ├── info.cpp │ ├── info.h │ ├── inspector │ │ ├── buttons.cpp │ │ ├── buttons.h │ │ ├── export.cpp │ │ ├── export.h │ │ ├── frame.cpp │ │ ├── frame.h │ │ ├── title.cpp │ │ ├── title.h │ │ ├── util.cpp │ │ └── util.h │ ├── scene.cpp │ ├── scene.h │ └── subdatum │ │ ├── subdatum_editor.cpp │ │ ├── subdatum_editor.h │ │ ├── subdatum_frame.cpp │ │ ├── subdatum_frame.h │ │ ├── subdatum_row.cpp │ │ └── subdatum_row.h ├── dialog │ ├── exporting.cpp │ ├── exporting.h │ ├── exporting_dialog.ui │ ├── resolution.cpp │ ├── resolution.h │ └── resolution_dialog.ui ├── export │ ├── export_heightmap.cpp │ ├── export_heightmap.h │ ├── export_mesh.cpp │ ├── export_mesh.h │ ├── export_worker.cpp │ └── export_worker.h ├── gl │ ├── gl.qrc │ ├── height.frag │ ├── quad.vert │ └── shaded.frag ├── graph │ ├── constructor │ ├── hooks │ │ ├── export.cpp │ │ ├── export.h │ │ ├── hooks.cpp │ │ ├── hooks.h │ │ ├── title.cpp │ │ ├── title.h │ │ ├── ui.cpp │ │ └── ui.h │ ├── proxy │ │ ├── base_datum.cpp │ │ ├── base_datum.h │ │ ├── datum.cpp │ │ ├── datum.h │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── node.cpp │ │ ├── node.h │ │ ├── script.cpp │ │ ├── script.h │ │ ├── subdatum.cpp │ │ ├── subdatum.h │ │ └── util.h │ └── serialize │ │ ├── deserializer.cpp │ │ ├── deserializer.h │ │ ├── serializer.cpp │ │ └── serializer.h ├── script │ ├── editor.cpp │ ├── editor.h │ ├── frame.cpp │ ├── frame.h │ ├── syntax.cpp │ └── syntax.h ├── undo │ ├── undo_add_datum.cpp │ ├── undo_add_datum.h │ ├── undo_add_node.cpp │ ├── undo_add_node.h │ ├── undo_catcher.h │ ├── undo_change_expr.cpp │ ├── undo_change_expr.h │ ├── undo_change_script.cpp │ ├── undo_change_script.h │ ├── undo_command.cpp │ ├── undo_command.h │ ├── undo_delete_datum.cpp │ ├── undo_delete_datum.h │ ├── undo_delete_link.cpp │ ├── undo_delete_link.h │ ├── undo_delete_multi.cpp │ ├── undo_delete_multi.h │ ├── undo_delete_node.cpp │ ├── undo_delete_node.h │ ├── undo_move_datum.cpp │ ├── undo_move_datum.h │ ├── undo_move_node.cpp │ ├── undo_move_node.h │ ├── undo_stack.cpp │ └── undo_stack.h ├── viewport │ ├── control │ │ ├── control.cpp │ │ ├── control.h │ │ ├── control_instance.cpp │ │ ├── control_instance.h │ │ ├── point.cpp │ │ ├── point.h │ │ ├── wireframe.cpp │ │ └── wireframe.h │ ├── gl.cpp │ ├── gl.h │ ├── image.cpp │ ├── image.h │ ├── render │ │ ├── instance.cpp │ │ ├── instance.h │ │ ├── task.cpp │ │ └── task.h │ ├── scene.cpp │ ├── scene.h │ ├── view.cpp │ └── view.h └── window │ ├── base.cpp │ ├── base.h │ ├── base_viewport_window.cpp │ ├── base_viewport_window.h │ ├── base_window.ui │ ├── canvas.cpp │ ├── canvas.h │ ├── quad.cpp │ ├── quad.h │ ├── script_window.cpp │ ├── script_window.h │ ├── viewport.cpp │ └── viewport.h ├── deploy ├── .gitignore ├── icon.svg ├── linux │ ├── debian │ │ ├── .gitignore │ │ ├── antimony.1 │ │ ├── antimony.install │ │ ├── antimony.manpages │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── rules │ │ └── source │ │ │ └── format │ └── mkdesktop └── mac │ ├── Info.plist │ ├── deploy.sh │ ├── make_icon.sh │ └── sb.icns ├── doc ├── SCRIPTING.md ├── USAGE.md ├── imgs │ ├── sub_inside.png │ └── sub_outside.png └── release-notes │ ├── 0.7.0.md │ ├── 0.7.1.md │ ├── 0.7.2.md │ ├── 0.7.3.md │ ├── 0.7.4.md │ ├── 0.7.5.md │ ├── 0.7.6.md │ ├── 0.7.7.md │ ├── 0.7.8.md │ ├── 0.7.9.md │ ├── 0.8.0.md │ ├── 0.9.0.md │ ├── 0.9.1.md │ ├── 0.9.2.md │ └── 0.9.3.md ├── examples ├── csg.sb ├── gear.sb ├── hi.sb ├── label.sb └── ring.sb ├── lib ├── fab │ ├── .gitignore │ ├── CMakeLists.txt │ ├── inc │ │ └── fab │ │ │ ├── fab.h │ │ │ ├── formats │ │ │ ├── png.h │ │ │ └── stl.h │ │ │ ├── tree │ │ │ ├── eval.h │ │ │ ├── math │ │ │ │ ├── math_defines.h │ │ │ │ ├── math_f.h │ │ │ │ ├── math_g.h │ │ │ │ ├── math_i.h │ │ │ │ └── math_r.h │ │ │ ├── node │ │ │ │ ├── node.h │ │ │ │ ├── opcodes.h │ │ │ │ ├── printers.h │ │ │ │ ├── printers_ss.h │ │ │ │ └── results.h │ │ │ ├── parser.h │ │ │ ├── parser_env.hpp │ │ │ ├── render.h │ │ │ ├── tree.h │ │ │ ├── triangulate.h │ │ │ ├── triangulate │ │ │ │ ├── mesher.h │ │ │ │ └── triangle.h │ │ │ └── v2parser.h │ │ │ ├── types │ │ │ ├── bounds.h │ │ │ ├── shape.h │ │ │ └── transform.h │ │ │ └── util │ │ │ ├── interval.h │ │ │ ├── region.h │ │ │ ├── switches.h │ │ │ └── ustack.h │ ├── src │ │ ├── fab.cpp │ │ ├── formats │ │ │ ├── png.c │ │ │ └── stl.c │ │ ├── tree │ │ │ ├── eval.c │ │ │ ├── math │ │ │ │ ├── math_f.c │ │ │ │ ├── math_g.c │ │ │ │ ├── math_i.c │ │ │ │ └── math_r.c │ │ │ ├── node │ │ │ │ ├── node_c.c │ │ │ │ ├── opcodes.c │ │ │ │ ├── printers.c │ │ │ │ ├── printers_ss.cpp │ │ │ │ └── results.c │ │ │ ├── parser.c │ │ │ ├── render.c │ │ │ ├── tree.c │ │ │ ├── triangulate.cpp │ │ │ ├── triangulate │ │ │ │ ├── mesher.cpp │ │ │ │ └── triangle.cpp │ │ │ ├── v2parser.cpp │ │ │ ├── v2syntax.l │ │ │ └── v2syntax.y │ │ ├── types │ │ │ ├── bounds.cpp │ │ │ ├── shape.cpp │ │ │ └── transform.cpp │ │ └── util │ │ │ ├── region.c │ │ │ └── ustack.c │ ├── tests │ │ ├── main.cpp │ │ ├── parser.cpp │ │ └── shape.cpp │ └── vendor │ │ └── Eigen │ │ ├── Array │ │ ├── CMakeLists.txt │ │ ├── COPYING.BSD │ │ ├── COPYING.GPL │ │ ├── COPYING.LGPL │ │ ├── COPYING.MINPACK │ │ ├── COPYING.MPL2 │ │ ├── COPYING.README │ │ ├── Cholesky │ │ ├── CholmodSupport │ │ ├── Core │ │ ├── Dense │ │ ├── Eigen │ │ ├── Eigen2Support │ │ ├── Eigenvalues │ │ ├── Geometry │ │ ├── Householder │ │ ├── IterativeLinearSolvers │ │ ├── Jacobi │ │ ├── LU │ │ ├── LeastSquares │ │ ├── MetisSupport │ │ ├── OrderingMethods │ │ ├── PaStiXSupport │ │ ├── PardisoSupport │ │ ├── QR │ │ ├── QtAlignedMalloc │ │ ├── SPQRSupport │ │ ├── SVD │ │ ├── Sparse │ │ ├── SparseCholesky │ │ ├── SparseCore │ │ ├── SparseLU │ │ ├── SparseQR │ │ ├── StdDeque │ │ ├── StdList │ │ ├── StdVector │ │ ├── SuperLUSupport │ │ ├── UmfPackSupport │ │ └── src │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CMakeLists.txt │ │ ├── LDLT.h │ │ ├── LLT.h │ │ └── LLT_MKL.h │ │ ├── CholmodSupport │ │ ├── CMakeLists.txt │ │ └── CholmodSupport.h │ │ ├── Core │ │ ├── Array.h │ │ ├── ArrayBase.h │ │ ├── ArrayWrapper.h │ │ ├── Assign.h │ │ ├── Assign_MKL.h │ │ ├── BandMatrix.h │ │ ├── Block.h │ │ ├── BooleanRedux.h │ │ ├── CMakeLists.txt │ │ ├── CommaInitializer.h │ │ ├── CoreIterators.h │ │ ├── CwiseBinaryOp.h │ │ ├── CwiseNullaryOp.h │ │ ├── CwiseUnaryOp.h │ │ ├── CwiseUnaryView.h │ │ ├── DenseBase.h │ │ ├── DenseCoeffsBase.h │ │ ├── DenseStorage.h │ │ ├── Diagonal.h │ │ ├── DiagonalMatrix.h │ │ ├── DiagonalProduct.h │ │ ├── Dot.h │ │ ├── EigenBase.h │ │ ├── Flagged.h │ │ ├── ForceAlignedAccess.h │ │ ├── Functors.h │ │ ├── Fuzzy.h │ │ ├── GeneralProduct.h │ │ ├── GenericPacketMath.h │ │ ├── GlobalFunctions.h │ │ ├── IO.h │ │ ├── Map.h │ │ ├── MapBase.h │ │ ├── MathFunctions.h │ │ ├── Matrix.h │ │ ├── MatrixBase.h │ │ ├── NestByValue.h │ │ ├── NoAlias.h │ │ ├── NumTraits.h │ │ ├── PermutationMatrix.h │ │ ├── PlainObjectBase.h │ │ ├── ProductBase.h │ │ ├── Random.h │ │ ├── Redux.h │ │ ├── Ref.h │ │ ├── Replicate.h │ │ ├── ReturnByValue.h │ │ ├── Reverse.h │ │ ├── Select.h │ │ ├── SelfAdjointView.h │ │ ├── SelfCwiseBinaryOp.h │ │ ├── SolveTriangular.h │ │ ├── StableNorm.h │ │ ├── Stride.h │ │ ├── Swap.h │ │ ├── Transpose.h │ │ ├── Transpositions.h │ │ ├── TriangularMatrix.h │ │ ├── VectorBlock.h │ │ ├── VectorwiseOp.h │ │ ├── Visitor.h │ │ ├── arch │ │ │ ├── AltiVec │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Complex.h │ │ │ │ └── PacketMath.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Default │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Settings.h │ │ │ ├── NEON │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Complex.h │ │ │ │ └── PacketMath.h │ │ │ └── SSE │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ ├── products │ │ │ ├── CMakeLists.txt │ │ │ ├── CoeffBasedProduct.h │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ ├── GeneralMatrixMatrix.h │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ ├── GeneralMatrixMatrixTriangular_MKL.h │ │ │ ├── GeneralMatrixMatrix_MKL.h │ │ │ ├── GeneralMatrixVector.h │ │ │ ├── GeneralMatrixVector_MKL.h │ │ │ ├── Parallelizer.h │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ ├── SelfadjointMatrixMatrix_MKL.h │ │ │ ├── SelfadjointMatrixVector.h │ │ │ ├── SelfadjointMatrixVector_MKL.h │ │ │ ├── SelfadjointProduct.h │ │ │ ├── SelfadjointRank2Update.h │ │ │ ├── TriangularMatrixMatrix.h │ │ │ ├── TriangularMatrixMatrix_MKL.h │ │ │ ├── TriangularMatrixVector.h │ │ │ ├── TriangularMatrixVector_MKL.h │ │ │ ├── TriangularSolverMatrix.h │ │ │ ├── TriangularSolverMatrix_MKL.h │ │ │ └── TriangularSolverVector.h │ │ └── util │ │ │ ├── BlasUtil.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Constants.h │ │ │ ├── DisableStupidWarnings.h │ │ │ ├── ForwardDeclarations.h │ │ │ ├── MKL_support.h │ │ │ ├── Macros.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── NonMPL2.h │ │ │ ├── ReenableStupidWarnings.h │ │ │ ├── StaticAssert.h │ │ │ └── XprHelper.h │ │ ├── Eigen2Support │ │ ├── Block.h │ │ ├── CMakeLists.txt │ │ ├── Cwise.h │ │ ├── CwiseOperators.h │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── All.h │ │ │ ├── AngleAxis.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Hyperplane.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ └── Translation.h │ │ ├── LU.h │ │ ├── Lazy.h │ │ ├── LeastSquares.h │ │ ├── Macros.h │ │ ├── MathFunctions.h │ │ ├── Memory.h │ │ ├── Meta.h │ │ ├── Minor.h │ │ ├── QR.h │ │ ├── SVD.h │ │ ├── TriangularSolver.h │ │ └── VectorBlock.h │ │ ├── Eigenvalues │ │ ├── CMakeLists.txt │ │ ├── ComplexEigenSolver.h │ │ ├── ComplexSchur.h │ │ ├── ComplexSchur_MKL.h │ │ ├── EigenSolver.h │ │ ├── GeneralizedEigenSolver.h │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ ├── HessenbergDecomposition.h │ │ ├── MatrixBaseEigenvalues.h │ │ ├── RealQZ.h │ │ ├── RealSchur.h │ │ ├── RealSchur_MKL.h │ │ ├── SelfAdjointEigenSolver.h │ │ ├── SelfAdjointEigenSolver_MKL.h │ │ └── Tridiagonalization.h │ │ ├── Geometry │ │ ├── AlignedBox.h │ │ ├── AngleAxis.h │ │ ├── CMakeLists.txt │ │ ├── EulerAngles.h │ │ ├── Homogeneous.h │ │ ├── Hyperplane.h │ │ ├── OrthoMethods.h │ │ ├── ParametrizedLine.h │ │ ├── Quaternion.h │ │ ├── Rotation2D.h │ │ ├── RotationBase.h │ │ ├── Scaling.h │ │ ├── Transform.h │ │ ├── Translation.h │ │ ├── Umeyama.h │ │ └── arch │ │ │ ├── CMakeLists.txt │ │ │ └── Geometry_SSE.h │ │ ├── Householder │ │ ├── BlockHouseholder.h │ │ ├── CMakeLists.txt │ │ ├── Householder.h │ │ └── HouseholderSequence.h │ │ ├── IterativeLinearSolvers │ │ ├── BasicPreconditioners.h │ │ ├── BiCGSTAB.h │ │ ├── CMakeLists.txt │ │ ├── ConjugateGradient.h │ │ ├── IncompleteLUT.h │ │ └── IterativeSolverBase.h │ │ ├── Jacobi │ │ ├── CMakeLists.txt │ │ └── Jacobi.h │ │ ├── LU │ │ ├── CMakeLists.txt │ │ ├── Determinant.h │ │ ├── FullPivLU.h │ │ ├── Inverse.h │ │ ├── PartialPivLU.h │ │ ├── PartialPivLU_MKL.h │ │ └── arch │ │ │ ├── CMakeLists.txt │ │ │ └── Inverse_SSE.h │ │ ├── MetisSupport │ │ ├── CMakeLists.txt │ │ └── MetisSupport.h │ │ ├── OrderingMethods │ │ ├── Amd.h │ │ ├── CMakeLists.txt │ │ ├── Eigen_Colamd.h │ │ └── Ordering.h │ │ ├── PaStiXSupport │ │ ├── CMakeLists.txt │ │ └── PaStiXSupport.h │ │ ├── PardisoSupport │ │ ├── CMakeLists.txt │ │ └── PardisoSupport.h │ │ ├── QR │ │ ├── CMakeLists.txt │ │ ├── ColPivHouseholderQR.h │ │ ├── ColPivHouseholderQR_MKL.h │ │ ├── FullPivHouseholderQR.h │ │ ├── HouseholderQR.h │ │ └── HouseholderQR_MKL.h │ │ ├── SPQRSupport │ │ ├── CMakeLists.txt │ │ └── SuiteSparseQRSupport.h │ │ ├── SVD │ │ ├── CMakeLists.txt │ │ ├── JacobiSVD.h │ │ ├── JacobiSVD_MKL.h │ │ └── UpperBidiagonalization.h │ │ ├── SparseCholesky │ │ ├── CMakeLists.txt │ │ ├── SimplicialCholesky.h │ │ └── SimplicialCholesky_impl.h │ │ ├── SparseCore │ │ ├── AmbiVector.h │ │ ├── CMakeLists.txt │ │ ├── CompressedStorage.h │ │ ├── ConservativeSparseSparseProduct.h │ │ ├── MappedSparseMatrix.h │ │ ├── SparseBlock.h │ │ ├── SparseColEtree.h │ │ ├── SparseCwiseBinaryOp.h │ │ ├── SparseCwiseUnaryOp.h │ │ ├── SparseDenseProduct.h │ │ ├── SparseDiagonalProduct.h │ │ ├── SparseDot.h │ │ ├── SparseFuzzy.h │ │ ├── SparseMatrix.h │ │ ├── SparseMatrixBase.h │ │ ├── SparsePermutation.h │ │ ├── SparseProduct.h │ │ ├── SparseRedux.h │ │ ├── SparseSelfAdjointView.h │ │ ├── SparseSparseProductWithPruning.h │ │ ├── SparseTranspose.h │ │ ├── SparseTriangularView.h │ │ ├── SparseUtil.h │ │ ├── SparseVector.h │ │ ├── SparseView.h │ │ └── TriangularSolver.h │ │ ├── SparseLU │ │ ├── CMakeLists.txt │ │ ├── SparseLU.h │ │ ├── SparseLUImpl.h │ │ ├── SparseLU_Memory.h │ │ ├── SparseLU_Structs.h │ │ ├── SparseLU_SupernodalMatrix.h │ │ ├── SparseLU_Utils.h │ │ ├── SparseLU_column_bmod.h │ │ ├── SparseLU_column_dfs.h │ │ ├── SparseLU_copy_to_ucol.h │ │ ├── SparseLU_gemm_kernel.h │ │ ├── SparseLU_heap_relax_snode.h │ │ ├── SparseLU_kernel_bmod.h │ │ ├── SparseLU_panel_bmod.h │ │ ├── SparseLU_panel_dfs.h │ │ ├── SparseLU_pivotL.h │ │ ├── SparseLU_pruneL.h │ │ └── SparseLU_relax_snode.h │ │ ├── SparseQR │ │ ├── CMakeLists.txt │ │ └── SparseQR.h │ │ ├── StlSupport │ │ ├── CMakeLists.txt │ │ ├── StdDeque.h │ │ ├── StdList.h │ │ ├── StdVector.h │ │ └── details.h │ │ ├── SuperLUSupport │ │ ├── CMakeLists.txt │ │ └── SuperLUSupport.h │ │ ├── UmfPackSupport │ │ ├── CMakeLists.txt │ │ └── UmfPackSupport.h │ │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── Image.h │ │ ├── Kernel.h │ │ ├── Solve.h │ │ ├── SparseSolve.h │ │ └── blas.h │ │ └── plugins │ │ ├── ArrayCwiseBinaryOps.h │ │ ├── ArrayCwiseUnaryOps.h │ │ ├── BlockMethods.h │ │ ├── CMakeLists.txt │ │ ├── CommonCwiseBinaryOps.h │ │ ├── CommonCwiseUnaryOps.h │ │ ├── MatrixCwiseBinaryOps.h │ │ └── MatrixCwiseUnaryOps.h └── graph │ ├── CMakeLists.txt │ ├── inc │ └── graph │ │ ├── datum.h │ │ ├── graph.h │ │ ├── graph_node.h │ │ ├── hooks │ │ ├── external.h │ │ ├── hooks.h │ │ ├── input.h │ │ └── output.h │ │ ├── node.h │ │ ├── proxy.h │ │ ├── script.h │ │ ├── script_node.h │ │ ├── types │ │ ├── downstream.h │ │ ├── root.h │ │ └── watched.h │ │ ├── util.h │ │ └── watchers.h │ ├── src │ ├── datum.cpp │ ├── graph.cpp │ ├── graph_node.cpp │ ├── hooks │ │ ├── hooks.cpp │ │ ├── input.cpp │ │ └── output.cpp │ ├── node.cpp │ ├── proxy.cpp │ ├── script.cpp │ ├── script_node.cpp │ ├── types │ │ ├── downstream.cpp │ │ └── root.cpp │ └── util.cpp │ └── tests │ ├── datum.cpp │ ├── graph.cpp │ ├── link.cpp │ ├── main.cpp │ ├── node.cpp │ ├── script.cpp │ └── subgraph.cpp ├── py ├── fab │ ├── __init__.py │ ├── shapes.py │ └── types.py └── nodes │ ├── 2D → 3D │ ├── Revolve │ │ ├── revolve_xy_x.node │ │ └── revolve_xy_y.node │ ├── extrude.node │ └── loft.node │ ├── 2D │ ├── Circles │ │ ├── circle_center.node │ │ └── circle_edge.node │ ├── Rectangles │ │ ├── rectangle_center.node │ │ ├── rectangle_center_rounded.node │ │ ├── rectangle_corner.node │ │ └── rectangle_corner_rounded.node │ ├── Triangles │ │ ├── triangle.node │ │ └── triangle_right.node │ ├── point.node │ ├── polygon.node │ └── text.node │ ├── 3D → 2D │ ├── slice_xy.node │ ├── slice_xz.node │ └── slice_yz.node │ ├── 3D │ ├── Cones │ │ ├── cone.node │ │ ├── cone_edge.node │ │ └── cone_height.node │ ├── Cubes │ │ ├── cube_center.node │ │ ├── cube_center_rounded.node │ │ ├── cube_corner.node │ │ └── cube_corner_rounded.node │ ├── Cylinders │ │ ├── cylinder_x.node │ │ ├── cylinder_y.node │ │ └── cylinder_z.node │ ├── Pyramids │ │ ├── pyramid_center.node │ │ └── pyramid_edge.node │ ├── Spheres │ │ ├── sphere_center.node │ │ └── sphere_edge.node │ ├── Toruses │ │ ├── torus_x.node │ │ ├── torus_y.node │ │ └── torus_z.node │ ├── Volumes │ │ ├── gyroid.node │ │ ├── schwarz_d.node │ │ └── schwarz_p.node │ └── point.node │ ├── Array │ ├── array_2d.node │ ├── array_3d.node │ └── array_polar.node │ ├── CSG │ ├── blend.node │ ├── clearance.node │ ├── copy.node │ ├── difference.node │ ├── hide.node │ ├── intersection.node │ ├── invert.node │ ├── morph.node │ ├── offset.node │ ├── shell.node │ └── union.node │ ├── Color │ ├── set_color.node │ └── set_color_hsb.node │ ├── Deform │ ├── Shear │ │ ├── shear_cos_x_y.node │ │ ├── shear_cos_xy_z.node │ │ ├── shear_x_y.node │ │ └── shear_xy_z.node │ ├── attract.node │ ├── cylinderwrap.node │ ├── repel.node │ └── twist.node │ ├── Export │ ├── export_heightmap.node │ └── export_stl.node │ ├── Math │ ├── function_xy.node │ ├── function_xyz.node │ ├── map_xyz.node │ └── show_math_string.node │ ├── Reflect │ ├── reflect_x.node │ ├── reflect_xy.node │ ├── reflect_xz.node │ ├── reflect_y.node │ ├── reflect_yz.node │ └── reflect_z.node │ ├── Rotate │ ├── rotate_x.node │ ├── rotate_y.node │ └── rotate_z.node │ ├── Scale │ ├── Taper │ │ ├── taper_x_y.node │ │ └── taper_xy_z.node │ ├── scale_cos_x_y.node │ ├── scale_cos_xy_z.node │ ├── scale_x.node │ ├── scale_xy.node │ ├── scale_xyz.node │ ├── scale_y.node │ ├── scale_z.node │ └── scale_z_r.node │ └── Translate │ ├── origin_xy.node │ ├── origin_xyz.node │ ├── recenter.node │ └── translate.node └── vendor └── catch ├── LICENSE_1_0.txt └── catch.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/BUILDING.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/README.md -------------------------------------------------------------------------------- /app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/CMakeLists.txt -------------------------------------------------------------------------------- /app/app/app.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/app/app.cpp -------------------------------------------------------------------------------- /app/app/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/app/app.h -------------------------------------------------------------------------------- /app/app/colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/app/colors.cpp -------------------------------------------------------------------------------- /app/app/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/app/colors.h -------------------------------------------------------------------------------- /app/app/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/app/main.cpp -------------------------------------------------------------------------------- /app/app/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/app/update.cpp -------------------------------------------------------------------------------- /app/app/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/app/update.h -------------------------------------------------------------------------------- /app/canvas/canvas_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/canvas_view.cpp -------------------------------------------------------------------------------- /app/canvas/canvas_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/canvas_view.h -------------------------------------------------------------------------------- /app/canvas/connection/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/connection/base.cpp -------------------------------------------------------------------------------- /app/canvas/connection/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/connection/base.h -------------------------------------------------------------------------------- /app/canvas/connection/connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/connection/connection.cpp -------------------------------------------------------------------------------- /app/canvas/connection/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/connection/connection.h -------------------------------------------------------------------------------- /app/canvas/connection/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/connection/dummy.cpp -------------------------------------------------------------------------------- /app/canvas/connection/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/connection/dummy.h -------------------------------------------------------------------------------- /app/canvas/datum_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/datum_editor.cpp -------------------------------------------------------------------------------- /app/canvas/datum_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/datum_editor.h -------------------------------------------------------------------------------- /app/canvas/datum_port.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/datum_port.cpp -------------------------------------------------------------------------------- /app/canvas/datum_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/datum_port.h -------------------------------------------------------------------------------- /app/canvas/datum_row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/datum_row.cpp -------------------------------------------------------------------------------- /app/canvas/datum_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/datum_row.h -------------------------------------------------------------------------------- /app/canvas/info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/info.cpp -------------------------------------------------------------------------------- /app/canvas/info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/info.h -------------------------------------------------------------------------------- /app/canvas/inspector/buttons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/inspector/buttons.cpp -------------------------------------------------------------------------------- /app/canvas/inspector/buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/inspector/buttons.h -------------------------------------------------------------------------------- /app/canvas/inspector/export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/inspector/export.cpp -------------------------------------------------------------------------------- /app/canvas/inspector/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/inspector/export.h -------------------------------------------------------------------------------- /app/canvas/inspector/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/inspector/frame.cpp -------------------------------------------------------------------------------- /app/canvas/inspector/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/inspector/frame.h -------------------------------------------------------------------------------- /app/canvas/inspector/title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/inspector/title.cpp -------------------------------------------------------------------------------- /app/canvas/inspector/title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/inspector/title.h -------------------------------------------------------------------------------- /app/canvas/inspector/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/inspector/util.cpp -------------------------------------------------------------------------------- /app/canvas/inspector/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/inspector/util.h -------------------------------------------------------------------------------- /app/canvas/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/scene.cpp -------------------------------------------------------------------------------- /app/canvas/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/scene.h -------------------------------------------------------------------------------- /app/canvas/subdatum/subdatum_editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/subdatum/subdatum_editor.cpp -------------------------------------------------------------------------------- /app/canvas/subdatum/subdatum_editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/subdatum/subdatum_editor.h -------------------------------------------------------------------------------- /app/canvas/subdatum/subdatum_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/subdatum/subdatum_frame.cpp -------------------------------------------------------------------------------- /app/canvas/subdatum/subdatum_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/subdatum/subdatum_frame.h -------------------------------------------------------------------------------- /app/canvas/subdatum/subdatum_row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/subdatum/subdatum_row.cpp -------------------------------------------------------------------------------- /app/canvas/subdatum/subdatum_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/canvas/subdatum/subdatum_row.h -------------------------------------------------------------------------------- /app/dialog/exporting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/dialog/exporting.cpp -------------------------------------------------------------------------------- /app/dialog/exporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/dialog/exporting.h -------------------------------------------------------------------------------- /app/dialog/exporting_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/dialog/exporting_dialog.ui -------------------------------------------------------------------------------- /app/dialog/resolution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/dialog/resolution.cpp -------------------------------------------------------------------------------- /app/dialog/resolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/dialog/resolution.h -------------------------------------------------------------------------------- /app/dialog/resolution_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/dialog/resolution_dialog.ui -------------------------------------------------------------------------------- /app/export/export_heightmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/export/export_heightmap.cpp -------------------------------------------------------------------------------- /app/export/export_heightmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/export/export_heightmap.h -------------------------------------------------------------------------------- /app/export/export_mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/export/export_mesh.cpp -------------------------------------------------------------------------------- /app/export/export_mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/export/export_mesh.h -------------------------------------------------------------------------------- /app/export/export_worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/export/export_worker.cpp -------------------------------------------------------------------------------- /app/export/export_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/export/export_worker.h -------------------------------------------------------------------------------- /app/gl/gl.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/gl/gl.qrc -------------------------------------------------------------------------------- /app/gl/height.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/gl/height.frag -------------------------------------------------------------------------------- /app/gl/quad.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/gl/quad.vert -------------------------------------------------------------------------------- /app/gl/shaded.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/gl/shaded.frag -------------------------------------------------------------------------------- /app/graph/constructor/constructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/constructor/constructor.h -------------------------------------------------------------------------------- /app/graph/constructor/populate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/constructor/populate.cpp -------------------------------------------------------------------------------- /app/graph/constructor/populate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/constructor/populate.h -------------------------------------------------------------------------------- /app/graph/hooks/export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/hooks/export.cpp -------------------------------------------------------------------------------- /app/graph/hooks/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/hooks/export.h -------------------------------------------------------------------------------- /app/graph/hooks/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/hooks/hooks.cpp -------------------------------------------------------------------------------- /app/graph/hooks/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/hooks/hooks.h -------------------------------------------------------------------------------- /app/graph/hooks/title.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/hooks/title.cpp -------------------------------------------------------------------------------- /app/graph/hooks/title.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/hooks/title.h -------------------------------------------------------------------------------- /app/graph/hooks/ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/hooks/ui.cpp -------------------------------------------------------------------------------- /app/graph/hooks/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/hooks/ui.h -------------------------------------------------------------------------------- /app/graph/proxy/base_datum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/base_datum.cpp -------------------------------------------------------------------------------- /app/graph/proxy/base_datum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/base_datum.h -------------------------------------------------------------------------------- /app/graph/proxy/datum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/datum.cpp -------------------------------------------------------------------------------- /app/graph/proxy/datum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/datum.h -------------------------------------------------------------------------------- /app/graph/proxy/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/graph.cpp -------------------------------------------------------------------------------- /app/graph/proxy/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/graph.h -------------------------------------------------------------------------------- /app/graph/proxy/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/node.cpp -------------------------------------------------------------------------------- /app/graph/proxy/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/node.h -------------------------------------------------------------------------------- /app/graph/proxy/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/script.cpp -------------------------------------------------------------------------------- /app/graph/proxy/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/script.h -------------------------------------------------------------------------------- /app/graph/proxy/subdatum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/subdatum.cpp -------------------------------------------------------------------------------- /app/graph/proxy/subdatum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/subdatum.h -------------------------------------------------------------------------------- /app/graph/proxy/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/proxy/util.h -------------------------------------------------------------------------------- /app/graph/serialize/deserializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/serialize/deserializer.cpp -------------------------------------------------------------------------------- /app/graph/serialize/deserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/serialize/deserializer.h -------------------------------------------------------------------------------- /app/graph/serialize/serializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/serialize/serializer.cpp -------------------------------------------------------------------------------- /app/graph/serialize/serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/graph/serialize/serializer.h -------------------------------------------------------------------------------- /app/script/editor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/script/editor.cpp -------------------------------------------------------------------------------- /app/script/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/script/editor.h -------------------------------------------------------------------------------- /app/script/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/script/frame.cpp -------------------------------------------------------------------------------- /app/script/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/script/frame.h -------------------------------------------------------------------------------- /app/script/syntax.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/script/syntax.cpp -------------------------------------------------------------------------------- /app/script/syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/script/syntax.h -------------------------------------------------------------------------------- /app/undo/undo_add_datum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_add_datum.cpp -------------------------------------------------------------------------------- /app/undo/undo_add_datum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_add_datum.h -------------------------------------------------------------------------------- /app/undo/undo_add_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_add_node.cpp -------------------------------------------------------------------------------- /app/undo/undo_add_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_add_node.h -------------------------------------------------------------------------------- /app/undo/undo_catcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_catcher.h -------------------------------------------------------------------------------- /app/undo/undo_change_expr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_change_expr.cpp -------------------------------------------------------------------------------- /app/undo/undo_change_expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_change_expr.h -------------------------------------------------------------------------------- /app/undo/undo_change_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_change_script.cpp -------------------------------------------------------------------------------- /app/undo/undo_change_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_change_script.h -------------------------------------------------------------------------------- /app/undo/undo_command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_command.cpp -------------------------------------------------------------------------------- /app/undo/undo_command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_command.h -------------------------------------------------------------------------------- /app/undo/undo_delete_datum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_delete_datum.cpp -------------------------------------------------------------------------------- /app/undo/undo_delete_datum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_delete_datum.h -------------------------------------------------------------------------------- /app/undo/undo_delete_link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_delete_link.cpp -------------------------------------------------------------------------------- /app/undo/undo_delete_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_delete_link.h -------------------------------------------------------------------------------- /app/undo/undo_delete_multi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_delete_multi.cpp -------------------------------------------------------------------------------- /app/undo/undo_delete_multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_delete_multi.h -------------------------------------------------------------------------------- /app/undo/undo_delete_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_delete_node.cpp -------------------------------------------------------------------------------- /app/undo/undo_delete_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_delete_node.h -------------------------------------------------------------------------------- /app/undo/undo_move_datum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_move_datum.cpp -------------------------------------------------------------------------------- /app/undo/undo_move_datum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_move_datum.h -------------------------------------------------------------------------------- /app/undo/undo_move_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_move_node.cpp -------------------------------------------------------------------------------- /app/undo/undo_move_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_move_node.h -------------------------------------------------------------------------------- /app/undo/undo_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_stack.cpp -------------------------------------------------------------------------------- /app/undo/undo_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/undo/undo_stack.h -------------------------------------------------------------------------------- /app/viewport/control/control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/control/control.cpp -------------------------------------------------------------------------------- /app/viewport/control/control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/control/control.h -------------------------------------------------------------------------------- /app/viewport/control/control_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/control/control_instance.cpp -------------------------------------------------------------------------------- /app/viewport/control/control_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/control/control_instance.h -------------------------------------------------------------------------------- /app/viewport/control/point.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/control/point.cpp -------------------------------------------------------------------------------- /app/viewport/control/point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/control/point.h -------------------------------------------------------------------------------- /app/viewport/control/wireframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/control/wireframe.cpp -------------------------------------------------------------------------------- /app/viewport/control/wireframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/control/wireframe.h -------------------------------------------------------------------------------- /app/viewport/gl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/gl.cpp -------------------------------------------------------------------------------- /app/viewport/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/gl.h -------------------------------------------------------------------------------- /app/viewport/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/image.cpp -------------------------------------------------------------------------------- /app/viewport/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/image.h -------------------------------------------------------------------------------- /app/viewport/render/instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/render/instance.cpp -------------------------------------------------------------------------------- /app/viewport/render/instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/render/instance.h -------------------------------------------------------------------------------- /app/viewport/render/task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/render/task.cpp -------------------------------------------------------------------------------- /app/viewport/render/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/render/task.h -------------------------------------------------------------------------------- /app/viewport/scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/scene.cpp -------------------------------------------------------------------------------- /app/viewport/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/scene.h -------------------------------------------------------------------------------- /app/viewport/view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/view.cpp -------------------------------------------------------------------------------- /app/viewport/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/viewport/view.h -------------------------------------------------------------------------------- /app/window/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/base.cpp -------------------------------------------------------------------------------- /app/window/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/base.h -------------------------------------------------------------------------------- /app/window/base_viewport_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/base_viewport_window.cpp -------------------------------------------------------------------------------- /app/window/base_viewport_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/base_viewport_window.h -------------------------------------------------------------------------------- /app/window/base_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/base_window.ui -------------------------------------------------------------------------------- /app/window/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/canvas.cpp -------------------------------------------------------------------------------- /app/window/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/canvas.h -------------------------------------------------------------------------------- /app/window/quad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/quad.cpp -------------------------------------------------------------------------------- /app/window/quad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/quad.h -------------------------------------------------------------------------------- /app/window/script_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/script_window.cpp -------------------------------------------------------------------------------- /app/window/script_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/script_window.h -------------------------------------------------------------------------------- /app/window/viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/viewport.cpp -------------------------------------------------------------------------------- /app/window/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/app/window/viewport.h -------------------------------------------------------------------------------- /deploy/.gitignore: -------------------------------------------------------------------------------- 1 | icon*.png 2 | -------------------------------------------------------------------------------- /deploy/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/icon.svg -------------------------------------------------------------------------------- /deploy/linux/debian/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/linux/debian/.gitignore -------------------------------------------------------------------------------- /deploy/linux/debian/antimony.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/linux/debian/antimony.1 -------------------------------------------------------------------------------- /deploy/linux/debian/antimony.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/linux/debian/antimony.install -------------------------------------------------------------------------------- /deploy/linux/debian/antimony.manpages: -------------------------------------------------------------------------------- 1 | debian/antimony.1 2 | -------------------------------------------------------------------------------- /deploy/linux/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/linux/debian/changelog -------------------------------------------------------------------------------- /deploy/linux/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /deploy/linux/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/linux/debian/control -------------------------------------------------------------------------------- /deploy/linux/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/linux/debian/copyright -------------------------------------------------------------------------------- /deploy/linux/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/linux/debian/rules -------------------------------------------------------------------------------- /deploy/linux/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /deploy/linux/mkdesktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/linux/mkdesktop -------------------------------------------------------------------------------- /deploy/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/mac/Info.plist -------------------------------------------------------------------------------- /deploy/mac/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/mac/deploy.sh -------------------------------------------------------------------------------- /deploy/mac/make_icon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/mac/make_icon.sh -------------------------------------------------------------------------------- /deploy/mac/sb.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/deploy/mac/sb.icns -------------------------------------------------------------------------------- /doc/SCRIPTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/SCRIPTING.md -------------------------------------------------------------------------------- /doc/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/USAGE.md -------------------------------------------------------------------------------- /doc/imgs/sub_inside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/imgs/sub_inside.png -------------------------------------------------------------------------------- /doc/imgs/sub_outside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/imgs/sub_outside.png -------------------------------------------------------------------------------- /doc/release-notes/0.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.7.0.md -------------------------------------------------------------------------------- /doc/release-notes/0.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.7.1.md -------------------------------------------------------------------------------- /doc/release-notes/0.7.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.7.2.md -------------------------------------------------------------------------------- /doc/release-notes/0.7.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.7.3.md -------------------------------------------------------------------------------- /doc/release-notes/0.7.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.7.4.md -------------------------------------------------------------------------------- /doc/release-notes/0.7.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.7.5.md -------------------------------------------------------------------------------- /doc/release-notes/0.7.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.7.6.md -------------------------------------------------------------------------------- /doc/release-notes/0.7.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.7.7.md -------------------------------------------------------------------------------- /doc/release-notes/0.7.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.7.8.md -------------------------------------------------------------------------------- /doc/release-notes/0.7.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.7.9.md -------------------------------------------------------------------------------- /doc/release-notes/0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.8.0.md -------------------------------------------------------------------------------- /doc/release-notes/0.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.9.0.md -------------------------------------------------------------------------------- /doc/release-notes/0.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.9.1.md -------------------------------------------------------------------------------- /doc/release-notes/0.9.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.9.2.md -------------------------------------------------------------------------------- /doc/release-notes/0.9.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/doc/release-notes/0.9.3.md -------------------------------------------------------------------------------- /examples/csg.sb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/examples/csg.sb -------------------------------------------------------------------------------- /examples/gear.sb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/examples/gear.sb -------------------------------------------------------------------------------- /examples/hi.sb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/examples/hi.sb -------------------------------------------------------------------------------- /examples/label.sb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/examples/label.sb -------------------------------------------------------------------------------- /examples/ring.sb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/examples/ring.sb -------------------------------------------------------------------------------- /lib/fab/.gitignore: -------------------------------------------------------------------------------- 1 | build* 2 | -------------------------------------------------------------------------------- /lib/fab/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/inc/fab/fab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/fab.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/formats/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/formats/png.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/formats/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/formats/stl.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/eval.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/math/math_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/math/math_defines.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/math/math_f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/math/math_f.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/math/math_g.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/math/math_g.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/math/math_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/math/math_i.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/math/math_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/math/math_r.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/node/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/node/node.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/node/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/node/opcodes.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/node/printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/node/printers.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/node/printers_ss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/node/printers_ss.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/node/results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/node/results.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/parser.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/parser_env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/parser_env.hpp -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/render.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/tree.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/triangulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/triangulate.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/triangulate/mesher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/triangulate/mesher.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/triangulate/triangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/triangulate/triangle.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/tree/v2parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/tree/v2parser.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/types/bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/types/bounds.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/types/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/types/shape.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/types/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/types/transform.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/util/interval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/util/interval.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/util/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/util/region.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/util/switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/util/switches.h -------------------------------------------------------------------------------- /lib/fab/inc/fab/util/ustack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/inc/fab/util/ustack.h -------------------------------------------------------------------------------- /lib/fab/src/fab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/fab.cpp -------------------------------------------------------------------------------- /lib/fab/src/formats/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/formats/png.c -------------------------------------------------------------------------------- /lib/fab/src/formats/stl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/formats/stl.c -------------------------------------------------------------------------------- /lib/fab/src/tree/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/eval.c -------------------------------------------------------------------------------- /lib/fab/src/tree/math/math_f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/math/math_f.c -------------------------------------------------------------------------------- /lib/fab/src/tree/math/math_g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/math/math_g.c -------------------------------------------------------------------------------- /lib/fab/src/tree/math/math_i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/math/math_i.c -------------------------------------------------------------------------------- /lib/fab/src/tree/math/math_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/math/math_r.c -------------------------------------------------------------------------------- /lib/fab/src/tree/node/node_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/node/node_c.c -------------------------------------------------------------------------------- /lib/fab/src/tree/node/opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/node/opcodes.c -------------------------------------------------------------------------------- /lib/fab/src/tree/node/printers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/node/printers.c -------------------------------------------------------------------------------- /lib/fab/src/tree/node/printers_ss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/node/printers_ss.cpp -------------------------------------------------------------------------------- /lib/fab/src/tree/node/results.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/node/results.c -------------------------------------------------------------------------------- /lib/fab/src/tree/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/parser.c -------------------------------------------------------------------------------- /lib/fab/src/tree/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/render.c -------------------------------------------------------------------------------- /lib/fab/src/tree/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/tree.c -------------------------------------------------------------------------------- /lib/fab/src/tree/triangulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/triangulate.cpp -------------------------------------------------------------------------------- /lib/fab/src/tree/triangulate/mesher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/triangulate/mesher.cpp -------------------------------------------------------------------------------- /lib/fab/src/tree/triangulate/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/triangulate/triangle.cpp -------------------------------------------------------------------------------- /lib/fab/src/tree/v2parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/v2parser.cpp -------------------------------------------------------------------------------- /lib/fab/src/tree/v2syntax.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/v2syntax.l -------------------------------------------------------------------------------- /lib/fab/src/tree/v2syntax.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/tree/v2syntax.y -------------------------------------------------------------------------------- /lib/fab/src/types/bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/types/bounds.cpp -------------------------------------------------------------------------------- /lib/fab/src/types/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/types/shape.cpp -------------------------------------------------------------------------------- /lib/fab/src/types/transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/types/transform.cpp -------------------------------------------------------------------------------- /lib/fab/src/util/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/util/region.c -------------------------------------------------------------------------------- /lib/fab/src/util/ustack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/src/util/ustack.c -------------------------------------------------------------------------------- /lib/fab/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/tests/main.cpp -------------------------------------------------------------------------------- /lib/fab/tests/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/tests/parser.cpp -------------------------------------------------------------------------------- /lib/fab/tests/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/tests/shape.cpp -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Array -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/COPYING.BSD -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/COPYING.GPL -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/COPYING.LGPL -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/COPYING.MINPACK -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/COPYING.MPL2 -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/COPYING.README -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Cholesky -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/CholmodSupport -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Core -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Dense -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Eigen -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Eigen2Support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Eigen2Support -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Eigenvalues -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Geometry -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Householder -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Jacobi -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/LU -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/LeastSquares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/LeastSquares -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/MetisSupport -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/OrderingMethods -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/PardisoSupport -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/QR -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/SPQRSupport -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/SVD -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/Sparse -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/SparseCholesky -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/SparseCore -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/SparseLU -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/SparseQR -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/StdDeque -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/StdList -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/StdVector -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Cholesky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Cholesky/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Cholesky/LLT_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Cholesky/LLT_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/CholmodSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/CholmodSupport/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/CholmodSupport/CholmodSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/CholmodSupport/CholmodSupport.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/ArrayWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/ArrayWrapper.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/BooleanRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/BooleanRedux.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/CommaInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/CommaInitializer.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/CoreIterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/CoreIterators.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/CwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/CwiseBinaryOp.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/CwiseNullaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/CwiseNullaryOp.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/CwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/CwiseUnaryOp.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/CwiseUnaryView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/CwiseUnaryView.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/DenseCoeffsBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/DenseCoeffsBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/DenseStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/DenseStorage.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/DiagonalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/DiagonalMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/DiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/DiagonalProduct.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Flagged.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Flagged.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/ForceAlignedAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/ForceAlignedAccess.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Functors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Functors.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/GeneralProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/GeneralProduct.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/GenericPacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/GenericPacketMath.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/GlobalFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/GlobalFunctions.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/MathFunctions.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/PermutationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/PermutationMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/PlainObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/PlainObjectBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/ProductBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/ProductBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/ReturnByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/ReturnByValue.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/SelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/SelfAdjointView.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/SelfCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/SelfCwiseBinaryOp.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/SolveTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/SolveTriangular.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Transpositions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Transpositions.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/TriangularMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/TriangularMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/VectorwiseOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/VectorwiseOp.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/AltiVec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/AltiVec/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/AltiVec/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/AltiVec/Complex.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/AltiVec/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/AltiVec/PacketMath.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/Default/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/Default/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/Default/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/Default/Settings.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/NEON/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/NEON/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/NEON/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/NEON/Complex.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/NEON/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/NEON/PacketMath.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/SSE/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/SSE/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/SSE/Complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/SSE/Complex.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/SSE/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/SSE/MathFunctions.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/arch/SSE/PacketMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/arch/SSE/PacketMath.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/CoeffBasedProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/CoeffBasedProduct.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/GeneralBlockPanelKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/GeneralBlockPanelKernel.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixMatrix_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixVector.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixVector_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/GeneralMatrixVector_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/Parallelizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/Parallelizer.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/SelfadjointMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/SelfadjointMatrixMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/SelfadjointMatrixMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/SelfadjointMatrixMatrix_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/SelfadjointMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/SelfadjointMatrixVector.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/SelfadjointMatrixVector_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/SelfadjointProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/SelfadjointProduct.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/SelfadjointRank2Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/SelfadjointRank2Update.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/TriangularMatrixMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/TriangularMatrixMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/TriangularMatrixMatrix_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/TriangularMatrixVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/TriangularMatrixVector.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/TriangularMatrixVector_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/TriangularMatrixVector_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/TriangularSolverMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/TriangularSolverMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/TriangularSolverMatrix_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/TriangularSolverMatrix_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/products/TriangularSolverVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/products/TriangularSolverVector.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/BlasUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/BlasUtil.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/Constants.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/DisableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/DisableStupidWarnings.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/ForwardDeclarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/ForwardDeclarations.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/MKL_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/MKL_support.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/NonMPL2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/NonMPL2.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/ReenableStupidWarnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/ReenableStupidWarnings.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/StaticAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/StaticAssert.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Core/util/XprHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Core/util/XprHelper.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Block.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Cwise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Cwise.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/CwiseOperators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/CwiseOperators.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/All.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/All.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Quaternion.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/RotationBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Scaling.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Transform.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Geometry/Translation.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/LU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/LU.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Lazy.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/LeastSquares.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/LeastSquares.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Macros.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/MathFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/MathFunctions.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Memory.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Meta.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/Minor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/Minor.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/QR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/QR.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/SVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/SVD.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/TriangularSolver.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigen2Support/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigen2Support/VectorBlock.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/ComplexEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/ComplexEigenSolver.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/ComplexSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/ComplexSchur.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/ComplexSchur_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/ComplexSchur_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/EigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/EigenSolver.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/HessenbergDecomposition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/HessenbergDecomposition.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/RealQZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/RealQZ.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/RealSchur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/RealSchur.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/RealSchur_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/RealSchur_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Eigenvalues/Tridiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Eigenvalues/Tridiagonalization.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/AlignedBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/AlignedBox.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/AngleAxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/AngleAxis.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/EulerAngles.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/Homogeneous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/Homogeneous.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/Hyperplane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/Hyperplane.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/OrthoMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/OrthoMethods.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/ParametrizedLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/ParametrizedLine.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/Quaternion.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/Rotation2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/Rotation2D.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/RotationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/RotationBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/Transform.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/Translation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/Translation.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/arch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/arch/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Geometry/arch/Geometry_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Geometry/arch/Geometry_SSE.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Householder/BlockHouseholder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Householder/BlockHouseholder.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Householder/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Householder/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Householder/Householder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Householder/Householder.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Householder/HouseholderSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Householder/HouseholderSequence.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/IterativeLinearSolvers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/IterativeLinearSolvers/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Jacobi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Jacobi/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/LU/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/LU/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/LU/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/LU/Inverse.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/LU/PartialPivLU_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/LU/PartialPivLU_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/LU/arch/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/LU/arch/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/LU/arch/Inverse_SSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/LU/arch/Inverse_SSE.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/MetisSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/MetisSupport/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/MetisSupport/MetisSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/MetisSupport/MetisSupport.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/OrderingMethods/Amd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/OrderingMethods/Amd.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/OrderingMethods/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/OrderingMethods/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/OrderingMethods/Eigen_Colamd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/OrderingMethods/Eigen_Colamd.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/OrderingMethods/Ordering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/OrderingMethods/Ordering.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/PaStiXSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/PaStiXSupport/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/PaStiXSupport/PaStiXSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/PaStiXSupport/PaStiXSupport.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/PardisoSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/PardisoSupport/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/PardisoSupport/PardisoSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/PardisoSupport/PardisoSupport.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/QR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/QR/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/QR/ColPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/QR/ColPivHouseholderQR.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/QR/ColPivHouseholderQR_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/QR/ColPivHouseholderQR_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/QR/FullPivHouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/QR/FullPivHouseholderQR.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/QR/HouseholderQR_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/QR/HouseholderQR_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SPQRSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SPQRSupport/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SVD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SVD/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SVD/JacobiSVD_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SVD/JacobiSVD_MKL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SVD/UpperBidiagonalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SVD/UpperBidiagonalization.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCholesky/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCholesky/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCholesky/SimplicialCholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCholesky/SimplicialCholesky.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/AmbiVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/AmbiVector.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/CompressedStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/CompressedStorage.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/MappedSparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/MappedSparseMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseBlock.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseColEtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseColEtree.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseCwiseBinaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseCwiseBinaryOp.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseCwiseUnaryOp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseCwiseUnaryOp.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseDenseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseDenseProduct.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseDiagonalProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseDiagonalProduct.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseDot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseDot.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseFuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseFuzzy.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseMatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseMatrixBase.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparsePermutation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparsePermutation.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseProduct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseProduct.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseRedux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseRedux.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseSelfAdjointView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseSelfAdjointView.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseSparseProductWithPruning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseSparseProductWithPruning.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseTranspose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseTranspose.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseTriangularView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseTriangularView.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseUtil.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseVector.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/SparseView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/SparseView.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseCore/TriangularSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseCore/TriangularSolver.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLUImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLUImpl.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_Memory.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_Structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_Structs.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_Utils.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_column_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_column_bmod.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_column_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_column_dfs.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_gemm_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_gemm_kernel.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_kernel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_kernel_bmod.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_panel_bmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_panel_bmod.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_panel_dfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_panel_dfs.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_pivotL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_pivotL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_pruneL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_pruneL.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseLU/SparseLU_relax_snode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseLU/SparseLU_relax_snode.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseQR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseQR/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SparseQR/SparseQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SparseQR/SparseQR.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/StlSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/StlSupport/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/StlSupport/StdDeque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/StlSupport/StdDeque.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/StlSupport/StdList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/StlSupport/StdList.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/StlSupport/StdVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/StlSupport/StdVector.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/StlSupport/details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/StlSupport/details.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SuperLUSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SuperLUSupport/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/SuperLUSupport/SuperLUSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/SuperLUSupport/SuperLUSupport.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/UmfPackSupport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/UmfPackSupport/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/UmfPackSupport/UmfPackSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/UmfPackSupport/UmfPackSupport.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/misc/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/misc/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/misc/Solve.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/misc/SparseSolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/misc/SparseSolve.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/plugins/ArrayCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/plugins/ArrayCwiseBinaryOps.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/plugins/ArrayCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/plugins/ArrayCwiseUnaryOps.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/plugins/BlockMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/plugins/BlockMethods.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/plugins/CommonCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/plugins/CommonCwiseBinaryOps.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/plugins/CommonCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/plugins/CommonCwiseUnaryOps.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/plugins/MatrixCwiseBinaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/plugins/MatrixCwiseBinaryOps.h -------------------------------------------------------------------------------- /lib/fab/vendor/Eigen/src/plugins/MatrixCwiseUnaryOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/fab/vendor/Eigen/src/plugins/MatrixCwiseUnaryOps.h -------------------------------------------------------------------------------- /lib/graph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/CMakeLists.txt -------------------------------------------------------------------------------- /lib/graph/inc/graph/datum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/datum.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/graph.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/graph_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/graph_node.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/hooks/external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/hooks/external.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/hooks/hooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/hooks/hooks.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/hooks/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/hooks/input.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/hooks/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/hooks/output.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/node.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/proxy.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/script.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/script_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/script_node.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/types/downstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/types/downstream.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/types/root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/types/root.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/types/watched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/types/watched.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/util.h -------------------------------------------------------------------------------- /lib/graph/inc/graph/watchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/inc/graph/watchers.h -------------------------------------------------------------------------------- /lib/graph/src/datum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/datum.cpp -------------------------------------------------------------------------------- /lib/graph/src/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/graph.cpp -------------------------------------------------------------------------------- /lib/graph/src/graph_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/graph_node.cpp -------------------------------------------------------------------------------- /lib/graph/src/hooks/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/hooks/hooks.cpp -------------------------------------------------------------------------------- /lib/graph/src/hooks/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/hooks/input.cpp -------------------------------------------------------------------------------- /lib/graph/src/hooks/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/hooks/output.cpp -------------------------------------------------------------------------------- /lib/graph/src/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/node.cpp -------------------------------------------------------------------------------- /lib/graph/src/proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/proxy.cpp -------------------------------------------------------------------------------- /lib/graph/src/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/script.cpp -------------------------------------------------------------------------------- /lib/graph/src/script_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/script_node.cpp -------------------------------------------------------------------------------- /lib/graph/src/types/downstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/types/downstream.cpp -------------------------------------------------------------------------------- /lib/graph/src/types/root.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/types/root.cpp -------------------------------------------------------------------------------- /lib/graph/src/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/src/util.cpp -------------------------------------------------------------------------------- /lib/graph/tests/datum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/tests/datum.cpp -------------------------------------------------------------------------------- /lib/graph/tests/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/tests/graph.cpp -------------------------------------------------------------------------------- /lib/graph/tests/link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/tests/link.cpp -------------------------------------------------------------------------------- /lib/graph/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/tests/main.cpp -------------------------------------------------------------------------------- /lib/graph/tests/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/tests/node.cpp -------------------------------------------------------------------------------- /lib/graph/tests/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/tests/script.cpp -------------------------------------------------------------------------------- /lib/graph/tests/subgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/lib/graph/tests/subgraph.cpp -------------------------------------------------------------------------------- /py/fab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/fab/__init__.py -------------------------------------------------------------------------------- /py/fab/shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/fab/shapes.py -------------------------------------------------------------------------------- /py/fab/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/fab/types.py -------------------------------------------------------------------------------- /py/nodes/2D → 3D/Revolve/revolve_xy_x.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D → 3D/Revolve/revolve_xy_x.node -------------------------------------------------------------------------------- /py/nodes/2D → 3D/Revolve/revolve_xy_y.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D → 3D/Revolve/revolve_xy_y.node -------------------------------------------------------------------------------- /py/nodes/2D → 3D/extrude.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D → 3D/extrude.node -------------------------------------------------------------------------------- /py/nodes/2D → 3D/loft.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D → 3D/loft.node -------------------------------------------------------------------------------- /py/nodes/2D/Circles/circle_center.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/Circles/circle_center.node -------------------------------------------------------------------------------- /py/nodes/2D/Circles/circle_edge.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/Circles/circle_edge.node -------------------------------------------------------------------------------- /py/nodes/2D/Rectangles/rectangle_center.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/Rectangles/rectangle_center.node -------------------------------------------------------------------------------- /py/nodes/2D/Rectangles/rectangle_center_rounded.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/Rectangles/rectangle_center_rounded.node -------------------------------------------------------------------------------- /py/nodes/2D/Rectangles/rectangle_corner.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/Rectangles/rectangle_corner.node -------------------------------------------------------------------------------- /py/nodes/2D/Rectangles/rectangle_corner_rounded.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/Rectangles/rectangle_corner_rounded.node -------------------------------------------------------------------------------- /py/nodes/2D/Triangles/triangle.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/Triangles/triangle.node -------------------------------------------------------------------------------- /py/nodes/2D/Triangles/triangle_right.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/Triangles/triangle_right.node -------------------------------------------------------------------------------- /py/nodes/2D/point.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/point.node -------------------------------------------------------------------------------- /py/nodes/2D/polygon.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/polygon.node -------------------------------------------------------------------------------- /py/nodes/2D/text.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/2D/text.node -------------------------------------------------------------------------------- /py/nodes/3D → 2D/slice_xy.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D → 2D/slice_xy.node -------------------------------------------------------------------------------- /py/nodes/3D → 2D/slice_xz.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D → 2D/slice_xz.node -------------------------------------------------------------------------------- /py/nodes/3D → 2D/slice_yz.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D → 2D/slice_yz.node -------------------------------------------------------------------------------- /py/nodes/3D/Cones/cone.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Cones/cone.node -------------------------------------------------------------------------------- /py/nodes/3D/Cones/cone_edge.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Cones/cone_edge.node -------------------------------------------------------------------------------- /py/nodes/3D/Cones/cone_height.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Cones/cone_height.node -------------------------------------------------------------------------------- /py/nodes/3D/Cubes/cube_center.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Cubes/cube_center.node -------------------------------------------------------------------------------- /py/nodes/3D/Cubes/cube_center_rounded.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Cubes/cube_center_rounded.node -------------------------------------------------------------------------------- /py/nodes/3D/Cubes/cube_corner.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Cubes/cube_corner.node -------------------------------------------------------------------------------- /py/nodes/3D/Cubes/cube_corner_rounded.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Cubes/cube_corner_rounded.node -------------------------------------------------------------------------------- /py/nodes/3D/Cylinders/cylinder_x.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Cylinders/cylinder_x.node -------------------------------------------------------------------------------- /py/nodes/3D/Cylinders/cylinder_y.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Cylinders/cylinder_y.node -------------------------------------------------------------------------------- /py/nodes/3D/Cylinders/cylinder_z.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Cylinders/cylinder_z.node -------------------------------------------------------------------------------- /py/nodes/3D/Pyramids/pyramid_center.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Pyramids/pyramid_center.node -------------------------------------------------------------------------------- /py/nodes/3D/Pyramids/pyramid_edge.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Pyramids/pyramid_edge.node -------------------------------------------------------------------------------- /py/nodes/3D/Spheres/sphere_center.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Spheres/sphere_center.node -------------------------------------------------------------------------------- /py/nodes/3D/Spheres/sphere_edge.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Spheres/sphere_edge.node -------------------------------------------------------------------------------- /py/nodes/3D/Toruses/torus_x.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Toruses/torus_x.node -------------------------------------------------------------------------------- /py/nodes/3D/Toruses/torus_y.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Toruses/torus_y.node -------------------------------------------------------------------------------- /py/nodes/3D/Toruses/torus_z.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Toruses/torus_z.node -------------------------------------------------------------------------------- /py/nodes/3D/Volumes/gyroid.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Volumes/gyroid.node -------------------------------------------------------------------------------- /py/nodes/3D/Volumes/schwarz_d.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Volumes/schwarz_d.node -------------------------------------------------------------------------------- /py/nodes/3D/Volumes/schwarz_p.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/Volumes/schwarz_p.node -------------------------------------------------------------------------------- /py/nodes/3D/point.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/3D/point.node -------------------------------------------------------------------------------- /py/nodes/Array/array_2d.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Array/array_2d.node -------------------------------------------------------------------------------- /py/nodes/Array/array_3d.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Array/array_3d.node -------------------------------------------------------------------------------- /py/nodes/Array/array_polar.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Array/array_polar.node -------------------------------------------------------------------------------- /py/nodes/CSG/blend.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/blend.node -------------------------------------------------------------------------------- /py/nodes/CSG/clearance.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/clearance.node -------------------------------------------------------------------------------- /py/nodes/CSG/copy.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/copy.node -------------------------------------------------------------------------------- /py/nodes/CSG/difference.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/difference.node -------------------------------------------------------------------------------- /py/nodes/CSG/hide.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/hide.node -------------------------------------------------------------------------------- /py/nodes/CSG/intersection.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/intersection.node -------------------------------------------------------------------------------- /py/nodes/CSG/invert.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/invert.node -------------------------------------------------------------------------------- /py/nodes/CSG/morph.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/morph.node -------------------------------------------------------------------------------- /py/nodes/CSG/offset.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/offset.node -------------------------------------------------------------------------------- /py/nodes/CSG/shell.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/shell.node -------------------------------------------------------------------------------- /py/nodes/CSG/union.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/CSG/union.node -------------------------------------------------------------------------------- /py/nodes/Color/set_color.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Color/set_color.node -------------------------------------------------------------------------------- /py/nodes/Color/set_color_hsb.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Color/set_color_hsb.node -------------------------------------------------------------------------------- /py/nodes/Deform/Shear/shear_cos_x_y.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Deform/Shear/shear_cos_x_y.node -------------------------------------------------------------------------------- /py/nodes/Deform/Shear/shear_cos_xy_z.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Deform/Shear/shear_cos_xy_z.node -------------------------------------------------------------------------------- /py/nodes/Deform/Shear/shear_x_y.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Deform/Shear/shear_x_y.node -------------------------------------------------------------------------------- /py/nodes/Deform/Shear/shear_xy_z.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Deform/Shear/shear_xy_z.node -------------------------------------------------------------------------------- /py/nodes/Deform/attract.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Deform/attract.node -------------------------------------------------------------------------------- /py/nodes/Deform/cylinderwrap.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Deform/cylinderwrap.node -------------------------------------------------------------------------------- /py/nodes/Deform/repel.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Deform/repel.node -------------------------------------------------------------------------------- /py/nodes/Deform/twist.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Deform/twist.node -------------------------------------------------------------------------------- /py/nodes/Export/export_heightmap.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Export/export_heightmap.node -------------------------------------------------------------------------------- /py/nodes/Export/export_stl.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Export/export_stl.node -------------------------------------------------------------------------------- /py/nodes/Math/function_xy.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Math/function_xy.node -------------------------------------------------------------------------------- /py/nodes/Math/function_xyz.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Math/function_xyz.node -------------------------------------------------------------------------------- /py/nodes/Math/map_xyz.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Math/map_xyz.node -------------------------------------------------------------------------------- /py/nodes/Math/show_math_string.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Math/show_math_string.node -------------------------------------------------------------------------------- /py/nodes/Reflect/reflect_x.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Reflect/reflect_x.node -------------------------------------------------------------------------------- /py/nodes/Reflect/reflect_xy.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Reflect/reflect_xy.node -------------------------------------------------------------------------------- /py/nodes/Reflect/reflect_xz.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Reflect/reflect_xz.node -------------------------------------------------------------------------------- /py/nodes/Reflect/reflect_y.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Reflect/reflect_y.node -------------------------------------------------------------------------------- /py/nodes/Reflect/reflect_yz.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Reflect/reflect_yz.node -------------------------------------------------------------------------------- /py/nodes/Reflect/reflect_z.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Reflect/reflect_z.node -------------------------------------------------------------------------------- /py/nodes/Rotate/rotate_x.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Rotate/rotate_x.node -------------------------------------------------------------------------------- /py/nodes/Rotate/rotate_y.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Rotate/rotate_y.node -------------------------------------------------------------------------------- /py/nodes/Rotate/rotate_z.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Rotate/rotate_z.node -------------------------------------------------------------------------------- /py/nodes/Scale/Taper/taper_x_y.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Scale/Taper/taper_x_y.node -------------------------------------------------------------------------------- /py/nodes/Scale/Taper/taper_xy_z.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Scale/Taper/taper_xy_z.node -------------------------------------------------------------------------------- /py/nodes/Scale/scale_cos_x_y.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Scale/scale_cos_x_y.node -------------------------------------------------------------------------------- /py/nodes/Scale/scale_cos_xy_z.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Scale/scale_cos_xy_z.node -------------------------------------------------------------------------------- /py/nodes/Scale/scale_x.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Scale/scale_x.node -------------------------------------------------------------------------------- /py/nodes/Scale/scale_xy.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Scale/scale_xy.node -------------------------------------------------------------------------------- /py/nodes/Scale/scale_xyz.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Scale/scale_xyz.node -------------------------------------------------------------------------------- /py/nodes/Scale/scale_y.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Scale/scale_y.node -------------------------------------------------------------------------------- /py/nodes/Scale/scale_z.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Scale/scale_z.node -------------------------------------------------------------------------------- /py/nodes/Scale/scale_z_r.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Scale/scale_z_r.node -------------------------------------------------------------------------------- /py/nodes/Translate/origin_xy.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Translate/origin_xy.node -------------------------------------------------------------------------------- /py/nodes/Translate/origin_xyz.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Translate/origin_xyz.node -------------------------------------------------------------------------------- /py/nodes/Translate/recenter.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Translate/recenter.node -------------------------------------------------------------------------------- /py/nodes/Translate/translate.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/py/nodes/Translate/translate.node -------------------------------------------------------------------------------- /vendor/catch/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/vendor/catch/LICENSE_1_0.txt -------------------------------------------------------------------------------- /vendor/catch/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkeeter/antimony/HEAD/vendor/catch/catch.hpp --------------------------------------------------------------------------------