From ad2b0b6e7a190dbb1e8b8f797956ed8dd5788dfb Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Sat, 24 Feb 2024 14:03:23 +0100 Subject: [PATCH 01/18] [all] Lifecycle for v24.06 (1) --- .../algorithm/DirectSAPNarrowPhase.h | 7 +- .../detection/algorithm/RayTraceNarrowPhase.h | 6 +- .../collision/detection/algorithm/config.h.in | 6 +- .../collision/response/contact/config.h.in | 9 - .../linearsolver/direct/CholeskySolver.h | 6 +- .../direct/PrecomputedLinearSolver.h | 4 +- .../linearsolver/direct/SparseLDLSolverImpl.h | 1 + .../component/linearsolver/direct/config.h.in | 6 +- .../iterative/MinResLinearSolver.h | 4 +- .../linearsolver/iterative/config.h.in | 6 +- .../BlockJacobiPreconditioner.h | 4 +- .../preconditioner/JacobiPreconditioner.h | 4 +- .../PrecomputedWarpPreconditioner.h | 4 +- .../preconditioner/SSORPreconditioner.h | 4 +- .../linearsolver/preconditioner/config.h.in | 6 +- .../backward/VariationalSymplecticSolver.h | 4 +- .../component/odesolver/backward/config.h.in | 6 +- .../sofa/gui/common/ColourPickingVisitor.h | 6 +- .../Core/src/sofa/core/ConstraintParams.h | 8 +- .../Core/src/sofa/core/MechanicalParams.h | 4 +- Sofa/framework/Core/src/sofa/core/config.h.in | 12 +- .../Helper/src/sofa/helper/ColorMap.h | 2 +- .../Helper/src/sofa/helper/LCPcalc.h | 8 +- .../Helper/src/sofa/helper/config.h.in | 24 +-- .../src/sofa/helper/io/MeshTopologyLoader.h | 2 +- Sofa/framework/Simulation/Core/CMakeLists.txt | 3 - .../sofa/simulation/BaseMechanicalVisitor.h | 14 +- .../src/sofa/simulation/CactusStackStorage.h | 54 +----- .../Core/src/sofa/simulation/LocalStorage.h | 29 +--- .../Core/src/sofa/simulation/Node.h | 2 +- .../simulation/ParallelVisitorScheduler.h | 37 +--- .../Core/src/sofa/simulation/Simulation.h | 36 ++-- .../Core/src/sofa/simulation/Visitor.h | 4 +- .../src/sofa/simulation/VisitorScheduler.h | 45 +---- .../Core/src/sofa/simulation/config.h.in | 164 +++++++++--------- .../Simulation/Core/src/sofa/simulation/fwd.h | 2 +- .../MechanicalVDotVisitor.cpp | 1 + .../src/sofa/simulation/graph/DAGSimulation.h | 2 +- .../src/sofa/simulation/graph/config.h.in | 6 +- Sofa/framework/Type/src/sofa/type/RGBAColor.h | 12 +- Sofa/framework/Type/src/sofa/type/config.h.in | 6 +- 41 files changed, 197 insertions(+), 373 deletions(-) diff --git a/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/DirectSAPNarrowPhase.h b/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/DirectSAPNarrowPhase.h index 8abb6f1e37c..eff32606c88 100644 --- a/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/DirectSAPNarrowPhase.h +++ b/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/DirectSAPNarrowPhase.h @@ -63,8 +63,9 @@ class SOFA_COMPONENT_COLLISION_DETECTION_ALGORITHM_API DirectSAPNarrowPhase : pu */ void updateBoxes(); - SOFA_ATTRIBUTE_DEPRECATED__DRAWNARROWPHASE() - sofa::core::objectmodel::lifecycle::DeprecatedData d_draw{this, "v23.12", "v24.06", "draw", "Use display flag 'showDetectionOutputs' instead"}; ///< enable/disable display of results + SOFA_ATTRIBUTE_DISABLED__DRAWNARROWPHASE() + sofa::core::objectmodel::lifecycle::RemovedData d_draw{this, "v23.12", "v24.06", "draw", "Use display flag 'showDetectionOutputs' instead"}; ///< enable/disable display of results + Data d_showOnlyInvestigatedBoxes; ///< Show only boxes which will be sent to narrow phase Data d_nbPairs; ///< number of pairs of elements sent to narrow phase @@ -140,4 +141,4 @@ class SOFA_COMPONENT_COLLISION_DETECTION_ALGORITHM_API DirectSAPNarrowPhase : pu bool needsDeepBoundingTree() const override { return false; } }; -} \ No newline at end of file +} diff --git a/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/RayTraceNarrowPhase.h b/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/RayTraceNarrowPhase.h index 87cec837f02..ac68c919558 100644 --- a/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/RayTraceNarrowPhase.h +++ b/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/RayTraceNarrowPhase.h @@ -45,8 +45,8 @@ class SOFA_COMPONENT_COLLISION_DETECTION_ALGORITHM_API RayTraceNarrowPhase : pub SOFA_CLASS(RayTraceNarrowPhase, core::collision::NarrowPhaseDetection); private: - SOFA_ATTRIBUTE_DEPRECATED__DRAWNARROWPHASE() - sofa::core::objectmodel::lifecycle::DeprecatedData bDraw{this, "v23.12", "v24.06", "draw", "Use display flag 'showDetectionOutputs' instead"}; ///< enable/disable display of results + SOFA_ATTRIBUTE_DISABLED__DRAWNARROWPHASE() + sofa::core::objectmodel::lifecycle::RemovedData bDraw{this, "v23.12", "v24.06", "draw", "Use display flag 'showDetectionOutputs' instead"}; ///< enable/disable display of results protected: RayTraceNarrowPhase() = default; @@ -59,4 +59,4 @@ class SOFA_COMPONENT_COLLISION_DETECTION_ALGORITHM_API RayTraceNarrowPhase : pub }; -} \ No newline at end of file +} diff --git a/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/config.h.in b/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/config.h.in index c7caa6a8c2b..9803c54740f 100644 --- a/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/config.h.in +++ b/Sofa/Component/Collision/Detection/Algorithm/src/sofa/component/collision/detection/algorithm/config.h.in @@ -41,10 +41,10 @@ #endif #ifdef SOFA_BUILD_SOFA_COMPONENT_COLLISION_DETECTION -# define SOFA_ATTRIBUTE_DEPRECATED__DRAWNARROWPHASE() +# define SOFA_ATTRIBUTE_DISABLED__DRAWNARROWPHASE() #else -# define SOFA_ATTRIBUTE_DEPRECATED__DRAWNARROWPHASE() \ - SOFA_ATTRIBUTE_DEPRECATED( \ +# define SOFA_ATTRIBUTE_DISABLED__DRAWNARROWPHASE() \ + SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "This data is not used anymore: the drawing is now controlled by a draw flag") #endif namespace sofa::component::collision::detection::algorithm diff --git a/Sofa/Component/Collision/Response/Contact/src/sofa/component/collision/response/contact/config.h.in b/Sofa/Component/Collision/Response/Contact/src/sofa/component/collision/response/contact/config.h.in index 8edf2eda677..8452734db98 100644 --- a/Sofa/Component/Collision/Response/Contact/src/sofa/component/collision/response/contact/config.h.in +++ b/Sofa/Component/Collision/Response/Contact/src/sofa/component/collision/response/contact/config.h.in @@ -31,15 +31,6 @@ # define SOFA_COMPONENT_COLLISION_RESPONSE_CONTACT_API SOFA_IMPORT_DYNAMIC_LIBRARY #endif -#ifdef SOFA_BUILD_SOFA_COMPONENT_COLLISION_RESPONSE_CONTACT -#define SOFA_ATTRIBUTE_DEPRECATED__RENAME_COLLISIONRESPONSE() -#else -#define SOFA_ATTRIBUTE_DEPRECATED__RENAME_COLLISIONRESPONSE() \ - SOFA_ATTRIBUTE_DEPRECATED( \ - "v23.12", "v24.06", \ - "DefaultContactManager renamed as CollisionResponse in #3891: Sofa/Component/Collision/Response/Contact/src/sofa/component/collision/response/contact/CollisionResponse.h") -#endif - namespace sofa::component::collision::response::contact { constexpr const char* MODULE_NAME = "@PROJECT_NAME@"; diff --git a/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/CholeskySolver.h b/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/CholeskySolver.h index 5f4269c62b9..20bc2ee873c 100644 --- a/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/CholeskySolver.h +++ b/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/CholeskySolver.h @@ -46,10 +46,8 @@ class CholeskySolver : public sofa::component::linearsolver::MatrixLinearSolver< typedef typename Vector::Real Real; typedef sofa::component::linearsolver::MatrixLinearSolver Inherit; - SOFA_ATTRIBUTE_DEPRECATED__SOLVER_DIRECT_VERBOSEDATA() - sofa::core::objectmodel::lifecycle::RemovedData f_verbose{this, "v22.06", "v22.12", "verbose", - "Attribute 'verbose' has no use in this component. " - "To remove this error, remove the use of the attribute from the scene."}; + SOFA_ATTRIBUTE_DISABLED__SOLVER_DIRECT_VERBOSEDATA() + sofa::core::objectmodel::lifecycle::RemovedData f_verbose{this, "v23.12", "v24.06", "verbose", "This Data is no longer used"}; CholeskySolver(); diff --git a/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/PrecomputedLinearSolver.h b/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/PrecomputedLinearSolver.h index c813cee4291..e5bbaf4dc27 100644 --- a/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/PrecomputedLinearSolver.h +++ b/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/PrecomputedLinearSolver.h @@ -84,8 +84,8 @@ class PrecomputedLinearSolver : public sofa::component::linearsolver::MatrixLine Data use_file; ///< Dump system matrix in a file Data init_Tolerance; - SOFA_ATTRIBUTE_DEPRECATED__SOLVER_DIRECT_VERBOSEDATA() - Data f_verbose; ///< Dump system state at each iteration + SOFA_ATTRIBUTE_DISABLED__SOLVER_DIRECT_VERBOSEDATA() + sofa::core::objectmodel::lifecycle::RemovedData f_verbose{this, "v23.12", "v24.06", "verbose", "This Data is no longer used"}; PrecomputedLinearSolver(); void solve (TMatrix& M, TVector& x, TVector& b) override; diff --git a/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/SparseLDLSolverImpl.h b/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/SparseLDLSolverImpl.h index f8cec815565..c27aaf61b33 100644 --- a/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/SparseLDLSolverImpl.h +++ b/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/SparseLDLSolverImpl.h @@ -229,6 +229,7 @@ protected : void LDL_ordering(int n, int nnz, int* M_colptr, int* M_rowind, Real* M_values, int* perm, int* invperm) { + SOFA_UNUSED(M_values); core::behavior::BaseOrderingMethod::SparseMatrixPattern pattern; pattern.matrixSize = n; pattern.numberOfNonZeros = nnz; diff --git a/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/config.h.in b/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/config.h.in index e39a0c98870..da6b2427d21 100644 --- a/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/config.h.in +++ b/Sofa/Component/LinearSolver/Direct/src/sofa/component/linearsolver/direct/config.h.in @@ -60,10 +60,10 @@ namespace sofa::component::linearsolver::direct #endif // SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_DIRECT #ifdef SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_DIRECT -#define SOFA_ATTRIBUTE_DEPRECATED__SOLVER_DIRECT_VERBOSEDATA() +#define SOFA_ATTRIBUTE_DISABLED__SOLVER_DIRECT_VERBOSEDATA() #else -#define SOFA_ATTRIBUTE_DEPRECATED__SOLVER_DIRECT_VERBOSEDATA() \ - SOFA_ATTRIBUTE_DEPRECATED("v23.12", "v24.06", "This Data is no longer used") +#define SOFA_ATTRIBUTE_DISABLED__SOLVER_DIRECT_VERBOSEDATA() \ + SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "This Data is no longer used") #endif // SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_DIRECT #ifdef SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_DIRECT diff --git a/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/MinResLinearSolver.h b/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/MinResLinearSolver.h index bb49071fb9a..961d8cb501d 100644 --- a/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/MinResLinearSolver.h +++ b/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/MinResLinearSolver.h @@ -46,8 +46,8 @@ class MinResLinearSolver : public sofa::component::linearsolver::MatrixLinearSol Data f_maxIter; ///< maximum number of iterations of the Conjugate Gradient solution Data f_tolerance; ///< desired precision of the Conjugate Gradient Solution (ratio of current residual norm over initial residual norm) - SOFA_ATTRIBUTE_DEPRECATED__SOLVER_ITERATIVE_VERBOSEDATA() - Data f_verbose; ///< Dump system state at each iteration + SOFA_ATTRIBUTE_DISABLED__SOLVER_ITERATIVE_VERBOSEDATA() + sofa::core::objectmodel::lifecycle::RemovedData f_verbose{this, "v23.12", "v24.06", "verbose", "This Data is no longer used"}; Data > > f_graph; ///< Graph of residuals at each iteration diff --git a/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/config.h.in b/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/config.h.in index 2d86978cb7c..fc115444244 100644 --- a/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/config.h.in +++ b/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/config.h.in @@ -47,8 +47,8 @@ namespace sofa::component::linearsolver::iterative #endif // SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_ITERATIVE #ifdef SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_ITERATIVE -#define SOFA_ATTRIBUTE_DEPRECATED__SOLVER_ITERATIVE_VERBOSEDATA() +#define SOFA_ATTRIBUTE_DISABLED__SOLVER_ITERATIVE_VERBOSEDATA() #else -#define SOFA_ATTRIBUTE_DEPRECATED__SOLVER_ITERATIVE_VERBOSEDATA() \ - SOFA_ATTRIBUTE_DEPRECATED("v23.12", "v24.06", "This Data is no longer used") +#define SOFA_ATTRIBUTE_DISABLED__SOLVER_ITERATIVE_VERBOSEDATA() \ + SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "This Data is no longer used") #endif // SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_ITERATIVE diff --git a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/BlockJacobiPreconditioner.h b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/BlockJacobiPreconditioner.h index aa20bb9ea0b..b686da3ac14 100644 --- a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/BlockJacobiPreconditioner.h +++ b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/BlockJacobiPreconditioner.h @@ -52,8 +52,8 @@ class BlockJacobiPreconditioner : public sofa::component::linearsolver::MatrixLi typedef sofa::component::linearsolver::MatrixLinearSolver Inherit; typedef typename TMatrix::Block SubMatrix; - SOFA_ATTRIBUTE_DEPRECATED__PRECONDITIONER_VERBOSEDATA() - Data f_verbose; ///< Dump system state at each iteration + SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_VERBOSEDATA() + sofa::core::objectmodel::lifecycle::RemovedData f_verbose{this, "v23.12", "v24.06", "verbose", "This Data is no longer used"}; protected: BlockJacobiPreconditioner(); diff --git a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/JacobiPreconditioner.h b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/JacobiPreconditioner.h index 61a38162d21..8e0e90fe374 100644 --- a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/JacobiPreconditioner.h +++ b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/JacobiPreconditioner.h @@ -43,8 +43,8 @@ class JacobiPreconditioner : public sofa::component::linearsolver::MatrixLinearS typedef TVector Vector; typedef sofa::component::linearsolver::MatrixLinearSolver Inherit; - SOFA_ATTRIBUTE_DEPRECATED__PRECONDITIONER_VERBOSEDATA() - Data f_verbose; ///< Dump system state at each iteration + SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_VERBOSEDATA() + sofa::core::objectmodel::lifecycle::RemovedData f_verbose{this, "v23.12", "v24.06", "verbose", "This Data is no longer used"}; protected: JacobiPreconditioner(); diff --git a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.h b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.h index 0ab268218b2..8ea169e56d1 100644 --- a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.h +++ b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.h @@ -107,8 +107,8 @@ class PrecomputedWarpPreconditioner : public sofa::component::linearsolver::Matr Data jmjt_twostep; ///< Use two step algorithm to compute JMinvJt - SOFA_ATTRIBUTE_DEPRECATED__PRECONDITIONER_VERBOSEDATA() - Data f_verbose; ///< Dump system state at each iteration + SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_VERBOSEDATA() + sofa::core::objectmodel::lifecycle::RemovedData f_verbose{this, "v23.12", "v24.06", "verbose", "This Data is no longer used"}; Data use_file; ///< Dump system matrix in a file Data share_matrix; ///< Share the compliance matrix in memory if they are related to the same file (WARNING: might require to reload Sofa when opening a new scene...) diff --git a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/SSORPreconditioner.h b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/SSORPreconditioner.h index 2939abf124b..349786db0c0 100644 --- a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/SSORPreconditioner.h +++ b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/SSORPreconditioner.h @@ -51,8 +51,8 @@ class SSORPreconditioner : public sofa::component::linearsolver::MatrixLinearSol typedef SReal Real; typedef sofa::component::linearsolver::MatrixLinearSolver Inherit; - SOFA_ATTRIBUTE_DEPRECATED__PRECONDITIONER_VERBOSEDATA() - Data f_verbose; ///< Dump system state at each iteration + SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_VERBOSEDATA() + sofa::core::objectmodel::lifecycle::RemovedData f_verbose{this, "v23.12", "v24.06", "verbose", "This Data is no longer used"}; Data f_omega; ///< Omega coefficient protected: diff --git a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/config.h.in b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/config.h.in index cae24a002aa..63e8c3cb139 100644 --- a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/config.h.in +++ b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/config.h.in @@ -47,8 +47,8 @@ namespace sofa::component::linearsolver::preconditioner #endif // SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_PRECONDITIONER #ifdef SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_PRECONDITIONER -#define SOFA_ATTRIBUTE_DEPRECATED__PRECONDITIONER_VERBOSEDATA() +#define SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_VERBOSEDATA() #else -#define SOFA_ATTRIBUTE_DEPRECATED__PRECONDITIONER_VERBOSEDATA() \ - SOFA_ATTRIBUTE_DEPRECATED("v23.12", "v24.06", "This Data is no longer used") +#define SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_VERBOSEDATA() \ + SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "This Data is no longer used") #endif // SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_PRECONDITIONER diff --git a/Sofa/Component/ODESolver/Backward/src/sofa/component/odesolver/backward/VariationalSymplecticSolver.h b/Sofa/Component/ODESolver/Backward/src/sofa/component/odesolver/backward/VariationalSymplecticSolver.h index d51610d3655..7fe021b079c 100644 --- a/Sofa/Component/ODESolver/Backward/src/sofa/component/odesolver/backward/VariationalSymplecticSolver.h +++ b/Sofa/Component/ODESolver/Backward/src/sofa/component/odesolver/backward/VariationalSymplecticSolver.h @@ -52,8 +52,8 @@ class SOFA_COMPONENT_ODESOLVER_BACKWARD_API VariationalSymplecticSolver : public Data f_useIncrementalPotentialEnergy; ///< use real potential energy, if false use approximate potential energy Data d_threadSafeVisitor; ///< If true, do not use realloc and free visitors in fwdInteractionForceField. - SOFA_ATTRIBUTE_DEPRECATED__ODESOLVER_BACKWARD_VERBOSEDATA() - Data f_verbose; ///< Dump information on the residual errors and number of Newton iterations + SOFA_ATTRIBUTE_DISABLED__ODESOLVER_BACKWARD_VERBOSEDATA() + sofa::core::objectmodel::lifecycle::RemovedData f_verbose{this, "v23.12", "v24.06", "verbose", "This Data is no longer used"}; VariationalSymplecticSolver(); diff --git a/Sofa/Component/ODESolver/Backward/src/sofa/component/odesolver/backward/config.h.in b/Sofa/Component/ODESolver/Backward/src/sofa/component/odesolver/backward/config.h.in index 8db7bc7a658..7a2bec43f92 100644 --- a/Sofa/Component/ODESolver/Backward/src/sofa/component/odesolver/backward/config.h.in +++ b/Sofa/Component/ODESolver/Backward/src/sofa/component/odesolver/backward/config.h.in @@ -38,8 +38,8 @@ namespace sofa::component::odesolver::backward } // namespace sofa::component::odesolver::backward #ifdef SOFA_BUILD_SOFA_COMPONENT_ODESOLVER_BACKWARD -#define SOFA_ATTRIBUTE_DEPRECATED__ODESOLVER_BACKWARD_VERBOSEDATA() +#define SOFA_ATTRIBUTE_DISABLED__ODESOLVER_BACKWARD_VERBOSEDATA() #else -#define SOFA_ATTRIBUTE_DEPRECATED__ODESOLVER_BACKWARD_VERBOSEDATA() \ - SOFA_ATTRIBUTE_DEPRECATED("v23.12", "v24.06", "This Data is no longer used") +#define SOFA_ATTRIBUTE_DISABLED__ODESOLVER_BACKWARD_VERBOSEDATA() \ + SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "This Data is no longer used") #endif // SOFA_BUILD_SOFA_COMPONENT_ODESOLVER_BACKWARD diff --git a/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h b/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h index a49882953f6..549396940e2 100644 --- a/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h +++ b/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h @@ -36,12 +36,12 @@ void SOFA_GUI_COMMON_API decodePosition( sofa::gui::component::performer::BodyPi const unsigned int index); // compat -SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() +SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() void SOFA_GUI_COMMON_API decodeCollisionElement( const sofa::type::Vec4f& colour, sofa::gui::component::performer::BodyPicked& body ); -SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() +SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() void SOFA_GUI_COMMON_API decodePosition( sofa::gui::component::performer::BodyPicked& body, const sofa::type::Vec4f& colour, const sofa::component::collision::geometry::TriangleCollisionModel* model, const unsigned int index); -SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() +SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() void SOFA_GUI_COMMON_API decodePosition( sofa::gui::component::performer::BodyPicked& body, const sofa::type::Vec4f& colour, const sofa::component::collision::geometry::SphereCollisionModel* model, const unsigned int index); diff --git a/Sofa/framework/Core/src/sofa/core/ConstraintParams.h b/Sofa/framework/Core/src/sofa/core/ConstraintParams.h index dcb7ecdb50a..013f7a14986 100644 --- a/Sofa/framework/Core/src/sofa/core/ConstraintParams.h +++ b/Sofa/framework/Core/src/sofa/core/ConstraintParams.h @@ -35,10 +35,10 @@ class SOFA_CORE_API ConstraintParams : public sofa::core::ExecParams { public: - SOFA_ATTRIBUTE_DEPRECATED__CONSTORDER() static constexpr auto POS = sofa::core::ConstraintOrder::POS; - SOFA_ATTRIBUTE_DEPRECATED__CONSTORDER() static constexpr auto VEL = sofa::core::ConstraintOrder::VEL; - SOFA_ATTRIBUTE_DEPRECATED__CONSTORDER() static constexpr auto ACC = sofa::core::ConstraintOrder::ACC; - SOFA_ATTRIBUTE_DEPRECATED__CONSTORDER() static constexpr auto POS_AND_VEL = sofa::core::ConstraintOrder::POS_AND_VEL; + SOFA_ATTRIBUTE_DISABLED__CONSTORDER() static constexpr auto POS = sofa::core::ConstraintOrder::POS; + SOFA_ATTRIBUTE_DISABLED__CONSTORDER() static constexpr auto VEL = sofa::core::ConstraintOrder::VEL; + SOFA_ATTRIBUTE_DISABLED__CONSTORDER() static constexpr auto ACC = sofa::core::ConstraintOrder::ACC; + SOFA_ATTRIBUTE_DISABLED__CONSTORDER() static constexpr auto POS_AND_VEL = sofa::core::ConstraintOrder::POS_AND_VEL; /// @name Flags and parameters getters /// @{ diff --git a/Sofa/framework/Core/src/sofa/core/MechanicalParams.h b/Sofa/framework/Core/src/sofa/core/MechanicalParams.h index e17d6b604b9..21a37941a73 100644 --- a/Sofa/framework/Core/src/sofa/core/MechanicalParams.h +++ b/Sofa/framework/Core/src/sofa/core/MechanicalParams.h @@ -65,7 +65,7 @@ class SOFA_CORE_API MechanicalParams : public sofa::core::ExecParams /// @} - SOFA_ATTRIBUTE_DEPRECATED__SYMMETRICMATRIX("Use supportOnlySymmetricMatrix instead.") + SOFA_ATTRIBUTE_DISABLED__SYMMETRICMATRIX("Use supportOnlySymmetricMatrix instead.") bool symmetricMatrix() const { return supportOnlySymmetricMatrix(); } /// Symmetric matrix flag, for solvers specialized on symmetric matrices @@ -162,7 +162,7 @@ class SOFA_CORE_API MechanicalParams : public sofa::core::ExecParams /// Set Stiffness matrix contributions factor (for implicit schemes) MechanicalParams& setKFactor(SReal v) { m_kFactor = v; return *this; } - SOFA_ATTRIBUTE_DEPRECATED__SYMMETRICMATRIX("Use setSupportOnlySymmetricMatrix instead.") + SOFA_ATTRIBUTE_DISABLED__SYMMETRICMATRIX("Use setSupportOnlySymmetricMatrix instead.") MechanicalParams& setSymmetricMatrix(bool b) { return setSupportOnlySymmetricMatrix(b); } /// Set the flag (for implicit schemes) specifying if solvers are only specialized for symmetric matrices diff --git a/Sofa/framework/Core/src/sofa/core/config.h.in b/Sofa/framework/Core/src/sofa/core/config.h.in index 49e8bbe47eb..33587fe9a36 100644 --- a/Sofa/framework/Core/src/sofa/core/config.h.in +++ b/Sofa/framework/Core/src/sofa/core/config.h.in @@ -46,17 +46,17 @@ #endif // SOFA_CORE_TOPOLOGY_ENABLE_DEPRECATION_MESSAGE #ifdef SOFA_BUILD_SOFA_CORE -#define SOFA_ATTRIBUTE_DEPRECATED__SYMMETRICMATRIX(msg) +#define SOFA_ATTRIBUTE_DISABLED__SYMMETRICMATRIX(msg) #else -#define SOFA_ATTRIBUTE_DEPRECATED__SYMMETRICMATRIX(msg) \ - SOFA_ATTRIBUTE_DEPRECATED("v23.12 (PR#3861)", "v24.06", msg) +#define SOFA_ATTRIBUTE_DISABLED__SYMMETRICMATRIX(msg) \ + SOFA_ATTRIBUTE_DISABLED("v23.12 (PR#3861)", "v24.06", msg) #endif #ifdef SOFA_BUILD_SOFA_CORE -#define SOFA_ATTRIBUTE_DEPRECATED__CONSTORDER() +#define SOFA_ATTRIBUTE_DISABLED__CONSTORDER() #else -#define SOFA_ATTRIBUTE_DEPRECATED__CONSTORDER() \ - SOFA_ATTRIBUTE_DEPRECATED("v23.12", "v24.06", "ConstOrder is now a scoped enumeration. It must be used to access the values.") +#define SOFA_ATTRIBUTE_DISABLED__CONSTORDER() \ + SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "ConstOrder is now a scoped enumeration. It must be used to access the values.") #endif diff --git a/Sofa/framework/Helper/src/sofa/helper/ColorMap.h b/Sofa/framework/Helper/src/sofa/helper/ColorMap.h index 32c96bdf236..9139b85907e 100644 --- a/Sofa/framework/Helper/src/sofa/helper/ColorMap.h +++ b/Sofa/framework/Helper/src/sofa/helper/ColorMap.h @@ -108,7 +108,7 @@ class SOFA_HELPER_API ColorMap } } - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() type::Vec3f hsv2rgb(const type::Vec3f& hsv); inline friend std::ostream& operator << (std::ostream& out, const ColorMap& m ) diff --git a/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h b/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h index 074458d9854..ea5b6a9e8d7 100644 --- a/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h +++ b/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h @@ -99,13 +99,13 @@ inline SOFA_HELPER_API SReal absError(SReal f1x, SReal f1y, SReal f1z, SReal f2x {return sqrt ((f2x-f1x)*(f2x-f1x) + (f2y-f1y)*(f2y-f1y) + (f2z-f1z)*(f2z-f1z));} -SOFA_HELPER_API SOFA_LCPCALC_RESOUDRELCP_DEPRECATED() int resoudreLCP(int, SReal *, SReal **, SReal *); +SOFA_HELPER_API SOFA_LCPCALC_RESOUDRELCP_DISABLED() int resoudreLCP(int, SReal *, SReal **, SReal *); SOFA_HELPER_API int solveLCP(int, SReal *, SReal **, SReal *); -SOFA_HELPER_API SOFA_LCPCALC_AFFICHESYST_DEPRECATED() void afficheSyst(SReal *q,SReal **M, int *base, SReal **mat, int dim); -SOFA_HELPER_API SOFA_LCPCALC_AFFICHELCP_DEPRECATED() void afficheLCP(SReal *q, SReal **M, int dim); -SOFA_HELPER_API SOFA_LCPCALC_AFFICHELCP_DEPRECATED() void afficheLCP(SReal *q, SReal **M, SReal *f, int dim); +SOFA_HELPER_API SOFA_LCPCALC_AFFICHESYST_DISABLED() void afficheSyst(SReal *q,SReal **M, int *base, SReal **mat, int dim); +SOFA_HELPER_API SOFA_LCPCALC_AFFICHELCP_DISABLED() void afficheLCP(SReal *q, SReal **M, int dim); +SOFA_HELPER_API SOFA_LCPCALC_AFFICHELCP_DISABLED() void afficheLCP(SReal *q, SReal **M, SReal *f, int dim); SOFA_HELPER_API void printSyst(SReal* q, SReal** M, int* base, SReal** mat, int dim); SOFA_HELPER_API void printLCP(SReal* q, SReal** M, int dim); SOFA_HELPER_API void printLCP(SReal* q, SReal** M, SReal* f, int dim); diff --git a/Sofa/framework/Helper/src/sofa/helper/config.h.in b/Sofa/framework/Helper/src/sofa/helper/config.h.in index bf7c211c1d1..381f343453e 100644 --- a/Sofa/framework/Helper/src/sofa/helper/config.h.in +++ b/Sofa/framework/Helper/src/sofa/helper/config.h.in @@ -57,33 +57,33 @@ #endif // SOFA_BUILD_SOFA_HELPER #ifdef SOFA_BUILD_SOFA_HELPER -#define SOFA_MESHTOPOLOGYLOADER_LOADMESHFUNCTION_DEPRECATED() +#define SOFA_MESHTOPOLOGYLOADER_LOADMESHFUNCTION_DISABLED() #else -#define SOFA_MESHTOPOLOGYLOADER_LOADMESHFUNCTION_DEPRECATED() \ - SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_MESHTOPOLOGYLOADER_LOADMESHFUNCTION_DISABLED() \ + SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "This function is not replaced.") #endif // SOFA_BUILD_SOFA_HELPER #ifdef SOFA_BUILD_SOFA_HELPER -#define SOFA_LCPCALC_AFFICHELCP_DEPRECATED() +#define SOFA_LCPCALC_AFFICHELCP_DISABLED() #else -#define SOFA_LCPCALC_AFFICHELCP_DEPRECATED() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_LCPCALC_AFFICHELCP_DISABLED() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "This function is replaced by printLCP.") #endif // SOFA_BUILD_SOFA_HELPER #ifdef SOFA_BUILD_SOFA_HELPER -#define SOFA_LCPCALC_AFFICHESYST_DEPRECATED() +#define SOFA_LCPCALC_AFFICHESYST_DISABLED() #else -#define SOFA_LCPCALC_AFFICHESYST_DEPRECATED() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_LCPCALC_AFFICHESYST_DISABLED() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "This function is replaced by printSyst.") #endif // SOFA_BUILD_SOFA_HELPER #ifdef SOFA_BUILD_SOFA_HELPER -#define SOFA_LCPCALC_RESOUDRELCP_DEPRECATED() +#define SOFA_LCPCALC_RESOUDRELCP_DISABLED() #else -#define SOFA_LCPCALC_RESOUDRELCP_DEPRECATED() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_LCPCALC_RESOUDRELCP_DISABLED() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "This function is replaced by solveLCP.") #endif // SOFA_BUILD_SOFA_HELPER diff --git a/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.h b/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.h index 7e07aa0e900..b6db41c9d29 100644 --- a/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.h +++ b/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.h @@ -65,7 +65,7 @@ class SOFA_HELPER_API MeshTopologyLoader bool loadVtk(const char *filename); - SOFA_MESHTOPOLOGYLOADER_LOADMESHFUNCTION_DEPRECATED() + SOFA_MESHTOPOLOGYLOADER_LOADMESHFUNCTION_DISABLED() bool loadMesh(std::ifstream &file); // will take all data from loaded into @see m_mesh and add it to the current topology using methods api. diff --git a/Sofa/framework/Simulation/Core/CMakeLists.txt b/Sofa/framework/Simulation/Core/CMakeLists.txt index c0d6c8d5da7..9f420e19e12 100644 --- a/Sofa/framework/Simulation/Core/CMakeLists.txt +++ b/Sofa/framework/Simulation/Core/CMakeLists.txt @@ -151,7 +151,6 @@ set(SOURCE_FILES ${SRC_ROOT}/AnimateVisitor.cpp ${SRC_ROOT}/BaseMechanicalVisitor.cpp ${SRC_ROOT}/BehaviorUpdatePositionVisitor.cpp - ${SRC_ROOT}/CactusStackStorage.cpp ${SRC_ROOT}/CleanupVisitor.cpp ${SRC_ROOT}/CollisionAnimationLoop.cpp ${SRC_ROOT}/CollisionBeginEvent.cpp @@ -176,7 +175,6 @@ set(SOURCE_FILES ${SRC_ROOT}/MechanicalVisitor.cpp ${SRC_ROOT}/MutationListener.cpp ${SRC_ROOT}/Node.cpp - ${SRC_ROOT}/ParallelVisitorScheduler.cpp ${SRC_ROOT}/PauseEvent.cpp ${SRC_ROOT}/PipelineImpl.cpp ${SRC_ROOT}/PositionEvent.cpp @@ -201,7 +199,6 @@ set(SOURCE_FILES ${SRC_ROOT}/VectorOperations.cpp ${SRC_ROOT}/VelocityThresholdVisitor.cpp ${SRC_ROOT}/Visitor.cpp - ${SRC_ROOT}/VisitorScheduler.cpp ${SRC_ROOT}/VisualVisitor.cpp ${SRC_ROOT}/WriteStateVisitor.cpp ${SRC_ROOT}/XMLPrintVisitor.cpp diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.h index 0120f5f0c12..e2c0a5dc9e6 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.h @@ -46,7 +46,7 @@ class SOFA_SIMULATION_CORE_API BaseMechanicalVisitor : public Visitor protected: simulation::Node* root; ///< root node from which the visitor was executed - SOFA_ATTRIBUTE_DEPRECATED_NODEDATA() + SOFA_ATTRIBUTE_DISABLED_NODEDATA() SReal* rootData { nullptr }; ///< data for root node virtual Result processNodeTopDown(simulation::Node* node, VisitorContext* ctx); @@ -55,16 +55,16 @@ class SOFA_SIMULATION_CORE_API BaseMechanicalVisitor : public Visitor public: BaseMechanicalVisitor(const sofa::core::ExecParams* params); - SOFA_ATTRIBUTE_DEPRECATED_NODEDATA() + SOFA_ATTRIBUTE_DISABLED_NODEDATA() virtual bool readNodeData() const { return false; }; - SOFA_ATTRIBUTE_DEPRECATED_NODEDATA() + SOFA_ATTRIBUTE_DISABLED_NODEDATA() virtual bool writeNodeData() const { return false; }; - SOFA_ATTRIBUTE_DEPRECATED_NODEDATA() + SOFA_ATTRIBUTE_DISABLED_NODEDATA() virtual void setNodeData(simulation::Node* /*node*/, SReal* /*nodeData*/, const SReal* /*parentData*/) {}; - SOFA_ATTRIBUTE_DEPRECATED_NODEDATA() + SOFA_ATTRIBUTE_DISABLED_NODEDATA() virtual void addNodeData(simulation::Node* /*node*/, SReal* /*parentData*/, const SReal* /*nodeData*/) {}; /// Return a class name for this visitor @@ -84,7 +84,7 @@ class SOFA_SIMULATION_CORE_API BaseMechanicalVisitor : public Visitor /// Parallel version of processNodeTopDown. /// This method calls the fwd* methods during the forward traversal. You typically do not overload it. - SOFA_ATTRIBUTE_DEPRECATED_LOCALSTORAGE() + SOFA_ATTRIBUTE_DISABLED_LOCALSTORAGE() Result processNodeTopDown(simulation::Node * node, LocalStorage * stack) override; /// Process the OdeSolver @@ -175,7 +175,7 @@ class SOFA_SIMULATION_CORE_API BaseMechanicalVisitor : public Visitor /// Parallel version of processNodeBottomUp. /// This method calls the bwd* methods during the backward traversal. You typically do not overload it. - SOFA_ATTRIBUTE_DEPRECATED_LOCALSTORAGE() + SOFA_ATTRIBUTE_DISABLED_LOCALSTORAGE() void processNodeBottomUp(simulation::Node* /*node*/, LocalStorage * stack) override; /// Process the BaseMechanicalState when it is not mapped from parent level diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/CactusStackStorage.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/CactusStackStorage.h index 4bb1222f39f..45ece5263bb 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/CactusStackStorage.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/CactusStackStorage.h @@ -23,59 +23,7 @@ #define SOFA_SIMULATION_TREE_CACTUSSTACKSTORAGE_H #include -#include -#include -SOFA_HEADER_DEPRECATED_LOCALSTORAGE() - - -namespace sofa -{ - -namespace simulation -{ - - -/// Cactus Stack implementation of LocalStorage. -/// See http://www.nist.gov/dads/HTML/cactusstack.html -SOFA_ATTRIBUTE_DEPRECATED_LOCALSTORAGE() -class SOFA_SIMULATION_CORE_API CactusStackStorage : public simulation::LocalStorage -{ -protected: - CactusStackStorage* up; ///< This point to the parent stack - CactusStackStorage* down; ///< This point to the *array* of child stacks - std::stack stack; -public: - CactusStackStorage() - : up(nullptr), down(nullptr) - { - } - void setParent(CactusStackStorage* parent) - { - up = parent; - } - void setChildren(CactusStackStorage* children) - { - down = children; - } - CactusStackStorage* getParent() - { - return up; - } - CactusStackStorage* getChildren() - { - return down; - } - - void push(void* data) override; - void* pop() override; - void* top() const override; - bool empty() const override; - virtual const char* getClassName() const { return "CactusStackStorage"; } -}; - -} // namespace simulation - -} // namespace sofa +SOFA_HEADER_DISABLED_LOCALSTORAGE() #endif diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/LocalStorage.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/LocalStorage.h index 2df86d938c2..116b1886f03 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/LocalStorage.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/LocalStorage.h @@ -24,33 +24,6 @@ #include -SOFA_HEADER_DEPRECATED_LOCALSTORAGE() - -namespace sofa -{ - -namespace simulation -{ - - -class Visitor; - -/// Abstract class allowing actions to store local data as a stack while traversing the graph. -SOFA_ATTRIBUTE_DEPRECATED_LOCALSTORAGE() -class LocalStorage -{ -protected: - virtual ~LocalStorage() {} - -public: - virtual void push(void* data) = 0; - virtual void* pop() = 0; - virtual void* top() const = 0; - virtual bool empty() const = 0; -}; - -} // namespace simulation - -} // namespace sofa +SOFA_HEADER_DISABLED_LOCALSTORAGE() #endif diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/Node.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/Node.h index 6fe39404db4..271c83e4892 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/Node.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/Node.h @@ -515,7 +515,7 @@ class SOFA_SIMULATION_CORE_API Node : public sofa::core::objectmodel::BaseNode, template static Node::SPtr create(RealObject*, sofa::core::objectmodel::BaseObjectDescription* arg); - SOFA_ATTRIBUTE_DEPRECATED_NODECREATENODE() + SOFA_ATTRIBUTE_DISABLED_NODECREATENODE() static Node::SPtr create( const std::string& name ); /// return the smallest common parent between this and node2 (returns nullptr if separated sub-graphes) diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/ParallelVisitorScheduler.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/ParallelVisitorScheduler.h index 51a907d17a6..639bb81fb04 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/ParallelVisitorScheduler.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/ParallelVisitorScheduler.h @@ -23,41 +23,6 @@ #define SOFA_SIMULATION_CORE_PARALLELACTIONSCHEDULER_H #include -SOFA_HEADER_DEPRECATED_PARALLELVISITORSCHEDULER() - -#include -#include - -namespace sofa -{ - -namespace simulation -{ - - -/// Specialized VisitorScheduler for parallel implementations. -SOFA_ATTRIBUTE_DEPRECATED_PARALLELVISITORSCHEDULER() -class SOFA_SIMULATION_CORE_API ParallelVisitorScheduler : public simulation::VisitorScheduler -{ -public: - ParallelVisitorScheduler(bool propagate=false); - - /// Specify whether this scheduler is multi-threaded. - bool isMultiThreaded() const override { return true; } - - void executeVisitor(Node* node, Visitor* action) override; - -protected: - bool propagate; - - void recursiveClone(Node* node); - - virtual ParallelVisitorScheduler* clone() = 0; - virtual void executeParallelVisitor(Node* node, Visitor* action) = 0; -}; - -} // namespace simulation - -} // namespace sofa +SOFA_HEADER_DISABLED_PARALLELVISITORSCHEDULER() #endif diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.h index cb047c35892..c3b93079214 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.h @@ -103,39 +103,39 @@ class SOFA_SIMULATION_CORE_API Simulation Simulation& operator=(const Simulation& n) = delete; /// Print all object in the graph - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_PRINT() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_PRINT() virtual void print(Node* root); /// Initialize the objects - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_INIT() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_INIT() virtual void init(Node* root); ///Init a node without changing the context of the simulation. - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_INITNODE() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_INITNODE() virtual void initNode(Node* node); /// Execute one timestep. If dt is 0, the dt parameter in the graph will be used - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_ANIMATE() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_ANIMATE() virtual void animate(Node* root, SReal dt=0.0); /// Update the Visual Models: triggers the Mappings - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UPDATEVISUAL() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATEVISUAL() virtual void updateVisual(Node* root); /// Reset to initial state - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_RESET() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_RESET() virtual void reset(Node* root); /// Initialize the textures - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_INITTEXTURE() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_INITTEXTURE() virtual void initTextures(Node* root); /// Update contexts. Required before drawing the scene if root flags are modified. - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UPDATECONTEXT() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATECONTEXT() virtual void updateContext(Node* root); /// Update contexts. Required before drawing the scene if root flags are modified. - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UPDATEVISUALCONTEXT() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATEVISUALCONTEXT() virtual void updateVisualContext(Node* root); /** Compute the bounding box of the scene. @@ -143,7 +143,7 @@ class SOFA_SIMULATION_CORE_API Simulation * @warning MechanicalObjects with showObject member set to false are ignored * @sa computeTotalBBox(Node* root, SReal* minBBox, SReal* maxBBox) */ - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_COMPUTEBBOX() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_COMPUTEBBOX() virtual void computeBBox(Node* root, SReal* minBBox, SReal* maxBBox, bool init=true); /** Compute the bounding box of the scene. @@ -151,35 +151,35 @@ class SOFA_SIMULATION_CORE_API Simulation * @sa computeBBox(Node* root, SReal* minBBox, SReal* maxBBox, bool init=true) * @deprecated */ - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_COMPUTETOTALBBOX() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_COMPUTETOTALBBOX() virtual void computeTotalBBox(Node* root, SReal* minBBox, SReal* maxBBox); /// Render the scene - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_DRAW() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_DRAW() virtual void draw(sofa::core::visual::VisualParams* vparams, Node* root); /// Export a scene to an OBJ 3D Scene - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_EXPORTOBJ() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTOBJ() virtual void exportOBJ(Node* root, const char* filename, bool exportMTL = true); /// Print all object in the graph in XML format - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_EXPORTXML() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTXML() virtual void exportXML(Node* root, const char* fileName=nullptr); /// Print all objects in the graph in the given file (format is given by the filename extension) - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_EXPORTGRAPH() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTGRAPH() virtual void exportGraph(Node* root, const char* filename=nullptr); /// Dump the current state in the given stream - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_DUMPSTATE() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_DUMPSTATE() virtual void dumpState( Node* root, std::ofstream& out ); /// Load a scene from a file - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_LOAD() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_LOAD() virtual NodeSPtr load(const std::string& /* filename */, bool reload = false, const std::vector& sceneArgs = std::vector(0)); /// Unload a scene from a Node. - SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UNLOAD() + SOFA_ATTRIBUTE_DISABLED_SIMULATION_UNLOAD() virtual void unload(NodeSPtr root); /// create a new graph(or tree) and return its root node. diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/Visitor.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/Visitor.h index 90b09b3da91..6672c5ad82b 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/Visitor.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/Visitor.h @@ -160,12 +160,12 @@ class SOFA_SIMULATION_CORE_API Visitor /// Callback method called when decending to a new node. Recursion will stop if this method returns RESULT_PRUNE /// This version is offered a LocalStorage to store temporary data - SOFA_ATTRIBUTE_DEPRECATED_LOCALSTORAGE() + SOFA_ATTRIBUTE_DISABLED_LOCALSTORAGE() virtual Result processNodeTopDown(simulation::Node* node, LocalStorage*) { return processNodeTopDown(node); } /// Callback method called after child node have been processed and before going back to the parent node. /// This version is offered a LocalStorage to store temporary data - SOFA_ATTRIBUTE_DEPRECATED_LOCALSTORAGE() + SOFA_ATTRIBUTE_DISABLED_LOCALSTORAGE() virtual void processNodeBottomUp(simulation::Node* node, LocalStorage*) { processNodeBottomUp(node); } typedef sofa::core::objectmodel::Tag Tag; diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/VisitorScheduler.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/VisitorScheduler.h index 23b441ba0c6..0b6e386cbed 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/VisitorScheduler.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/VisitorScheduler.h @@ -23,49 +23,6 @@ #define SOFA_SIMULATION_VISITORSCHEDULER_H #include -SOFA_HEADER_DEPRECATED_VISITORSCHEDULER() - -#include -#include - -namespace sofa -{ - -namespace simulation -{ - -class Visitor; - -/// Abstract class defining custom schedule of action execution through the graph. -SOFA_ATTRIBUTE_DEPRECATED_VISITORSCHEDULER() -class SOFA_SIMULATION_CORE_API VisitorScheduler : public virtual sofa::core::objectmodel::BaseObject -{ -public: - SOFA_ABSTRACT_CLASS(VisitorScheduler, sofa::core::objectmodel::BaseObject); - - virtual void executeVisitor(simulation::Node* node, Visitor* act) = 0; - - /// Specify whether this scheduler is multi-threaded. - virtual bool isMultiThreaded() const { return false; } - -protected: - - VisitorScheduler() {} - - ~VisitorScheduler() override {} - - /// Execute the given action recursively - void doExecuteVisitor(simulation::Node* node, Visitor* act); - -private: - VisitorScheduler(const VisitorScheduler& n) ; - VisitorScheduler& operator=(const VisitorScheduler& n) ; - - -}; - -} // namespace simulation - -} // namespace sofa +SOFA_HEADER_DISABLED_VISITORSCHEDULER() #endif diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/config.h.in b/Sofa/framework/Simulation/Core/src/sofa/simulation/config.h.in index 9c80cf1bd83..490f7d35924 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/config.h.in +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/config.h.in @@ -50,208 +50,200 @@ #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_NODECREATENODE() +#define SOFA_ATTRIBUTE_DISABLED_NODECREATENODE() #else -#define SOFA_ATTRIBUTE_DEPRECATED_NODECREATENODE() \ - SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_NODECREATENODE() \ + SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_PRINT() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_PRINT() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_PRINT() \ - SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_PRINT() \ + SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::printNode") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_INIT() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_INIT() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_INIT() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_INIT() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::initRoot") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_INITNODE() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_INITNODE() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_INITNODE() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_INITNODE() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::init") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_EXPORTXML() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTXML() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_EXPORTXML() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTXML() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::exportInXML") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UPDATEVISUALCONTEXT() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATEVISUALCONTEXT() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UPDATEVISUALCONTEXT() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATEVISUALCONTEXT() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::updateVisualContext") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_ANIMATE() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_ANIMATE() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_ANIMATE() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_ANIMATE() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::animate") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UPDATEVISUAL() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATEVISUAL() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UPDATEVISUAL() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATEVISUAL() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::updateVisual") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_RESET() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_RESET() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_RESET() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_RESET() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::reset") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_INITTEXTURE() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_INITTEXTURE() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_INITTEXTURE() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_INITTEXTURE() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::initTextures") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UPDATECONTEXT() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATECONTEXT() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UPDATECONTEXT() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATECONTEXT() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::updateContext") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_COMPUTEBBOX() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_COMPUTEBBOX() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_COMPUTEBBOX() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_COMPUTEBBOX() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::computeBBox") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_COMPUTETOTALBBOX() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_COMPUTETOTALBBOX() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_COMPUTETOTALBBOX() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_COMPUTETOTALBBOX() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::computeTotalBBox") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_DRAW() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_DRAW() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_DRAW() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_DRAW() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::draw") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_EXPORTOBJ() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTOBJ() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_EXPORTOBJ() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTOBJ() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::exportOBJ") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_EXPORTGRAPH() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTGRAPH() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_EXPORTGRAPH() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTGRAPH() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::exportGraph") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_DUMPSTATE() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_DUMPSTATE() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_DUMPSTATE() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_DUMPSTATE() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::dumpState") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_LOAD() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_LOAD() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_LOAD() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_LOAD() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::load") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UNLOAD() +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_UNLOAD() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SIMULATION_UNLOAD() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SIMULATION_UNLOAD() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "Use sofa::simulation::node::unload") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_SETSIMULATIONRAWPOINTER() +#define SOFA_ATTRIBUTE_DISABLED_SETSIMULATIONRAWPOINTER() #else -#define SOFA_ATTRIBUTE_DEPRECATED_SETSIMULATIONRAWPOINTER() \ -SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_SETSIMULATIONRAWPOINTER() \ +SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "This function is no longer useful if Sofa.Simulation.Graph is loaded. Calling this function may result in a memory leak.") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_VISITORSCHEDULER() +#define SOFA_ATTRIBUTE_DISABLED_VISITORSCHEDULER() #else -#define SOFA_ATTRIBUTE_DEPRECATED_VISITORSCHEDULER() \ - SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_VISITORSCHEDULER() \ + SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "This class is no longer used") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_HEADER_DEPRECATED_VISITORSCHEDULER() -#else -#define SOFA_HEADER_DEPRECATED_VISITORSCHEDULER() \ - SOFA_DEPRECATED_HEADER_NOT_REPLACED("v23.12", "v24.06") -#endif // SOFA_BUILD_SOFA_SIMULATION_CORE - -#ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_PARALLELVISITORSCHEDULER() +#define SOFA_HEADER_DISABLED_VISITORSCHEDULER() #else -#define SOFA_ATTRIBUTE_DEPRECATED_PARALLELVISITORSCHEDULER() \ - SOFA_ATTRIBUTE_DEPRECATED( \ - "v23.12", "v24.06", "This class is no longer used") +#define SOFA_HEADER_DISABLED_VISITORSCHEDULER() \ + SOFA_DISABLED_HEADER_NOT_REPLACED("v23.12", "v24.06") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_HEADER_DEPRECATED_PARALLELVISITORSCHEDULER() +#define SOFA_HEADER_DISABLED_PARALLELVISITORSCHEDULER() #else -#define SOFA_HEADER_DEPRECATED_PARALLELVISITORSCHEDULER() \ - SOFA_DEPRECATED_HEADER_NOT_REPLACED("v23.12", "v24.06") +#define SOFA_HEADER_DISABLED_PARALLELVISITORSCHEDULER() \ + SOFA_DISABLED_HEADER_NOT_REPLACED("v23.12", "v24.06") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_HEADER_DEPRECATED_LOCALSTORAGE() -#define SOFA_ATTRIBUTE_DEPRECATED_LOCALSTORAGE() +#define SOFA_HEADER_DISABLED_LOCALSTORAGE() +#define SOFA_ATTRIBUTE_DISABLED_LOCALSTORAGE() #else -#define SOFA_HEADER_DEPRECATED_LOCALSTORAGE() \ - SOFA_DEPRECATED_HEADER_NOT_REPLACED("v23.12", "v24.06") -#define SOFA_ATTRIBUTE_DEPRECATED_LOCALSTORAGE() \ - SOFA_ATTRIBUTE_DEPRECATED("v23.12", "v24.06", "LocalStorage feature was seemingly not used so it has been deprecated.") +#define SOFA_HEADER_DISABLED_LOCALSTORAGE() \ + SOFA_DISABLED_HEADER_NOT_REPLACED("v23.12", "v24.06") +#define SOFA_ATTRIBUTE_DISABLED_LOCALSTORAGE() \ + SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "LocalStorage feature was seemingly not used so it has been removed.") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DEPRECATED_NODEDATA() +#define SOFA_ATTRIBUTE_DISABLED_NODEDATA() #else -#define SOFA_ATTRIBUTE_DEPRECATED_NODEDATA() \ -SOFA_ATTRIBUTE_DEPRECATED("v23.12", "v24.06", "rootdata/nodedata feature was never really used so it has been deprecated. All the related functions/members/variables won't do anything.") +#define SOFA_ATTRIBUTE_DISABLED_NODEDATA() \ +SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "rootdata/nodedata feature was never really used so it has been removed. All the related functions/members/variables won't do anything.") #endif // SOFA_BUILD_SOFA_SIMULATION_CORE diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h index ca6ae46f75b..43d7595e4fc 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h @@ -38,7 +38,7 @@ namespace sofa::simulation /// Set the (unique) simulation which controls the scene SOFA_SIMULATION_CORE_API - SOFA_ATTRIBUTE_DEPRECATED_SETSIMULATIONRAWPOINTER() + SOFA_ATTRIBUTE_DISABLED_SETSIMULATIONRAWPOINTER() void setSimulation(Simulation* s); /** Get the (unique) simulation which controls the scene. diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalVDotVisitor.cpp b/Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalVDotVisitor.cpp index fed001bfd58..245e7605741 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalVDotVisitor.cpp +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalVDotVisitor.cpp @@ -29,6 +29,7 @@ namespace sofa::simulation::mechanicalvisitor Visitor::Result MechanicalVDotVisitor::fwdMechanicalState(VisitorContext* ctx, core::behavior::BaseMechanicalState* mm) { + SOFA_UNUSED(ctx); if(m_total) *m_total += mm->vDot(this->params, a.getId(mm),b.getId(mm) ); diff --git a/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h b/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h index f4d75134c9d..2e5cf011432 100644 --- a/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h +++ b/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h @@ -54,6 +54,6 @@ class SOFA_SIMULATION_GRAPH_API DAGSimulation: public Simulation Automatically creates one if no Simulation has been set. */ SOFA_SIMULATION_GRAPH_API -SOFA_ATTRIBUTE_DEPRECATED_DAGSIMULATION_GETSIMULATION() +SOFA_ATTRIBUTE_DISABLED_DAGSIMULATION_GETSIMULATION() Simulation* getSimulation(); } // namespace sofa::simulation::graph diff --git a/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/config.h.in b/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/config.h.in index f579cc92353..ae6d345e27e 100644 --- a/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/config.h.in +++ b/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/config.h.in @@ -34,9 +34,9 @@ #endif #ifdef SOFA_BUILD_SOFA_SIMULATION_GRAPH -#define SOFA_ATTRIBUTE_DEPRECATED_DAGSIMULATION_GETSIMULATION() +#define SOFA_ATTRIBUTE_DISABLED_DAGSIMULATION_GETSIMULATION() #else -#define SOFA_ATTRIBUTE_DEPRECATED_DAGSIMULATION_GETSIMULATION() \ - SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED_DAGSIMULATION_GETSIMULATION() \ + SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", "") #endif // SOFA_BUILD_SOFA_SIMULATION_GRAPH diff --git a/Sofa/framework/Type/src/sofa/type/RGBAColor.h b/Sofa/framework/Type/src/sofa/type/RGBAColor.h index 637b0c86ddb..4fc799a732b 100644 --- a/Sofa/framework/Type/src/sofa/type/RGBAColor.h +++ b/Sofa/framework/Type/src/sofa/type/RGBAColor.h @@ -58,18 +58,18 @@ class SOFA_TYPE_API RGBAColor : m_components{ r, g, b, a } {} // compat - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() RGBAColor(const type::fixed_array& c); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() RGBAColor(const type::Vec4f& c); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() static RGBAColor fromVec4(const type::fixed_array& color); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() static RGBAColor fromVec4(const type::fixed_array& color); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() static RGBAColor fromVec4(const Vec4f& color); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() static RGBAColor fromVec4(const Vec4d& color); static RGBAColor fromString(const std::string& str); diff --git a/Sofa/framework/Type/src/sofa/type/config.h.in b/Sofa/framework/Type/src/sofa/type/config.h.in index cb02a404a1c..2e96645b371 100644 --- a/Sofa/framework/Type/src/sofa/type/config.h.in +++ b/Sofa/framework/Type/src/sofa/type/config.h.in @@ -43,10 +43,10 @@ #endif #ifdef SOFA_BUILD_SOFA_TYPE -#define SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() +#define SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() #else -#define SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() \ - SOFA_ATTRIBUTE_DEPRECATED( \ +#define SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() \ + SOFA_ATTRIBUTE_DISABLED( \ "v23.12", "v24.06", \ "RGBAColor does not inherit anymore from sofa::type::fixed_array. Use respective functions accordingly.") #endif From e886646ffd3170dbbcfbe3afb278eacd66ea4501 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Sat, 24 Feb 2024 14:03:53 +0100 Subject: [PATCH 02/18] removed files --- .../sofa/simulation/CactusStackStorage.cpp | 59 ----------------- .../simulation/ParallelVisitorScheduler.cpp | 64 ------------------- .../src/sofa/simulation/VisitorScheduler.cpp | 40 ------------ 3 files changed, 163 deletions(-) delete mode 100644 Sofa/framework/Simulation/Core/src/sofa/simulation/CactusStackStorage.cpp delete mode 100644 Sofa/framework/Simulation/Core/src/sofa/simulation/ParallelVisitorScheduler.cpp delete mode 100644 Sofa/framework/Simulation/Core/src/sofa/simulation/VisitorScheduler.cpp diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/CactusStackStorage.cpp b/Sofa/framework/Simulation/Core/src/sofa/simulation/CactusStackStorage.cpp deleted file mode 100644 index d1a2ec664fb..00000000000 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/CactusStackStorage.cpp +++ /dev/null @@ -1,59 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#include - -namespace sofa -{ - -namespace simulation -{ - -void CactusStackStorage::push(void* data) -{ - stack.push(data); -} -void* CactusStackStorage::pop() -{ - if (stack.empty()) return nullptr; - void* data = stack.top(); - stack.pop(); - return data; -} -void* CactusStackStorage::top() const -{ - if (stack.empty()) - if (up) - return up->top(); - else - return nullptr; - else - return stack.top(); -} -bool CactusStackStorage::empty() const -{ - return stack.empty() && (up == nullptr || up->empty()); -} - -} // namespace simulation - -} // namespace sofa - diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/ParallelVisitorScheduler.cpp b/Sofa/framework/Simulation/Core/src/sofa/simulation/ParallelVisitorScheduler.cpp deleted file mode 100644 index 331d1af550f..00000000000 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/ParallelVisitorScheduler.cpp +++ /dev/null @@ -1,64 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#include -#include -#include - -namespace sofa -{ - -namespace simulation -{ - - -ParallelVisitorScheduler::ParallelVisitorScheduler(bool propagate) - : propagate(propagate) -{ -} - -void ParallelVisitorScheduler::executeVisitor(Node* node, simulation::Visitor* action) -{ - // first make sure all child nodes have schedulers - if (propagate) - recursiveClone(node); - // then execute sequentially non-threadsafe actions - if (!action->isThreadSafe()) - doExecuteVisitor(node, action); - else // or launch Cilk tasks for threadsafe actions - { - executeParallelVisitor(node, action); - } -} - -void ParallelVisitorScheduler::recursiveClone(Node* node) -{ - node->addObject( this->clone() ); - - for(Node::ChildIterator it = node->child.begin(); it != node->child.end(); ++it) - recursiveClone(it->get()); - -} - -} // namespace simulation - -} // namespace sofa - diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/VisitorScheduler.cpp b/Sofa/framework/Simulation/Core/src/sofa/simulation/VisitorScheduler.cpp deleted file mode 100644 index b90dd4f48a1..00000000000 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/VisitorScheduler.cpp +++ /dev/null @@ -1,40 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#include -#include - -namespace sofa -{ - -namespace simulation -{ - -/// Execute the given action recursively -void VisitorScheduler::doExecuteVisitor(simulation::Node* node, Visitor* act) -{ - node->doExecuteVisitor(act); -} - -} // namespace simulation - -} // namespace sofa - From 99f3c088dc34f56797a1aed7bfc320b713928b85 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Sat, 24 Feb 2024 14:05:25 +0100 Subject: [PATCH 03/18] forgotten Axis.h --- Sofa/GL/src/sofa/gl/Axis.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Sofa/GL/src/sofa/gl/Axis.h b/Sofa/GL/src/sofa/gl/Axis.h index 129a16997e2..05c3c432cc1 100644 --- a/Sofa/GL/src/sofa/gl/Axis.h +++ b/Sofa/GL/src/sofa/gl/Axis.h @@ -66,19 +66,19 @@ class SOFA_GL_API Axis static void draw(const type::Vec3& center, const double orient[4][4], SReal length = 1.0_sreal, const type::RGBAColor& colorX = type::RGBAColor::red(), const type::RGBAColor& colorY = type::RGBAColor::green(), const type::RGBAColor& colorZ = type::RGBAColor::red()); static void draw(const double* mat, SReal length = 1.0_sreal, const type::RGBAColor& colorX = type::RGBAColor::red(), const type::RGBAColor& colorY = type::RGBAColor::green(), const type::RGBAColor& colorZ = type::RGBAColor::red()); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() void draw(const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() static void draw(const type::Vec3& center, const Quaternion& orient, const type::Vec3& length, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() static void draw(const type::Vec3& center, const double orient[4][4], const type::Vec3& length, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() void draw(const double* mat, const type::Vec3& length, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() static void draw(const type::Vec3& center, const Quaternion& orient, SReal length = 1.0_sreal, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() static void draw(const type::Vec3& center, const double orient[4][4], SReal length = 1.0_sreal, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); - SOFA_ATTRIBUTE_DEPRECATED__RGBACOLOR_AS_FIXEDARRAY() + SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() static void draw(const double* mat, SReal length = 1.0_sreal, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); From b8563192b6cd1600f313218c89e2e6a5af689756 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Sat, 24 Feb 2024 15:10:13 +0100 Subject: [PATCH 04/18] Complete SOFA_ATTRIBUTE_DEPRECATED ... v24.06 into DISABLED --- .../topology/container/dynamic/EdgeSetGeometryAlgorithms.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h b/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h index 40d93e62be8..e0168bd2d82 100644 --- a/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h +++ b/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h @@ -167,10 +167,10 @@ class EdgeSetGeometryAlgorithms : public PointSetGeometryAlgorithms // compute barycentric coefficients - SOFA_ATTRIBUTE_DEPRECATED("v23.12", "v24.06", "Use sofa::component::topology::container::dynamic::EdgeSetGeometryAlgorithms::computeEdgeBarycentricCoordinates") + SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "Use sofa::component::topology::container::dynamic::EdgeSetGeometryAlgorithms::computeEdgeBarycentricCoordinates") sofa::type::vector< SReal > compute2PointsBarycoefs(const sofa::type::Vec<3, Real> &p, PointID ind_p1, PointID ind_p2) const; - SOFA_ATTRIBUTE_DEPRECATED("v23.12", "v24.06", "Use sofa::component::topology::container::dynamic::EdgeSetGeometryAlgorithms::computeEdgeBarycentricCoordinates with useRestPosition = true") + SOFA_ATTRIBUTE_DEPRSOFA_ATTRIBUTE_DISABLEDECATED("v23.12", "v24.06", "Use sofa::component::topology::container::dynamic::EdgeSetGeometryAlgorithms::computeEdgeBarycentricCoordinates with useRestPosition = true") sofa::type::vector< SReal > computeRest2PointsBarycoefs(const sofa::type::Vec<3, Real> &p, PointID ind_p1, PointID ind_p2) const; SOFA_ATTRIBUTE_DISABLED("v23.12", "v23.12", "Method writeMSHfile has been disabled. To export the topology as .gmsh file, use the sofa::component::io::mesh::MeshExporter.") From b8d210d80b715b3e9388e4997e0c43536786fbf5 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Sat, 24 Feb 2024 15:15:00 +0100 Subject: [PATCH 05/18] start removing ATTRIBUTE_DISABLED v23.06 and fix EdgeSetGeometryAlgorithms --- .../src/sofa/component/mapping/nonlinear/RigidMapping.h | 2 -- .../topology/container/dynamic/EdgeSetGeometryAlgorithms.h | 2 +- .../Common/src/sofa/simulation/common/SceneLoaderXML.h | 3 --- .../Simulation/Common/src/sofa/simulation/common/xml/XML.h | 3 --- 4 files changed, 1 insertion(+), 9 deletions(-) diff --git a/Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/RigidMapping.h b/Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/RigidMapping.h index 66b46fcddab..8bd3d0fa7fc 100644 --- a/Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/RigidMapping.h +++ b/Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/RigidMapping.h @@ -112,8 +112,6 @@ class RigidMapping : public core::Mapping, public NonLinearMappingDat Data d_globalToLocalCoords; ///< are the output DOFs initially expressed in global coordinates SOFA_ATTRIBUTE_DISABLED("v23.06", "v23.12", "Use d_globalToLocalCoords instead") DeprecatedAndRemoved globalToLocalCoords; - SOFA_ATTRIBUTE_DISABLED("v23.06", "v23.06", "Use d_geometricStiffness instead") DeprecatedAndRemoved geometricStiffness; - protected: RigidMapping(); virtual ~RigidMapping() {} diff --git a/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h b/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h index e0168bd2d82..cf6516b3ee2 100644 --- a/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h +++ b/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h @@ -170,7 +170,7 @@ class EdgeSetGeometryAlgorithms : public PointSetGeometryAlgorithms SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "Use sofa::component::topology::container::dynamic::EdgeSetGeometryAlgorithms::computeEdgeBarycentricCoordinates") sofa::type::vector< SReal > compute2PointsBarycoefs(const sofa::type::Vec<3, Real> &p, PointID ind_p1, PointID ind_p2) const; - SOFA_ATTRIBUTE_DEPRSOFA_ATTRIBUTE_DISABLEDECATED("v23.12", "v24.06", "Use sofa::component::topology::container::dynamic::EdgeSetGeometryAlgorithms::computeEdgeBarycentricCoordinates with useRestPosition = true") + SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "Use sofa::component::topology::container::dynamic::EdgeSetGeometryAlgorithms::computeEdgeBarycentricCoordinates with useRestPosition = true") sofa::type::vector< SReal > computeRest2PointsBarycoefs(const sofa::type::Vec<3, Real> &p, PointID ind_p1, PointID ind_p2) const; SOFA_ATTRIBUTE_DISABLED("v23.12", "v23.12", "Method writeMSHfile has been disabled. To export the topology as .gmsh file, use the sofa::component::io::mesh::MeshExporter.") diff --git a/Sofa/framework/Simulation/Common/src/sofa/simulation/common/SceneLoaderXML.h b/Sofa/framework/Simulation/Common/src/sofa/simulation/common/SceneLoaderXML.h index cdf133c0502..05de2da5f8d 100644 --- a/Sofa/framework/Simulation/Common/src/sofa/simulation/common/SceneLoaderXML.h +++ b/Sofa/framework/Simulation/Common/src/sofa/simulation/common/SceneLoaderXML.h @@ -52,9 +52,6 @@ class SOFA_SIMULATION_COMMON_API SceneLoaderXML : public SceneLoader /// load a scene from memory (typically : an xml into a string) static NodeSPtr loadFromMemory(const char* filename, const char* data); - SOFA_ATTRIBUTE_DISABLED("v22.12 (PR#)", "v23.06", "loadFromMemory with 3 arguments specifying the size has been deprecated. Use loadFromMemory(const char* filename, const char* data).") - static NodeSPtr loadFromMemory( const char *filename, const char *data, unsigned int size ) = delete; - /// get the file type description virtual std::string getFileTypeDesc() override; diff --git a/Sofa/framework/Simulation/Common/src/sofa/simulation/common/xml/XML.h b/Sofa/framework/Simulation/Common/src/sofa/simulation/common/xml/XML.h index 74111af1e2a..a635ce040e7 100644 --- a/Sofa/framework/Simulation/Common/src/sofa/simulation/common/xml/XML.h +++ b/Sofa/framework/Simulation/Common/src/sofa/simulation/common/xml/XML.h @@ -37,9 +37,6 @@ SOFA_SIMULATION_COMMON_API BaseElement* processXMLLoading(const char *filename, SOFA_SIMULATION_COMMON_API BaseElement* loadFromFile(const char *filename); -SOFA_ATTRIBUTE_DISABLED("v22.12 (PR#)", "v23.06", "loadFromMemory with 3 arguments specifying the size has been deprecated. Use loadFromMemory(const char* filename, const char* data).") -BaseElement* loadFromMemory(const char* filename, const char* data, unsigned int size) = delete; - SOFA_SIMULATION_COMMON_API BaseElement* loadFromMemory(const char *filename, const char *data); From 057ae0119ba03704cdc72502a9764ee6136da387 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Sat, 24 Feb 2024 15:37:31 +0100 Subject: [PATCH 06/18] delete all v24.06 disabled functions --- .../dynamic/EdgeSetGeometryAlgorithms.h | 4 +- .../dynamic/EdgeSetGeometryAlgorithms.inl | 15 --- Sofa/GL/src/sofa/gl/Axis.cpp | 35 ------ Sofa/GL/src/sofa/gl/Axis.h | 14 +-- .../Core/src/sofa/core/MechanicalParams.h | 4 +- .../Helper/src/sofa/helper/ColorMap.cpp | 14 --- .../Helper/src/sofa/helper/ColorMap.h | 3 - .../Helper/src/sofa/helper/LCPcalc.cpp | 20 ---- .../Helper/src/sofa/helper/LCPcalc.h | 8 +- .../src/sofa/helper/io/MeshTopologyLoader.cpp | 7 -- .../src/sofa/helper/io/MeshTopologyLoader.h | 2 +- .../sofa/simulation/BaseMechanicalVisitor.cpp | 15 --- .../sofa/simulation/BaseMechanicalVisitor.h | 12 +- .../Core/src/sofa/simulation/Simulation.cpp | 110 ------------------ .../Core/src/sofa/simulation/Simulation.h | 36 +++--- .../Core/src/sofa/simulation/Visitor.h | 4 +- .../Simulation/Core/src/sofa/simulation/fwd.h | 2 +- .../sofa/simulation/graph/DAGSimulation.cpp | 6 - .../src/sofa/simulation/graph/DAGSimulation.h | 2 +- .../Type/src/sofa/type/RGBAColor.cpp | 30 ----- Sofa/framework/Type/src/sofa/type/RGBAColor.h | 12 +- 21 files changed, 50 insertions(+), 305 deletions(-) diff --git a/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h b/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h index cf6516b3ee2..846c1a278c3 100644 --- a/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h +++ b/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h @@ -168,10 +168,10 @@ class EdgeSetGeometryAlgorithms : public PointSetGeometryAlgorithms // compute barycentric coefficients SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "Use sofa::component::topology::container::dynamic::EdgeSetGeometryAlgorithms::computeEdgeBarycentricCoordinates") - sofa::type::vector< SReal > compute2PointsBarycoefs(const sofa::type::Vec<3, Real> &p, PointID ind_p1, PointID ind_p2) const; + sofa::type::vector< SReal > compute2PointsBarycoefs(const sofa::type::Vec<3, Real> &p, PointID ind_p1, PointID ind_p2) const = delete; SOFA_ATTRIBUTE_DISABLED("v23.12", "v24.06", "Use sofa::component::topology::container::dynamic::EdgeSetGeometryAlgorithms::computeEdgeBarycentricCoordinates with useRestPosition = true") - sofa::type::vector< SReal > computeRest2PointsBarycoefs(const sofa::type::Vec<3, Real> &p, PointID ind_p1, PointID ind_p2) const; + sofa::type::vector< SReal > computeRest2PointsBarycoefs(const sofa::type::Vec<3, Real> &p, PointID ind_p1, PointID ind_p2) const = delete; SOFA_ATTRIBUTE_DISABLED("v23.12", "v23.12", "Method writeMSHfile has been disabled. To export the topology as .gmsh file, use the sofa::component::io::mesh::MeshExporter.") void writeMSHfile(const char *filename) const {msg_deprecated() << "Method writeMSHfile has been disabled. To export the topology as " << filename << " file, use the sofa::component::io::mesh::MeshExporter."; } diff --git a/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.inl b/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.inl index d98eb27f608..3514eb50933 100644 --- a/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.inl +++ b/Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.inl @@ -817,19 +817,4 @@ bool EdgeSetGeometryAlgorithms::mustComputeBBox() const return ( (this->m_topology->getNbEdges() != 0 && (d_drawEdges.getValue() || showEdgeIndices.getValue())) || Inherit1::mustComputeBBox() ); } - -template -sofa::type::vector< SReal > EdgeSetGeometryAlgorithms::compute2PointsBarycoefs(const sofa::type::Vec<3, Real> &p, PointID ind_p1, PointID ind_p2) const -{ - return computeEdgeBarycentricCoordinates(p, ind_p1, ind_p2); -} - - -template -sofa::type::vector< SReal > EdgeSetGeometryAlgorithms::computeRest2PointsBarycoefs(const sofa::type::Vec<3, Real> &p, PointID ind_p1, PointID ind_p2) const -{ - return computeEdgeBarycentricCoordinates(p, ind_p1, ind_p2, true); -} - - } //namespace sofa::component::topology::container::dynamic diff --git a/Sofa/GL/src/sofa/gl/Axis.cpp b/Sofa/GL/src/sofa/gl/Axis.cpp index 751d7d4cd34..790bb5610b1 100644 --- a/Sofa/GL/src/sofa/gl/Axis.cpp +++ b/Sofa/GL/src/sofa/gl/Axis.cpp @@ -389,39 +389,4 @@ void Axis::draw(const type::Vec3& p1, const type::Vec3& p2, const double& r1, co } -void Axis::draw(const type::Vec4f& colorX, const type::Vec4f& colorY, const type::Vec4f& colorZ) -{ - draw(type::RGBAColor::fromVec4(colorX), type::RGBAColor::fromVec4(colorY), type::RGBAColor::fromVec4(colorZ)); -} - -void Axis::draw(const type::Vec3& center, const Quaternion& orient, const type::Vec3& length, const type::Vec4f& colorX, const type::Vec4f& colorY, const type::Vec4f& colorZ) -{ - draw(center, orient, length, type::RGBAColor::fromVec4(colorX), type::RGBAColor::fromVec4(colorY), type::RGBAColor::fromVec4(colorZ)); -} - -void Axis::draw(const type::Vec3& center, const double orient[4][4], const type::Vec3& length, const type::Vec4f& colorX, const type::Vec4f& colorY, const type::Vec4f& colorZ) -{ - draw(center, orient, length, type::RGBAColor::fromVec4(colorX), type::RGBAColor::fromVec4(colorY), type::RGBAColor::fromVec4(colorZ)); -} - -void Axis::draw(const double* mat, const type::Vec3& length, const type::Vec4f& colorX, const type::Vec4f& colorY, const type::Vec4f& colorZ) -{ - draw(mat, length, type::RGBAColor::fromVec4(colorX), type::RGBAColor::fromVec4(colorY), type::RGBAColor::fromVec4(colorZ)); -} - -void Axis::draw(const type::Vec3& center, const Quaternion& orient, SReal length, const type::Vec4f& colorX, const type::Vec4f& colorY, const type::Vec4f& colorZ) -{ - draw(center, orient, length, type::RGBAColor::fromVec4(colorX), type::RGBAColor::fromVec4(colorY), type::RGBAColor::fromVec4(colorZ)); -} - -void Axis::draw(const type::Vec3& center, const double orient[4][4], SReal length, const type::Vec4f& colorX, const type::Vec4f& colorY, const type::Vec4f& colorZ) -{ - draw(center, orient, length, type::RGBAColor::fromVec4(colorX), type::RGBAColor::fromVec4(colorY), type::RGBAColor::fromVec4(colorZ)); -} - -void Axis::draw(const double* mat, SReal length, const type::Vec4f& colorX, const type::Vec4f& colorY, const type::Vec4f& colorZ) -{ - draw(mat, length, type::RGBAColor::fromVec4(colorX), type::RGBAColor::fromVec4(colorY), type::RGBAColor::fromVec4(colorZ)); -} - } // namespace sofa::gl diff --git a/Sofa/GL/src/sofa/gl/Axis.h b/Sofa/GL/src/sofa/gl/Axis.h index 05c3c432cc1..f5d83e21729 100644 --- a/Sofa/GL/src/sofa/gl/Axis.h +++ b/Sofa/GL/src/sofa/gl/Axis.h @@ -67,19 +67,19 @@ class SOFA_GL_API Axis static void draw(const double* mat, SReal length = 1.0_sreal, const type::RGBAColor& colorX = type::RGBAColor::red(), const type::RGBAColor& colorY = type::RGBAColor::green(), const type::RGBAColor& colorZ = type::RGBAColor::red()); SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - void draw(const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); + void draw(const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - static void draw(const type::Vec3& center, const Quaternion& orient, const type::Vec3& length, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); + static void draw(const type::Vec3& center, const Quaternion& orient, const type::Vec3& length, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - static void draw(const type::Vec3& center, const double orient[4][4], const type::Vec3& length, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); + static void draw(const type::Vec3& center, const double orient[4][4], const type::Vec3& length, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - void draw(const double* mat, const type::Vec3& length, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); + void draw(const double* mat, const type::Vec3& length, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - static void draw(const type::Vec3& center, const Quaternion& orient, SReal length = 1.0_sreal, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); + static void draw(const type::Vec3& center, const Quaternion& orient, SReal length = 1.0_sreal, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - static void draw(const type::Vec3& center, const double orient[4][4], SReal length = 1.0_sreal, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); + static void draw(const type::Vec3& center, const double orient[4][4], SReal length = 1.0_sreal, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - static void draw(const double* mat, SReal length = 1.0_sreal, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)); + static void draw(const double* mat, SReal length = 1.0_sreal, const type::Vec4f& colorX = type::Vec4f(1, 0, 0, 1), const type::Vec4f& colorY = type::Vec4f(0, 1, 0, 1), const type::Vec4f& colorZ = type::Vec4f(0, 0, 1, 1)) = delete; //Draw a nice vector (cylinder + cone) given 2 points and a radius (used to draw the cylinder) diff --git a/Sofa/framework/Core/src/sofa/core/MechanicalParams.h b/Sofa/framework/Core/src/sofa/core/MechanicalParams.h index 21a37941a73..32209f742b0 100644 --- a/Sofa/framework/Core/src/sofa/core/MechanicalParams.h +++ b/Sofa/framework/Core/src/sofa/core/MechanicalParams.h @@ -66,7 +66,7 @@ class SOFA_CORE_API MechanicalParams : public sofa::core::ExecParams /// @} SOFA_ATTRIBUTE_DISABLED__SYMMETRICMATRIX("Use supportOnlySymmetricMatrix instead.") - bool symmetricMatrix() const { return supportOnlySymmetricMatrix(); } + bool symmetricMatrix() const = delete; /// Symmetric matrix flag, for solvers specialized on symmetric matrices bool supportOnlySymmetricMatrix() const { return m_supportOnlySymmetricMatrix; } @@ -163,7 +163,7 @@ class SOFA_CORE_API MechanicalParams : public sofa::core::ExecParams MechanicalParams& setKFactor(SReal v) { m_kFactor = v; return *this; } SOFA_ATTRIBUTE_DISABLED__SYMMETRICMATRIX("Use setSupportOnlySymmetricMatrix instead.") - MechanicalParams& setSymmetricMatrix(bool b) { return setSupportOnlySymmetricMatrix(b); } + MechanicalParams& setSymmetricMatrix(bool b) = delete; /// Set the flag (for implicit schemes) specifying if solvers are only specialized for symmetric matrices MechanicalParams& setSupportOnlySymmetricMatrix(bool b) { m_supportOnlySymmetricMatrix = b; return *this; } diff --git a/Sofa/framework/Helper/src/sofa/helper/ColorMap.cpp b/Sofa/framework/Helper/src/sofa/helper/ColorMap.cpp index 0fc914d5518..423cbadbed7 100644 --- a/Sofa/framework/Helper/src/sofa/helper/ColorMap.cpp +++ b/Sofa/framework/Helper/src/sofa/helper/ColorMap.cpp @@ -325,20 +325,6 @@ void ColorMap::reinit() } } -// Color space conversion routines - -// Hue/Saturation/Value -> Red/Green/Blue -// h,s,v ∈ [0,1] -// r,g,b ∈ [0,1] -// Ref: Alvy Ray Smith, Color Gamut Transform Pairs, SIGGRAPH '78 -type::Vec3f ColorMap::hsv2rgb(const type::Vec3f&hsv) -{ - auto rgba = type::RGBAColor::fromHSVA( hsv[0] * 360, hsv[1],hsv[2], 1.0f ); - - return { rgba[0], rgba[1], rgba[2] }; -} - - } // namespace component } // namespace sofa diff --git a/Sofa/framework/Helper/src/sofa/helper/ColorMap.h b/Sofa/framework/Helper/src/sofa/helper/ColorMap.h index 9139b85907e..cb4d59ad28b 100644 --- a/Sofa/framework/Helper/src/sofa/helper/ColorMap.h +++ b/Sofa/framework/Helper/src/sofa/helper/ColorMap.h @@ -108,9 +108,6 @@ class SOFA_HELPER_API ColorMap } } - SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - type::Vec3f hsv2rgb(const type::Vec3f& hsv); - inline friend std::ostream& operator << (std::ostream& out, const ColorMap& m ) { out << m.entries; diff --git a/Sofa/framework/Helper/src/sofa/helper/LCPcalc.cpp b/Sofa/framework/Helper/src/sofa/helper/LCPcalc.cpp index 492e724a9ed..35e3a1bbbe4 100644 --- a/Sofa/framework/Helper/src/sofa/helper/LCPcalc.cpp +++ b/Sofa/framework/Helper/src/sofa/helper/LCPcalc.cpp @@ -220,11 +220,6 @@ void LCP::solveNLCP(bool convergenceTest, std::vector* residuals, std::ve } -int resoudreLCP(int dim, SReal * q, SReal ** M, SReal * res) -{ - return solveLCP(dim, q, M, res); -} - //#include "mex.h" /* Resoud un LCP écrit sous la forme U = q + M.F * dim : dimension du pb @@ -411,21 +406,6 @@ int solveLCP(int dim, SReal * q, SReal ** M, SReal * res) return result; } -void afficheSyst(SReal* q, SReal** M, int* base, SReal** mat, int dim) -{ - printSyst(q, M, base, mat, dim); -} - -void afficheLCP(SReal* q, SReal** M, int dim) -{ - printLCP(q, M, dim); -} - -void afficheLCP(SReal* q, SReal** M, SReal* f, int dim) -{ - printLCP(q, M, f, dim); -} - void printSyst(SReal *q,SReal **M, int *base, SReal **mat, int dim) { diff --git a/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h b/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h index ea5b6a9e8d7..b19244f53c1 100644 --- a/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h +++ b/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h @@ -99,13 +99,13 @@ inline SOFA_HELPER_API SReal absError(SReal f1x, SReal f1y, SReal f1z, SReal f2x {return sqrt ((f2x-f1x)*(f2x-f1x) + (f2y-f1y)*(f2y-f1y) + (f2z-f1z)*(f2z-f1z));} -SOFA_HELPER_API SOFA_LCPCALC_RESOUDRELCP_DISABLED() int resoudreLCP(int, SReal *, SReal **, SReal *); +SOFA_HELPER_API SOFA_LCPCALC_RESOUDRELCP_DISABLED() int resoudreLCP(int, SReal *, SReal **, SReal *) = delete; SOFA_HELPER_API int solveLCP(int, SReal *, SReal **, SReal *); -SOFA_HELPER_API SOFA_LCPCALC_AFFICHESYST_DISABLED() void afficheSyst(SReal *q,SReal **M, int *base, SReal **mat, int dim); -SOFA_HELPER_API SOFA_LCPCALC_AFFICHELCP_DISABLED() void afficheLCP(SReal *q, SReal **M, int dim); -SOFA_HELPER_API SOFA_LCPCALC_AFFICHELCP_DISABLED() void afficheLCP(SReal *q, SReal **M, SReal *f, int dim); +SOFA_HELPER_API SOFA_LCPCALC_AFFICHESYST_DISABLED() void afficheSyst(SReal *q,SReal **M, int *base, SReal **mat, int dim) = delete; +SOFA_HELPER_API SOFA_LCPCALC_AFFICHELCP_DISABLED() void afficheLCP(SReal *q, SReal **M, int dim) = delete; +SOFA_HELPER_API SOFA_LCPCALC_AFFICHELCP_DISABLED() void afficheLCP(SReal *q, SReal **M, SReal *f, int dim) = delete; SOFA_HELPER_API void printSyst(SReal* q, SReal** M, int* base, SReal** mat, int dim); SOFA_HELPER_API void printLCP(SReal* q, SReal** M, int dim); SOFA_HELPER_API void printLCP(SReal* q, SReal** M, SReal* f, int dim); diff --git a/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.cpp b/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.cpp index f2149dc3f6d..d983bc73970 100644 --- a/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.cpp +++ b/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.cpp @@ -150,13 +150,6 @@ bool MeshTopologyLoader::loadGmsh(const char *filename) return addMeshtoTopology(); } -bool MeshTopologyLoader::loadMesh(std::ifstream &file) -{ - SOFA_UNUSED(file); - return false; -} - - bool MeshTopologyLoader::loadVtk(const char *filename) { m_mesh = helper::io::Mesh::Create("vtu", filename); diff --git a/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.h b/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.h index b6db41c9d29..03f866da799 100644 --- a/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.h +++ b/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.h @@ -66,7 +66,7 @@ class SOFA_HELPER_API MeshTopologyLoader bool loadVtk(const char *filename); SOFA_MESHTOPOLOGYLOADER_LOADMESHFUNCTION_DISABLED() - bool loadMesh(std::ifstream &file); + bool loadMesh(std::ifstream &file) = delete; // will take all data from loaded into @see m_mesh and add it to the current topology using methods api. bool addMeshtoTopology(); diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.cpp b/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.cpp index 46925012b52..c39855e9e8e 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.cpp +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.cpp @@ -197,21 +197,6 @@ Visitor::Result BaseMechanicalVisitor::fwdInteractionConstraint(VisitorContext* return fwdConstraintSet(ctx->node, c); } - -Visitor::Result BaseMechanicalVisitor::processNodeTopDown(simulation::Node* node, LocalStorage* stack) -{ - SOFA_UNUSED(stack); - return processNodeTopDown(node); -} - - -void BaseMechanicalVisitor::processNodeBottomUp(simulation::Node* node, LocalStorage* stack) -{ - SOFA_UNUSED(stack); - return processNodeBottomUp(node); -} - - #ifdef SOFA_DUMP_VISITOR_INFO void BaseMechanicalVisitor::printReadVectors(core::behavior::BaseMechanicalState* mm) diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.h index e2c0a5dc9e6..3da6463d6dd 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/BaseMechanicalVisitor.h @@ -56,16 +56,16 @@ class SOFA_SIMULATION_CORE_API BaseMechanicalVisitor : public Visitor BaseMechanicalVisitor(const sofa::core::ExecParams* params); SOFA_ATTRIBUTE_DISABLED_NODEDATA() - virtual bool readNodeData() const { return false; }; + virtual bool readNodeData() const = delete; SOFA_ATTRIBUTE_DISABLED_NODEDATA() - virtual bool writeNodeData() const { return false; }; + virtual bool writeNodeData() const = delete; SOFA_ATTRIBUTE_DISABLED_NODEDATA() - virtual void setNodeData(simulation::Node* /*node*/, SReal* /*nodeData*/, const SReal* /*parentData*/) {}; + virtual void setNodeData(simulation::Node* /*node*/, SReal* /*nodeData*/, const SReal* /*parentData*/) = delete; SOFA_ATTRIBUTE_DISABLED_NODEDATA() - virtual void addNodeData(simulation::Node* /*node*/, SReal* /*parentData*/, const SReal* /*nodeData*/) {}; + virtual void addNodeData(simulation::Node* /*node*/, SReal* /*parentData*/, const SReal* /*nodeData*/) = delete; /// Return a class name for this visitor /// Only used for debugging / profiling purposes @@ -85,7 +85,7 @@ class SOFA_SIMULATION_CORE_API BaseMechanicalVisitor : public Visitor /// Parallel version of processNodeTopDown. /// This method calls the fwd* methods during the forward traversal. You typically do not overload it. SOFA_ATTRIBUTE_DISABLED_LOCALSTORAGE() - Result processNodeTopDown(simulation::Node * node, LocalStorage * stack) override; + virtual Result processNodeTopDown(simulation::Node * node, LocalStorage * stack) override = delete; /// Process the OdeSolver virtual Result fwdOdeSolver(simulation::Node* /*node*/, sofa::core::behavior::OdeSolver* /*solver*/); @@ -176,7 +176,7 @@ class SOFA_SIMULATION_CORE_API BaseMechanicalVisitor : public Visitor /// Parallel version of processNodeBottomUp. /// This method calls the bwd* methods during the backward traversal. You typically do not overload it. SOFA_ATTRIBUTE_DISABLED_LOCALSTORAGE() - void processNodeBottomUp(simulation::Node* /*node*/, LocalStorage * stack) override; + virtual void processNodeBottomUp(simulation::Node* node, LocalStorage * stack) override = delete; /// Process the BaseMechanicalState when it is not mapped from parent level virtual void bwdMechanicalState(simulation::Node* /*node*/,sofa::core::behavior::BaseMechanicalState* /*mm*/); diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.cpp b/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.cpp index 9dbb0bf8e27..e439694dd76 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.cpp +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.cpp @@ -480,122 +480,12 @@ Simulation::Simulation() sofa::helper::printUninitializedLibraryWarning("Sofa.Simulation.Core", "sofa::simulation::common::init()"); } - Simulation::~Simulation() {} -void setSimulation ( Simulation* s ) -{ - SOFA_UNUSED(s); -} - Simulation* getSimulation() { return Simulation::theSimulation.get(); } -/// Print all object in the graph -void Simulation::print ( Node* root ) -{ - sofa::simulation::node::print(root); -} - -/// Print all object in the graph -void Simulation::exportXML ( Node* root, const char* fileName ) -{ - sofa::simulation::node::exportInXML(root, fileName); -} - -/// Print all object in the graph -void Simulation::exportGraph ( Node* root, const char* filename ) -{ - sofa::simulation::node::exportGraph(root, filename); -} - -/// Initialize the scene. -void Simulation::init ( Node* root ) -{ - sofa::simulation::node::initRoot(root); -} - -void Simulation::initNode( Node* node) -{ - sofa::simulation::node::init(node); -} - -/// Execute one timestep. If do is 0, the dt parameter in the graph will be used -void Simulation::animate ( Node* root, SReal dt ) -{ - sofa::simulation::node::animate(root, dt); -} - -void Simulation::updateVisual ( Node* root) -{ - sofa::simulation::node::updateVisual(root); -} - -/// Reset to initial state -void Simulation::reset ( Node* root ) -{ - sofa::simulation::node::reset(root); -} - -/// Initialize the textures -void Simulation::initTextures ( Node* root ) -{ - sofa::simulation::node::initTextures(root); -} - -/// Compute the bounding box of the scene. -void Simulation::computeBBox ( Node* root, SReal* minBBox, SReal* maxBBox, bool init ) -{ - sofa::simulation::node::computeBBox(root, minBBox, maxBBox, init); -} - -/// Compute the bounding box of the scene. -void Simulation::computeTotalBBox ( Node* root, SReal* minBBox, SReal* maxBBox ) -{ - sofa::simulation::node::computeTotalBBox(root, minBBox, maxBBox); -} - -/// Update contexts. Required before drawing the scene if root flags are modified. -void Simulation::updateContext ( Node* root ) -{ - sofa::simulation::node::updateContext(root); -} - -/// Update only Visual contexts. Required before drawing the scene if root flags are modified.( can filter by specifying a specific element) -void Simulation::updateVisualContext (Node* root) -{ - sofa::simulation::node::updateVisualContext(root); -} - -/// Render the scene -void Simulation::draw ( sofa::core::visual::VisualParams* vparams, Node* root ) -{ - sofa::simulation::node::draw(vparams, root); -} - -/// Export a scene to an OBJ 3D Scene -void Simulation::exportOBJ ( Node* root, const char* filename, bool exportMTL ) -{ - sofa::simulation::node::exportOBJ(root, filename, exportMTL); -} - -void Simulation::dumpState ( Node* root, std::ofstream& out ) -{ - sofa::simulation::node::dumpState(root, out); -} - -/// Load a scene from a file -Node::SPtr Simulation::load ( const std::string& filename, bool reload, const std::vector& sceneArgs ) -{ - return sofa::simulation::node::load(filename, reload, sceneArgs); -} - -/// Delete a scene from memory. After this call the pointer is invalid -void Simulation::unload(Node::SPtr root) -{ - sofa::simulation::node::unload(root); -} } // namespace sofa::simulation diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.h index c3b93079214..21289b2eda9 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/Simulation.h @@ -104,39 +104,39 @@ class SOFA_SIMULATION_CORE_API Simulation /// Print all object in the graph SOFA_ATTRIBUTE_DISABLED_SIMULATION_PRINT() - virtual void print(Node* root); + virtual void print(Node* root) = delete; /// Initialize the objects SOFA_ATTRIBUTE_DISABLED_SIMULATION_INIT() - virtual void init(Node* root); + virtual void init(Node* root) = delete; ///Init a node without changing the context of the simulation. SOFA_ATTRIBUTE_DISABLED_SIMULATION_INITNODE() - virtual void initNode(Node* node); + virtual void initNode(Node* node) = delete; /// Execute one timestep. If dt is 0, the dt parameter in the graph will be used SOFA_ATTRIBUTE_DISABLED_SIMULATION_ANIMATE() - virtual void animate(Node* root, SReal dt=0.0); + virtual void animate(Node* root, SReal dt=0.0) = delete; /// Update the Visual Models: triggers the Mappings SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATEVISUAL() - virtual void updateVisual(Node* root); + virtual void updateVisual(Node* root) = delete; /// Reset to initial state SOFA_ATTRIBUTE_DISABLED_SIMULATION_RESET() - virtual void reset(Node* root); + virtual void reset(Node* root) = delete; /// Initialize the textures SOFA_ATTRIBUTE_DISABLED_SIMULATION_INITTEXTURE() - virtual void initTextures(Node* root); + virtual void initTextures(Node* root) = delete; /// Update contexts. Required before drawing the scene if root flags are modified. SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATECONTEXT() - virtual void updateContext(Node* root); + virtual void updateContext(Node* root) = delete; /// Update contexts. Required before drawing the scene if root flags are modified. SOFA_ATTRIBUTE_DISABLED_SIMULATION_UPDATEVISUALCONTEXT() - virtual void updateVisualContext(Node* root); + virtual void updateVisualContext(Node* root) = delete; /** Compute the bounding box of the scene. * If init is set to "true", then minBBox and maxBBox will be initialised to a default value @@ -144,7 +144,7 @@ class SOFA_SIMULATION_CORE_API Simulation * @sa computeTotalBBox(Node* root, SReal* minBBox, SReal* maxBBox) */ SOFA_ATTRIBUTE_DISABLED_SIMULATION_COMPUTEBBOX() - virtual void computeBBox(Node* root, SReal* minBBox, SReal* maxBBox, bool init=true); + virtual void computeBBox(Node* root, SReal* minBBox, SReal* maxBBox, bool init=true) = delete; /** Compute the bounding box of the scene. * Includes all objects, may they be displayed or not. @@ -152,35 +152,35 @@ class SOFA_SIMULATION_CORE_API Simulation * @deprecated */ SOFA_ATTRIBUTE_DISABLED_SIMULATION_COMPUTETOTALBBOX() - virtual void computeTotalBBox(Node* root, SReal* minBBox, SReal* maxBBox); + virtual void computeTotalBBox(Node* root, SReal* minBBox, SReal* maxBBox) = delete; /// Render the scene SOFA_ATTRIBUTE_DISABLED_SIMULATION_DRAW() - virtual void draw(sofa::core::visual::VisualParams* vparams, Node* root); + virtual void draw(sofa::core::visual::VisualParams* vparams, Node* root) = delete; /// Export a scene to an OBJ 3D Scene SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTOBJ() - virtual void exportOBJ(Node* root, const char* filename, bool exportMTL = true); + virtual void exportOBJ(Node* root, const char* filename, bool exportMTL = true) = delete; /// Print all object in the graph in XML format SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTXML() - virtual void exportXML(Node* root, const char* fileName=nullptr); + virtual void exportXML(Node* root, const char* fileName=nullptr) = delete; /// Print all objects in the graph in the given file (format is given by the filename extension) SOFA_ATTRIBUTE_DISABLED_SIMULATION_EXPORTGRAPH() - virtual void exportGraph(Node* root, const char* filename=nullptr); + virtual void exportGraph(Node* root, const char* filename=nullptr) = delete; /// Dump the current state in the given stream SOFA_ATTRIBUTE_DISABLED_SIMULATION_DUMPSTATE() - virtual void dumpState( Node* root, std::ofstream& out ); + virtual void dumpState( Node* root, std::ofstream& out ) = delete; /// Load a scene from a file SOFA_ATTRIBUTE_DISABLED_SIMULATION_LOAD() - virtual NodeSPtr load(const std::string& /* filename */, bool reload = false, const std::vector& sceneArgs = std::vector(0)); + virtual NodeSPtr load(const std::string& /* filename */, bool reload = false, const std::vector& sceneArgs = std::vector(0)) = delete; /// Unload a scene from a Node. SOFA_ATTRIBUTE_DISABLED_SIMULATION_UNLOAD() - virtual void unload(NodeSPtr root); + virtual void unload(NodeSPtr root) = delete; /// create a new graph(or tree) and return its root node. virtual NodeSPtr createNewGraph(const std::string& name)=0;//Todo replace newNode method diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/Visitor.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/Visitor.h index 6672c5ad82b..d0644b7591a 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/Visitor.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/Visitor.h @@ -161,12 +161,12 @@ class SOFA_SIMULATION_CORE_API Visitor /// Callback method called when decending to a new node. Recursion will stop if this method returns RESULT_PRUNE /// This version is offered a LocalStorage to store temporary data SOFA_ATTRIBUTE_DISABLED_LOCALSTORAGE() - virtual Result processNodeTopDown(simulation::Node* node, LocalStorage*) { return processNodeTopDown(node); } + virtual Result processNodeTopDown(simulation::Node* node, LocalStorage*) = delete; /// Callback method called after child node have been processed and before going back to the parent node. /// This version is offered a LocalStorage to store temporary data SOFA_ATTRIBUTE_DISABLED_LOCALSTORAGE() - virtual void processNodeBottomUp(simulation::Node* node, LocalStorage*) { processNodeBottomUp(node); } + virtual void processNodeBottomUp(simulation::Node* node, LocalStorage*) = delete; typedef sofa::core::objectmodel::Tag Tag; typedef sofa::core::objectmodel::TagSet TagSet; diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h index 43d7595e4fc..a5e7d96e96d 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h @@ -39,7 +39,7 @@ namespace sofa::simulation /// Set the (unique) simulation which controls the scene SOFA_SIMULATION_CORE_API SOFA_ATTRIBUTE_DISABLED_SETSIMULATIONRAWPOINTER() - void setSimulation(Simulation* s); + void setSimulation(Simulation* s) = delete; /** Get the (unique) simulation which controls the scene. Automatically creates one if no Simulation has been set. diff --git a/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.cpp b/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.cpp index fa4bb59fb53..2a5fed99c49 100644 --- a/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.cpp +++ b/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.cpp @@ -35,11 +35,6 @@ namespace sofa::simulation::graph using namespace sofa::defaulttype; -Simulation* getSimulation() -{ - return simulation::getSimulation(); -} - DAGSimulation::DAGSimulation() { // Safety check; it could be elsewhere, but here is a good place, I guess. @@ -52,7 +47,6 @@ DAGSimulation::~DAGSimulation() } - Node::SPtr DAGSimulation::createNewGraph(const std::string& name) { return createNewNode( name ); diff --git a/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h b/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h index 2e5cf011432..35ffbaaa462 100644 --- a/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h +++ b/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h @@ -55,5 +55,5 @@ Automatically creates one if no Simulation has been set. */ SOFA_SIMULATION_GRAPH_API SOFA_ATTRIBUTE_DISABLED_DAGSIMULATION_GETSIMULATION() -Simulation* getSimulation(); +Simulation* getSimulation() = delete; } // namespace sofa::simulation::graph diff --git a/Sofa/framework/Type/src/sofa/type/RGBAColor.cpp b/Sofa/framework/Type/src/sofa/type/RGBAColor.cpp index 3d01fc53646..611ed9d0687 100644 --- a/Sofa/framework/Type/src/sofa/type/RGBAColor.cpp +++ b/Sofa/framework/Type/src/sofa/type/RGBAColor.cpp @@ -86,16 +86,6 @@ static void extractValidatedHexaString(std::istream& in, std::string& s) } -RGBAColor::RGBAColor(const type::fixed_array& c) - : m_components{ c[0], c[1], c[2], c[3] } -{ -} - -RGBAColor::RGBAColor(const type::Vec4f& c) - : m_components{ c[0], c[1], c[2], c[3] } -{ -} - bool RGBAColor::read(const std::string& str, RGBAColor& color) { std::stringstream s(str); @@ -174,26 +164,6 @@ RGBAColor RGBAColor::fromHSVA(const float h, const float s, const float v, const return rgba; } -RGBAColor RGBAColor::fromVec4(const type::fixed_array& color) -{ - return RGBAColor(float(color[0]), float(color[1]), float(color[2]), float(color[3])); -} - -RGBAColor RGBAColor::fromVec4(const type::fixed_array& color) -{ - return RGBAColor(float(color[0]), float(color[1]), float(color[2]), float(color[3])); -} - -RGBAColor RGBAColor::fromVec4(const type::Vec4f& color) -{ - return RGBAColor(float(color[0]), float(color[1]), float(color[2]), float(color[3])); -} - -RGBAColor RGBAColor::fromVec4(const type::Vec4d& color) -{ - return RGBAColor(float(color[0]), float(color[1]), float(color[2]), float(color[3])); -} - /// This function remove the leading space in the stream. static std::istream& trimInitialSpaces(std::istream& in) { diff --git a/Sofa/framework/Type/src/sofa/type/RGBAColor.h b/Sofa/framework/Type/src/sofa/type/RGBAColor.h index 4fc799a732b..13e2bbbf70a 100644 --- a/Sofa/framework/Type/src/sofa/type/RGBAColor.h +++ b/Sofa/framework/Type/src/sofa/type/RGBAColor.h @@ -59,18 +59,18 @@ class SOFA_TYPE_API RGBAColor // compat SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - RGBAColor(const type::fixed_array& c); + RGBAColor(const type::fixed_array& c) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - RGBAColor(const type::Vec4f& c); + RGBAColor(const type::Vec4f& c) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - static RGBAColor fromVec4(const type::fixed_array& color); + static RGBAColor fromVec4(const type::fixed_array& color) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - static RGBAColor fromVec4(const type::fixed_array& color); + static RGBAColor fromVec4(const type::fixed_array& color) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - static RGBAColor fromVec4(const Vec4f& color); + static RGBAColor fromVec4(const Vec4f& color) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() - static RGBAColor fromVec4(const Vec4d& color); + static RGBAColor fromVec4(const Vec4d& color) = delete; static RGBAColor fromString(const std::string& str); static RGBAColor fromFloat(float r, float g, float b, float a); From 282f53af7c872ed58fdecc4bdf0b47ac85374d65 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Sun, 25 Feb 2024 11:38:20 +0100 Subject: [PATCH 07/18] Remove all data and attributes removed since v23.06 --- .../correction/GenericConstraintCorrection.h | 6 -- .../LinearSolverConstraintCorrection.h | 4 -- .../lagrangian/correction/config.h.in | 8 --- .../model/BilateralLagrangianConstraint.h | 10 --- .../constraint/lagrangian/model/config.h.in | 8 --- .../solver/GenericConstraintSolver.h | 14 ---- .../constraint/lagrangian/solver/config.h.in | 7 -- .../iterative/ShewchukPCGLinearSolver.h | 13 ---- .../linearsolver/iterative/config.h.in | 8 --- .../PrecomputedWarpPreconditioner.h | 19 +---- .../preconditioner/WarpPreconditioner.h | 12 ---- .../linearsolver/preconditioner/config.h.in | 8 --- .../gl/component/rendering3d/OglSceneFrame.h | 3 - .../sofa/gl/component/rendering3d/config.h.in | 8 --- .../sofa/gui/common/ColourPickingVisitor.cpp | 17 ----- .../sofa/gui/common/ColourPickingVisitor.h | 6 +- Sofa/framework/Config/src/sofa/config.h.in | 9 --- .../Core/src/sofa/core/ConstraintParams.h | 44 ------------ .../Core/src/sofa/core/MechanicalParams.h | 34 --------- .../Helper/src/sofa/helper/LCPcalc.cpp | 3 +- .../helper/accessor/WriteAccessorVector.h | 1 - .../Helper/src/sofa/helper/config.h.in | 8 --- .../src/sofa/helper/io/MeshTopologyLoader.cpp | 7 +- Sofa/framework/Simulation/Core/CMakeLists.txt | 2 - .../src/sofa/simulation/TaskScheduler.cpp | 25 ------- .../Core/src/sofa/simulation/TaskScheduler.h | 28 -------- .../Core/src/sofa/simulation/config.h.in | 17 ----- .../MechanicalAccumulateConstraint.cpp | 46 ------------ .../MechanicalAccumulateConstraint.h | 70 ------------------- Sofa/framework/Type/src/sofa/type/Mat.h | 7 -- Sofa/framework/Type/src/sofa/type/config.h.in | 9 --- Sofa/framework/Type/src/sofa/type/fwd.h | 11 --- .../plugins/image/ImageToRigidMassEngine.h | 2 +- applications/plugins/image/Kinect.h | 36 +++++----- .../plugins/image/imagetoolbox/imagetoolbox.h | 2 +- .../compositeObject/compositeObject.cpp | 8 +-- 36 files changed, 32 insertions(+), 488 deletions(-) delete mode 100644 Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalAccumulateConstraint.cpp delete mode 100644 Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalAccumulateConstraint.h diff --git a/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/GenericConstraintCorrection.h b/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/GenericConstraintCorrection.h index b7127ea0262..56ce5b8127f 100644 --- a/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/GenericConstraintCorrection.h +++ b/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/GenericConstraintCorrection.h @@ -63,12 +63,6 @@ class SOFA_COMPONENT_CONSTRAINT_LAGRANGIAN_CORRECTION_API GenericConstraintCorre SingleLink l_ODESolver; ///< Link towards the ODE solver used to recover the integration factors Data< SReal > d_complianceFactor; ///< Factor applied to the position factor and velocity factor used to calculate compliance matrix. - SOFA_ATTRIBUTE_DISABLED__CONSTRAINTCORRECTION_EXPLICITLINK() - core::objectmodel::lifecycle::RemovedData d_linearSolversName {this, "v22.12", "v23.06", "solverName", "replace solverName with an explicit data link named \"linearSolver\" (PR #3152)"}; - - SOFA_ATTRIBUTE_DISABLED__CONSTRAINTCORRECTION_EXPLICITLINK() - core::objectmodel::lifecycle::RemovedData d_ODESolverName {this, "v22.12", "v23.06", "ODESolverName", "replace sODESolverName with an explicit data link named \"ODESolver\" (PR #3152)"}; - protected: GenericConstraintCorrection(); ~GenericConstraintCorrection() override; diff --git a/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/LinearSolverConstraintCorrection.h b/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/LinearSolverConstraintCorrection.h index 5545d144530..9c29139a60f 100644 --- a/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/LinearSolverConstraintCorrection.h +++ b/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/LinearSolverConstraintCorrection.h @@ -97,10 +97,6 @@ class LinearSolverConstraintCorrection : public sofa::core::behavior::Constraint SingleLink l_linearSolver; ///< Link towards the linear solver used to compute the compliance matrix, requiring the inverse of the linear system matrix SingleLink l_ODESolver; ///< Link towards the ODE solver used to recover the integration factors - - SOFA_ATTRIBUTE_DISABLED__CONSTRAINTCORRECTION_EXPLICITLINK() - core::objectmodel::lifecycle::RemovedData solverName{this, "v22.12", "v23.06", "solverName", "replace \"solverName\" by using an explicit data link: \"linearSolver\" (PR #3152)}"}; - void verify_constraints(); bool hasConstraintNumber(int index) override; // virtual ??? diff --git a/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/config.h.in b/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/config.h.in index 42e08c9fc75..37d1046afc0 100644 --- a/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/config.h.in +++ b/Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/config.h.in @@ -36,11 +36,3 @@ namespace sofa::component::constraint::lagrangian::correction constexpr const char* MODULE_NAME = "@PROJECT_NAME@"; constexpr const char* MODULE_VERSION = "@PROJECT_VERSION@"; } // namespace sofa::component::constraint::lagrangian::correction - -#ifdef SOFA_BUILD_SOFA_COMPONENT_CONSTRAINT_LAGRANGIAN_CORRECTION -#define SOFA_ATTRIBUTE_DISABLED__CONSTRAINTCORRECTION_EXPLICITLINK() -#else -#define SOFA_ATTRIBUTE_DISABLED__CONSTRAINTCORRECTION_EXPLICITLINK() \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12 (#3152)", "v23.06", "String data of this ConstraintCorrection were replaced by explicit links") -#endif // SOFA_BUILD_SOFA_COMPONENT_CONSTRAINT_LAGRANGIAN_CORRECTION diff --git a/Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/BilateralLagrangianConstraint.h b/Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/BilateralLagrangianConstraint.h index 0b23e4521a1..e9c3c987ce1 100644 --- a/Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/BilateralLagrangianConstraint.h +++ b/Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/BilateralLagrangianConstraint.h @@ -111,16 +111,6 @@ class BilateralLagrangianConstraint : public PairInteractionConstraint prevForces; - SOFA_ATTRIBUTE_DISABLED__BILATERALINTERACTIONCONSTRAINTDATA("Data 'activateAtIteration' has been removed, please use the Data d_activate instead and an engine or a script to change the behavior at the right step (see PR #3327).") - sofa::core::objectmodel::lifecycle::RemovedData activateAtIteration{this, "v22.12", "v23.06", "activateAtIteration", "use the boolean data 'activate' instead and an engine or a script to change the behavior at the right step (see PR #3327)."}; - - SOFA_ATTRIBUTE_DISABLED__BILATERALINTERACTIONCONSTRAINTDATA("Data 'merge' has been removed. Its behavior was unused, undocumented, untested, and unclear (see PR #3328).") - sofa::core::objectmodel::lifecycle::RemovedData merge{this, "v22.12", "v23.06", "merge", "Its behavior was unused, undocumented, untested, and unclear (see PR #3328), please report to sofa-dev if you want the feature back."}; - - SOFA_ATTRIBUTE_DISABLED__BILATERALINTERACTIONCONSTRAINTDATA("Data 'derivative' has been removed. Its behavior was unused, undocumented, untested, and unclear (see PR #3328).") - sofa::core::objectmodel::lifecycle::RemovedData derivative{this, "v22.12", "v23.06", "derivative", "Its behavior was unused, undocumented, untested, and unclear (see PR #3328), please report to sofa-dev if you want the feature back."}; - - BilateralLagrangianConstraint(MechanicalState* object1, MechanicalState* object2) ; BilateralLagrangianConstraint(MechanicalState* object) ; BilateralLagrangianConstraint(); diff --git a/Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/config.h.in b/Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/config.h.in index 1beeb02db9a..21419cdc890 100644 --- a/Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/config.h.in +++ b/Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/config.h.in @@ -36,11 +36,3 @@ namespace sofa::component::constraint::lagrangian::model constexpr const char* MODULE_NAME = "@PROJECT_NAME@"; constexpr const char* MODULE_VERSION = "@PROJECT_VERSION@"; } // namespace sofa::component::constraint::lagrangian::model - -#ifdef SOFA_BUILD_SOFA_COMPONENT_CONSTRAINT_LAGRANGIAN_MODEL -#define SOFA_ATTRIBUTE_DISABLED__BILATERALINTERACTIONCONSTRAINTDATA(msg) -#else -#define SOFA_ATTRIBUTE_DISABLED__BILATERALINTERACTIONCONSTRAINTDATA(msg) \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12", "v23.06", msg) -#endif // SOFA_BUILD_SOFA_COMPONENT_CONSTRAINT_LAGRANGIAN_MODEL diff --git a/Sofa/Component/Constraint/Lagrangian/Solver/src/sofa/component/constraint/lagrangian/solver/GenericConstraintSolver.h b/Sofa/Component/Constraint/Lagrangian/Solver/src/sofa/component/constraint/lagrangian/solver/GenericConstraintSolver.h index 4a43b34a841..f1757d182ed 100644 --- a/Sofa/Component/Constraint/Lagrangian/Solver/src/sofa/component/constraint/lagrangian/solver/GenericConstraintSolver.h +++ b/Sofa/Component/Constraint/Lagrangian/Solver/src/sofa/component/constraint/lagrangian/solver/GenericConstraintSolver.h @@ -81,20 +81,6 @@ class SOFA_COMPONENT_CONSTRAINT_LAGRANGIAN_SOLVER_API GenericConstraintSolver : Data> d_constraintForces; ///< OUTPUT: The Data constraintForces is used to provide the intensities of constraint forces in the simulation. The user can easily check the constraint forces from the GenericConstraint component interface. Data d_computeConstraintForces; ///< The indices of the constraintForces to store in the constraintForce data field. - SOFA_ATTRIBUTE_DISABLED__GENERICCONSTRAINTSOLVER_DATA("Data schemeCorrection was unused therefore removed.") - DeprecatedAndRemoved schemeCorrection; ///< Apply new scheme where compliance is progressively corrected - SOFA_ATTRIBUTE_DISABLED__GENERICCONSTRAINTSOLVER_DATA("Make the \"unbuild\" option as an option group \"resolutionMethod\".") - Data unbuilt; ///< Compliance is not fully built (for the PGS solver only) - //SOFA_ATTRIBUTE_DISABLED__GENERICCONSTRAINTSOLVER_DATA("Make the \"unbuild\" option as an option group \"resolutionMethod\".") - void parse( sofa::core::objectmodel::BaseObjectDescription* arg ) override - { - Inherit1::parse(arg); - if (arg->getAttribute("unbuilt")) - { - msg_warning() << "String data \"unbuilt\" is now an option group \"resolutionMethod\" (PR #3053)" << msgendl << "Use: resolutionMethod=\"UnbuildGaussSeidel\""; - } - } - sofa::core::MultiVecDerivId getLambda() const override; sofa::core::MultiVecDerivId getDx() const override; diff --git a/Sofa/Component/Constraint/Lagrangian/Solver/src/sofa/component/constraint/lagrangian/solver/config.h.in b/Sofa/Component/Constraint/Lagrangian/Solver/src/sofa/component/constraint/lagrangian/solver/config.h.in index 96d20ffe722..38aed66ad28 100644 --- a/Sofa/Component/Constraint/Lagrangian/Solver/src/sofa/component/constraint/lagrangian/solver/config.h.in +++ b/Sofa/Component/Constraint/Lagrangian/Solver/src/sofa/component/constraint/lagrangian/solver/config.h.in @@ -37,13 +37,6 @@ namespace sofa::component::constraint::lagrangian::solver constexpr const char* MODULE_VERSION = "@PROJECT_VERSION@"; } // namespace sofa::component::constraint::lagrangian::solver -#ifdef SOFA_BUILD_SOFA_COMPONENT_CONSTRAINT_LAGRANGIAN_SOLVER -#define SOFA_ATTRIBUTE_DISABLED__GENERICCONSTRAINTSOLVER_DATA(msg) -#else -#define SOFA_ATTRIBUTE_DISABLED__GENERICCONSTRAINTSOLVER_DATA(msg) \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12", "v23.06", msg) -#endif // SOFA_BUILD_SOFA_COMPONENT_CONSTRAINT_LAGRANGIAN_SOLVER // deprecate _mu as member #ifdef SOFA_BUILD_SOFA_COMPONENT_CONSTRAINT_LAGRANGIAN_SOLVER diff --git a/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/ShewchukPCGLinearSolver.h b/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/ShewchukPCGLinearSolver.h index f1c5b56f201..87c1f94d659 100644 --- a/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/ShewchukPCGLinearSolver.h +++ b/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/ShewchukPCGLinearSolver.h @@ -50,19 +50,6 @@ class ShewchukPCGLinearSolver : public sofa::component::linearsolver::MatrixLine Data f_build_precond; ///< Build the preconditioners, if false build the preconditioner only at the initial step Data > > f_graph; ///< Graph of residuals at each iteration - - SOFA_ATTRIBUTE_DISABLED__SHEWCHUKPCGLINEARSOLVER_EXPLICITLINK() - Data< std::string > f_preconditioners; ///< If not empty: path to the solvers to use as preconditioners - //SOFA_ATTRIBUTE_DISABLED__SHEWCHUKPCGLINEARSOLVER_EXPLICITLINK() - void parse( sofa::core::objectmodel::BaseObjectDescription* arg ) override - { - Inherit1::parse(arg); - if (arg->getAttribute("preconditioners")) - { - msg_warning() << "String data \"preconditioners\" is now replaced by explicit data link: \"preconditioner\" (PR #3155)"; - } - } - protected: ShewchukPCGLinearSolver(); diff --git a/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/config.h.in b/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/config.h.in index fc115444244..1624394df33 100644 --- a/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/config.h.in +++ b/Sofa/Component/LinearSolver/Iterative/src/sofa/component/linearsolver/iterative/config.h.in @@ -38,14 +38,6 @@ namespace sofa::component::linearsolver::iterative } // namespace sofa::component::linearsolver::iterative -#ifdef SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_ITERATIVE -#define SOFA_ATTRIBUTE_DISABLED__SHEWCHUKPCGLINEARSOLVER_EXPLICITLINK() -#else -#define SOFA_ATTRIBUTE_DISABLED__SHEWCHUKPCGLINEARSOLVER_EXPLICITLINK() \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12 (#3155)", "v23.06", "String data of the ShewchukPCGLinearSolver were replaced by an explicit link") -#endif // SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_ITERATIVE - #ifdef SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_ITERATIVE #define SOFA_ATTRIBUTE_DISABLED__SOLVER_ITERATIVE_VERBOSEDATA() #else diff --git a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.h b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.h index 8ea169e56d1..ab92cf6fa64 100644 --- a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.h +++ b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.h @@ -116,25 +116,8 @@ class PrecomputedWarpPreconditioner : public sofa::component::linearsolver::Matr Data use_rotations; ///< Use Rotations around the preconditioner Data draw_rotations_scale; ///< Scale rotations in draw function - SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_EXPLICITLINK() - Data solverName; - //SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_EXPLICITLINK() - void parse( sofa::core::objectmodel::BaseObjectDescription* arg ) override - { - Inherit1::parse(arg); - if (arg->getAttribute("solverName")) - { - msg_warning() << "String data \"solverName\" is now replaced by explicit data link: \"linearSolver\" (PR #3155)"; - } - if (arg->getAttribute("verbose")) - { - msg_warning() << "Attribute 'verbose' has no use in this component. " - "To disable this warning, remove the attribute from the scene."; - } - } - - MState * mstate; + protected: PrecomputedWarpPreconditioner(); diff --git a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/WarpPreconditioner.h b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/WarpPreconditioner.h index 457b80b79b0..dc22bf9be5f 100644 --- a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/WarpPreconditioner.h +++ b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/WarpPreconditioner.h @@ -56,18 +56,6 @@ class WarpPreconditioner : public sofa::component::linearsolver::MatrixLinearSol Data f_useRotationFinder; ///< Which rotation Finder to use Data d_updateStep; ///< Number of steps before the next refresh of the system matrix in the main solver - SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_EXPLICITLINK() - Data solverName; ///< Name of the solver/preconditioner to warp - //SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_EXPLICITLINK() - void parse( sofa::core::objectmodel::BaseObjectDescription* arg ) override - { - Inherit1::parse(arg); - if (arg->getAttribute("solverName")) - { - msg_warning() << "String data \"solverName\" is now replaced by explicit data link: \"linearSolver\" (PR #3155)"; - } - } - protected: WarpPreconditioner(); diff --git a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/config.h.in b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/config.h.in index 63e8c3cb139..de9594f5457 100644 --- a/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/config.h.in +++ b/Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/config.h.in @@ -38,14 +38,6 @@ namespace sofa::component::linearsolver::preconditioner } // namespace sofa::component::linearsolver::preconditioner -#ifdef SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_PRECONDITIONER -#define SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_EXPLICITLINK() -#else -#define SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_EXPLICITLINK() \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12 (#3155)", "v23.06", "String data of the WarpPreconditioner were replaced by an explicit link") -#endif // SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_PRECONDITIONER - #ifdef SOFA_BUILD_SOFA_COMPONENT_LINEARSOLVER_PRECONDITIONER #define SOFA_ATTRIBUTE_DISABLED__PRECONDITIONER_VERBOSEDATA() #else diff --git a/Sofa/GL/Component/Rendering3D/src/sofa/gl/component/rendering3d/OglSceneFrame.h b/Sofa/GL/Component/Rendering3D/src/sofa/gl/component/rendering3d/OglSceneFrame.h index 603dc787c20..273936aa254 100644 --- a/Sofa/GL/Component/Rendering3D/src/sofa/gl/component/rendering3d/OglSceneFrame.h +++ b/Sofa/GL/Component/Rendering3D/src/sofa/gl/component/rendering3d/OglSceneFrame.h @@ -48,9 +48,6 @@ class SOFA_GL_COMPONENT_RENDERING3D_API OglSceneFrame : public core::visual::Vis void reinit() override; void draw(const core::visual::VisualParams*) override; - SOFA_ATTRIBUTE_DISABLED__RENDERING3D_DATA_WITH_PREFIX - DeprecatedAndRemoved drawFrame, style, alignment; - private: static void drawArrows(const core::visual::VisualParams* vparams); static void drawCylinders(const core::visual::VisualParams* vparams); diff --git a/Sofa/GL/Component/Rendering3D/src/sofa/gl/component/rendering3d/config.h.in b/Sofa/GL/Component/Rendering3D/src/sofa/gl/component/rendering3d/config.h.in index 16ce5588ef7..b306fc384bc 100644 --- a/Sofa/GL/Component/Rendering3D/src/sofa/gl/component/rendering3d/config.h.in +++ b/Sofa/GL/Component/Rendering3D/src/sofa/gl/component/rendering3d/config.h.in @@ -36,11 +36,3 @@ namespace sofa::gl::component::rendering3d constexpr const char* MODULE_NAME = "@PROJECT_NAME@"; constexpr const char* MODULE_VERSION = "@PROJECT_VERSION@"; } // namespace sofa::gl::component::rendering3d - -#ifdef SOFA_BUILD_SOFA_GL_COMPONENT_RENDERING3D -#define SOFA_ATTRIBUTE_DISABLED__RENDERING3D_DATA_WITH_PREFIX -#else -#define SOFA_ATTRIBUTE_DISABLED__RENDERING3D_DATA_WITH_PREFIX \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12 (PR#3113)", "v23.06", "Variable names have been renamed with the d_ prefix") -#endif diff --git a/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.cpp b/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.cpp index 7cbfb8fa013..af679469a0f 100644 --- a/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.cpp +++ b/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.cpp @@ -99,23 +99,6 @@ simulation::Visitor::Result ColourPickingVisitor::processNodeTopDown(simulation: return RESULT_CONTINUE; } -void decodeCollisionElement(const sofa::type::Vec4f& colour, BodyPicked& body) -{ - decodeCollisionElement(sofa::type::RGBAColor::fromVec4(colour), body); -} - -void decodePosition(BodyPicked& body, const sofa::type::Vec4f& colour, const TriangleCollisionModel* model, - const unsigned int index) -{ - decodePosition(body, sofa::type::RGBAColor::fromVec4(colour), model, index); -} - -void decodePosition(BodyPicked& body, const sofa::type::Vec4f& colour, const SphereCollisionModel *model, - const unsigned int index) -{ - decodePosition(body, sofa::type::RGBAColor::fromVec4(colour), model, index); -} - void ColourPickingVisitor::processCollisionModel(simulation::Node* node , core::CollisionModel* o) { using namespace core::objectmodel; diff --git a/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h b/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h index 549396940e2..0fc5f5daa2b 100644 --- a/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h +++ b/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h @@ -37,13 +37,13 @@ void SOFA_GUI_COMMON_API decodePosition( sofa::gui::component::performer::BodyPi // compat SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() -void SOFA_GUI_COMMON_API decodeCollisionElement( const sofa::type::Vec4f& colour, sofa::gui::component::performer::BodyPicked& body ); +void SOFA_GUI_COMMON_API decodeCollisionElement( const sofa::type::Vec4f& colour, sofa::gui::component::performer::BodyPicked& body ) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() void SOFA_GUI_COMMON_API decodePosition( sofa::gui::component::performer::BodyPicked& body, const sofa::type::Vec4f& colour, const sofa::component::collision::geometry::TriangleCollisionModel* model, - const unsigned int index); + const unsigned int index) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() void SOFA_GUI_COMMON_API decodePosition( sofa::gui::component::performer::BodyPicked& body, const sofa::type::Vec4f& colour, const sofa::component::collision::geometry::SphereCollisionModel* model, - const unsigned int index); + const unsigned int index) = delete; /* Launches the drawColourPicking() method of each CollisionModel */ diff --git a/Sofa/framework/Config/src/sofa/config.h.in b/Sofa/framework/Config/src/sofa/config.h.in index ac3c4546f35..3e886a1630b 100644 --- a/Sofa/framework/Config/src/sofa/config.h.in +++ b/Sofa/framework/Config/src/sofa/config.h.in @@ -220,15 +220,6 @@ class DeprecatedAndRemoved {}; "This type member " sofa_tostring(type) " is now deprecated. To update your code please replace it with " sofa_tostring(newtype)) \ typedef newtype type -#define SOFA_ATTRIBUTE_DISABLED__VECTOR(msg) \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12 (PR#3299)", "v23.06", \ - "Long aliases for VectorX will be removed. " msg) - -#define SOFA_ATTRIBUTE_DISABLED__READX_PARAMS(msg) \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12 (PR#3304)", "v23.06", \ - "Calling ReadX with SingleLink's argument will be removed." msg) /**********************************************/ diff --git a/Sofa/framework/Core/src/sofa/core/ConstraintParams.h b/Sofa/framework/Core/src/sofa/core/ConstraintParams.h index 013f7a14986..162f012761e 100644 --- a/Sofa/framework/Core/src/sofa/core/ConstraintParams.h +++ b/Sofa/framework/Core/src/sofa/core/ConstraintParams.h @@ -92,50 +92,6 @@ class SOFA_CORE_API ConstraintParams : public sofa::core::ExecParams } - - - /// @name Access to vectors from a given SingleLink to a state container (i.e. State or MechanicalState) - /// @{ - - /// Read access to the free (unconstrained) position - template - SOFA_ATTRIBUTE_DISABLED__READX_PARAMS("To fix your code use readX(state.get())") - const Data* readX(const sofa::core::objectmodel::SingleLink& state) const - { return m_x[state.get()].read(); } - - /// Read access to the free (unconstrained) velocity vector - template - SOFA_ATTRIBUTE_DISABLED__READX_PARAMS("To fix your code use readV(state.get())") - const Data* readV(const sofa::core::objectmodel::SingleLink& state) const - { return m_v[state.get()].read(); } - - /// Read access to the constraint jacobian matrix - template - SOFA_ATTRIBUTE_DISABLED__READX_PARAMS("To fix your code use readJ(state.get())") - const Data* readJ(const sofa::core::objectmodel::SingleLink& state) const - { - return m_j[state.get()].read(); - } - - /// Read access to the constraint force vector - template - SOFA_ATTRIBUTE_DISABLED__READX_PARAMS("To fix your code use readLambda(state.get())") - const Data* readLambda(sofa::core::objectmodel::SingleLink& state) const - { - return m_lambda[state.get(this)].read(); - } - - /// Read access to the constraint corrective motion vector - template - SOFA_ATTRIBUTE_DISABLED__READX_PARAMS("To fix your code use readDx(state.get())") - const Data* readDx(sofa::core::objectmodel::SingleLink& state) const - { - return m_dx[state.get(this)].read(); - } - - - /// @} - /// @name Setup methods /// Called by the OdeSolver from which the mechanical computations originate. /// They all return a reference to this MechanicalParam instance, to ease chaining multiple setup calls. diff --git a/Sofa/framework/Core/src/sofa/core/MechanicalParams.h b/Sofa/framework/Core/src/sofa/core/MechanicalParams.h index 32209f742b0..4e39bcbbcca 100644 --- a/Sofa/framework/Core/src/sofa/core/MechanicalParams.h +++ b/Sofa/framework/Core/src/sofa/core/MechanicalParams.h @@ -106,40 +106,6 @@ class SOFA_CORE_API MechanicalParams : public sofa::core::ExecParams /// @} - /// @name Access to vectors from a given SingleLink to a state container (i.e. State or MechanicalState) - /// @{ - - /// Read access to current position vector - template - SOFA_ATTRIBUTE_DISABLED__READX_PARAMS("To fix your code use readX(state.get())") - const Data* readX(const sofa::core::objectmodel::SingleLink& state) const - { return m_x[state.get()].read(); } - - /// Read access to current velocity vector - template - SOFA_ATTRIBUTE_DISABLED__READX_PARAMS("To fix your code use readV(state.get())") - const Data* readV(const sofa::core::objectmodel::SingleLink& state) const - { return m_v[state.get()].read(); } - - /// Read access to current force vector - template - SOFA_ATTRIBUTE_DISABLED__READX_PARAMS("To fix your code use readF(state.get())") - const Data* readF(const sofa::core::objectmodel::SingleLink& state) const - { return m_f[state.get()].read(); } - - /// Read access to current dx vector (for implicit schemes) - template - SOFA_ATTRIBUTE_DISABLED__READX_PARAMS("To fix your code use readDx(state.get())") - const Data* readDx(const sofa::core::objectmodel::SingleLink& state) const - { return m_dx[state.get()].read(); } - - /// Read access to current df vector (for implicit schemes) - template - SOFA_ATTRIBUTE_DISABLED__READX_PARAMS("To fix your code use readDf(state.get())") - const Data* readDf(const sofa::core::objectmodel::SingleLink& state) const - { return m_df[state.get()].read(); } - - /// @} /// @name Setup methods /// Called by the OdeSolver from which the mechanical computations originate. diff --git a/Sofa/framework/Helper/src/sofa/helper/LCPcalc.cpp b/Sofa/framework/Helper/src/sofa/helper/LCPcalc.cpp index 35e3a1bbbe4..9c3701853be 100644 --- a/Sofa/framework/Helper/src/sofa/helper/LCPcalc.cpp +++ b/Sofa/framework/Helper/src/sofa/helper/LCPcalc.cpp @@ -329,9 +329,8 @@ int solveLCP(int dim, SReal * q, SReal ** M, SReal * res) // si le pivot est nul, le LCP echoue if (fabs(pivot)clear(); } - SOFA_WRITEACCESSOR_RESIZE_DISABLED() void resize(Size s, bool) { vref->resize(s); } void resize(Size s) { vref->resize(s); } iterator insert(const_iterator pos, const T& value) { return vref->insert(pos, value); } diff --git a/Sofa/framework/Helper/src/sofa/helper/config.h.in b/Sofa/framework/Helper/src/sofa/helper/config.h.in index 381f343453e..5b0b86b583b 100644 --- a/Sofa/framework/Helper/src/sofa/helper/config.h.in +++ b/Sofa/framework/Helper/src/sofa/helper/config.h.in @@ -40,14 +40,6 @@ # define SOFA_HELPER_API SOFA_IMPORT_DYNAMIC_LIBRARY #endif -#ifdef SOFA_BUILD_SOFA_HELPER -#define SOFA_WRITEACCESSOR_RESIZE_DISABLED() -#else -#define SOFA_WRITEACCESSOR_RESIZE_DISABLED() \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12", "v23.06", "") -#endif // SOFA_BUILD_SOFA_HELPER - #ifdef SOFA_BUILD_SOFA_HELPER #define SOFA_PROXIMITY_CLASSES_DISABLED() #else diff --git a/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.cpp b/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.cpp index d983bc73970..725424a628e 100644 --- a/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.cpp +++ b/Sofa/framework/Helper/src/sofa/helper/io/MeshTopologyLoader.cpp @@ -180,10 +180,9 @@ bool MeshTopologyLoader::load(const char *filename) else { std::ifstream file(filename); - if (!file.good()) return false; - msg_error() << "This file format: " << filename << " will not be supported anymore in sofa release 18.06."; - fileLoaded = loadMesh(file); - file.close(); + if (!file.good()) + return false; + msg_error() << "This file format: " << filename << " is not be supported."; } if(fileLoaded) diff --git a/Sofa/framework/Simulation/Core/CMakeLists.txt b/Sofa/framework/Simulation/Core/CMakeLists.txt index 9f420e19e12..5a08deb6aa8 100644 --- a/Sofa/framework/Simulation/Core/CMakeLists.txt +++ b/Sofa/framework/Simulation/Core/CMakeLists.txt @@ -89,7 +89,6 @@ set(HEADER_FILES ${SRC_ROOT}/events/SimulationStopEvent.h ${SRC_ROOT}/events/SolveConstraintSystemEndEvent.h ${SRC_ROOT}/mechanicalvisitor/MechanicalAccFromFVisitor.h - ${SRC_ROOT}/mechanicalvisitor/MechanicalAccumulateConstraint.h ${SRC_ROOT}/mechanicalvisitor/MechanicalAccumulateJacobian.h ${SRC_ROOT}/mechanicalvisitor/MechanicalAccumulateJacobian.h ${SRC_ROOT}/mechanicalvisitor/MechanicalAccumulateMatrixDeriv.h @@ -221,7 +220,6 @@ set(SOURCE_FILES ${SRC_ROOT}/events/SolveConstraintSystemEndEvent.cpp ${SRC_ROOT}/mechanicalvisitor/MechanicalAccFromFVisitor.cpp - ${SRC_ROOT}/mechanicalvisitor/MechanicalAccumulateConstraint.cpp ${SRC_ROOT}/mechanicalvisitor/MechanicalAccumulateJacobian.cpp ${SRC_ROOT}/mechanicalvisitor/MechanicalAccumulateJacobian.cpp ${SRC_ROOT}/mechanicalvisitor/MechanicalAccumulateMatrixDeriv.cpp diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/TaskScheduler.cpp b/Sofa/framework/Simulation/Core/src/sofa/simulation/TaskScheduler.cpp index dc7923c9e5b..06a5f28db1b 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/TaskScheduler.cpp +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/TaskScheduler.cpp @@ -63,29 +63,4 @@ bool TaskScheduler::addTask(Task::Status& status, const std::function& t return addTask(new CallableTask(-1, status, task)); //destructor should be called after run() because it returns MemoryAlloc::Dynamic } -TaskScheduler* TaskScheduler::create(const char* name) -{ - return MainTaskSchedulerFactory::createInRegistry(name); -} - -bool TaskScheduler::registerScheduler(const char* name, TaskSchedulerCreatorFunction creatorFunc) -{ - return MainTaskSchedulerFactory::registerScheduler(name, creatorFunc); -} - -TaskScheduler* TaskScheduler::getInstance() -{ - return MainTaskSchedulerFactory::createInRegistry(); -} - -std::string TaskScheduler::getCurrentName() -{ - if (const auto& lastCreated = MainTaskSchedulerRegistry::getLastInserted()) - { - return lastCreated.value().first; - } - - return {}; -} - } // namespace sofa::simulation diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/TaskScheduler.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/TaskScheduler.h index 37fb3a5ce00..1dbe3a918c7 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/TaskScheduler.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/TaskScheduler.h @@ -72,34 +72,6 @@ class SOFA_SIMULATION_CORE_API TaskScheduler protected: friend class Task; - - - - - -public: - - /** - * Deprecated API. Use TaskSchedulerFactory instead. - */ - ///@{ - - SOFA_ATTRIBUTE_DISABLED_STATIC_TASKSCHEDULER() - static TaskScheduler* create(const char* name = ""); - - SOFA_ATTRIBUTE_DISABLED_STATIC_TASKSCHEDULER() - typedef std::function TaskSchedulerCreatorFunction; - - SOFA_ATTRIBUTE_DISABLED_STATIC_TASKSCHEDULER() - static bool registerScheduler(const char* name, TaskSchedulerCreatorFunction creatorFunc); - - SOFA_ATTRIBUTE_DISABLED_STATIC_TASKSCHEDULER() - static TaskScheduler* getInstance(); - - SOFA_ATTRIBUTE_DISABLED_STATIC_TASKSCHEDULER() - static std::string getCurrentName(); - - ///@} }; } // namespace sofa::simulation diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/config.h.in b/Sofa/framework/Simulation/Core/src/sofa/simulation/config.h.in index 490f7d35924..dfad66a297b 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/config.h.in +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/config.h.in @@ -32,23 +32,6 @@ # define SOFA_SIMULATION_CORE_API SOFA_IMPORT_DYNAMIC_LIBRARY #endif -#ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DISABLED_MECHANICALACCUMULATECONSTRAINT() -#else -#define SOFA_ATTRIBUTE_DISABLED_MECHANICALACCUMULATECONSTRAINT() \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12", "v23.06", "use MechanicalBuildConstraintMatrix followed by MechanicalAccumulateMatrixDeriv") -#endif // SOFA_BUILD_SOFA_SIMULATION_CORE - - -#ifdef SOFA_BUILD_SOFA_SIMULATION_CORE -#define SOFA_ATTRIBUTE_DISABLED_STATIC_TASKSCHEDULER() -#else -#define SOFA_ATTRIBUTE_DISABLED_STATIC_TASKSCHEDULER() \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12", "v23.06", "Use TaskSchedulerFactory instead") -#endif // SOFA_BUILD_SOFA_SIMULATION_CORE - #ifdef SOFA_BUILD_SOFA_SIMULATION_CORE #define SOFA_ATTRIBUTE_DISABLED_NODECREATENODE() #else diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalAccumulateConstraint.cpp b/Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalAccumulateConstraint.cpp deleted file mode 100644 index c893ce7f444..00000000000 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalAccumulateConstraint.cpp +++ /dev/null @@ -1,46 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ - -#include - -#include -#include - -namespace sofa::simulation::mechanicalvisitor -{ - -Visitor::Result MechanicalAccumulateConstraint::fwdConstraintSet(simulation::Node* node, core::behavior::BaseConstraintSet* c) -{ - const ctime_t t0 = begin(node, c); - c->buildConstraintMatrix(cparams, res, contactId); - end(node, c, t0); - return RESULT_CONTINUE; -} - -void MechanicalAccumulateConstraint::bwdMechanicalMapping(simulation::Node* node, core::BaseMapping* map) -{ - const ctime_t t0 = begin(node, map); - map->applyJT(cparams, res, res); - end(node, map, t0); -} - -} \ No newline at end of file diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalAccumulateConstraint.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalAccumulateConstraint.h deleted file mode 100644 index ee30118e75a..00000000000 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/mechanicalvisitor/MechanicalAccumulateConstraint.h +++ /dev/null @@ -1,70 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -#include - -namespace sofa::simulation::mechanicalvisitor -{ - -/// Call each BaseConstraintSet to build the Jacobian matrices and accumulate it through the mappings up to the independant DOFs -/// @deprecated use MechanicalBuildConstraintMatrix followed by MechanicalAccumulateMatrixDeriv -SOFA_ATTRIBUTE_DISABLED_MECHANICALACCUMULATECONSTRAINT() -class SOFA_SIMULATION_CORE_API MechanicalAccumulateConstraint : public BaseMechanicalVisitor -{ -public: - MechanicalAccumulateConstraint(const sofa::core::ConstraintParams* _cparams, - sofa::core::MultiMatrixDerivId _res, unsigned int &_contactId) - : BaseMechanicalVisitor(_cparams) - , res(_res) - , contactId(_contactId) - , cparams(_cparams) - {} - - const sofa::core::ConstraintParams* constraintParams() const { return cparams; } - - Result fwdConstraintSet(simulation::Node* /*node*/,sofa::core::behavior::BaseConstraintSet* c) override; - - void bwdMechanicalMapping(simulation::Node* /*node*/, sofa::core::BaseMapping* map) override; - - /// This visitor must go through all mechanical mappings, even if isMechanical flag is disabled - bool stopAtMechanicalMapping(simulation::Node* /*node*/, sofa::core::BaseMapping* /*map*/) override - { - return false; // !map->isMechanical(); - } - - /// Return a class name for this visitor - /// Only used for debugging / profiling purposes - const char* getClassName() const override { return "MechanicalAccumulateConstraint"; } - - bool isThreadSafe() const override - { - return false; - } - -protected: - sofa::core::MultiMatrixDerivId res; - unsigned int &contactId; - const sofa::core::ConstraintParams *cparams; -}; -} diff --git a/Sofa/framework/Type/src/sofa/type/Mat.h b/Sofa/framework/Type/src/sofa/type/Mat.h index 260b4f1553d..4a5ee63ea76 100644 --- a/Sofa/framework/Type/src/sofa/type/Mat.h +++ b/Sofa/framework/Type/src/sofa/type/Mat.h @@ -411,10 +411,6 @@ class Mat return s_identity; } - /// precomputed identity matrix of size (L,L) - SOFA_ATTRIBUTE_DISABLED__STATIC_MATRIX_IDENTITY() - static const Mat& s_identity; - template static bool canSelfTranspose(const Mat& lhs, const Mat& rhs) noexcept { @@ -867,9 +863,6 @@ class Mat }; -template -const Mat& Mat::s_identity = Mat::Identity(); - /// Same as Mat except the values are not initialized by default template class MatNoInit : public Mat diff --git a/Sofa/framework/Type/src/sofa/type/config.h.in b/Sofa/framework/Type/src/sofa/type/config.h.in index 2e96645b371..3fc2d71b07b 100644 --- a/Sofa/framework/Type/src/sofa/type/config.h.in +++ b/Sofa/framework/Type/src/sofa/type/config.h.in @@ -33,15 +33,6 @@ #endif -#ifdef SOFA_BUILD_SOFA_TYPE -#define SOFA_ATTRIBUTE_DISABLED__STATIC_MATRIX_IDENTITY() -#else -#define SOFA_ATTRIBUTE_DISABLED__STATIC_MATRIX_IDENTITY() \ - SOFA_ATTRIBUTE_DISABLED( \ - "v22.12", "v23.06", \ - "As an alternative, use sofa::type::Mat::Identity().") -#endif - #ifdef SOFA_BUILD_SOFA_TYPE #define SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() #else diff --git a/Sofa/framework/Type/src/sofa/type/fwd.h b/Sofa/framework/Type/src/sofa/type/fwd.h index 56a61f5e8d6..ed97947517c 100644 --- a/Sofa/framework/Type/src/sofa/type/fwd.h +++ b/Sofa/framework/Type/src/sofa/type/fwd.h @@ -64,17 +64,6 @@ typedef Vec<6,int> Vec6i; typedef Vec<6,unsigned> Vec6u; typedef Vec<6,SReal> Vec6; -SOFA_ATTRIBUTE_DISABLED__VECTOR("Replace Vector1 with Vec1") -typedef Vec1 Vector1; ///< alias -SOFA_ATTRIBUTE_DISABLED__VECTOR("Replace Vector2 with Vec2") -typedef Vec2 Vector2; ///< alias -SOFA_ATTRIBUTE_DISABLED__VECTOR("Replace Vector3 with Vec3") -typedef Vec3 Vector3; ///< alias -SOFA_ATTRIBUTE_DISABLED__VECTOR("Replace Vector4 with Vec4") -typedef Vec4 Vector4; ///< alias -SOFA_ATTRIBUTE_DISABLED__VECTOR("Replace Vector6 with Vec6") -typedef Vec6 Vector6; ///< alias - template class Mat; diff --git a/applications/plugins/image/ImageToRigidMassEngine.h b/applications/plugins/image/ImageToRigidMassEngine.h index 8ffb737aae0..e6afccfb27c 100644 --- a/applications/plugins/image/ImageToRigidMassEngine.h +++ b/applications/plugins/image/ImageToRigidMassEngine.h @@ -158,7 +158,7 @@ class ImageToRigidMassEngine : public core::DataEngine pos->getCenter()/=rigidMass->mass; C-=type::dyad(pos->getCenter(),pos->getCenter())*rigidMass->mass; // recenter covariance matrix around mean - rigidMass->inertiaMatrix = Mat3x3::s_identity* type::trace(C) - C; // covariance matrix to inertia matrix + rigidMass->inertiaMatrix = Mat3x3::Identity() * type::trace(C) - C; // covariance matrix to inertia matrix typename RigidMass::Mat3x3 R; helper::Decompose::eigenDecomposition(rigidMass->inertiaMatrix, R, inertia.wref()); diff --git a/applications/plugins/image/Kinect.h b/applications/plugins/image/Kinect.h index 960a81e100f..e0f144f60cf 100644 --- a/applications/plugins/image/Kinect.h +++ b/applications/plugins/image/Kinect.h @@ -59,7 +59,7 @@ namespace container using namespace cimg_library; using type::Vec; -using type::Vector3; +using type::Vec3; void* globalKinectClassPointer; @@ -106,7 +106,7 @@ class Kinect : public virtual core::objectmodel::BaseObject Data depthMode; ///< depth mode Data ledMode; ///< led mode Data tiltAngle; ///< tilt angle in [-30,30] - Data accelerometer; ///< Accelerometer data + Data accelerometer; ///< Accelerometer data Data drawBB; ///< draw bounding box Data drawGravity; ///< draw acceleration Data showArrowSize; ///< size of the axis @@ -126,7 +126,7 @@ class Kinect : public virtual core::objectmodel::BaseObject , depthMode ( initData ( &depthMode,"depthMode","depth mode" ) ) , ledMode ( initData ( &ledMode,"ledMode","led mode" ) ) , tiltAngle(initData(&tiltAngle,0,"tiltAngle","tilt angle in [-30,30]")) - , accelerometer(initData(&accelerometer,Vector3(0,0,0),"accelerometer","Accelerometer data")) + , accelerometer(initData(&accelerometer,Vec3(0,0,0),"accelerometer","Accelerometer data")) , drawBB(initData(&drawBB,true,"drawBB","draw bounding box")) , drawGravity(initData(&drawGravity,true,"drawGravity","draw acceleration")) , showArrowSize(initData(&showArrowSize,0.1f,"showArrowSize","size of the axis")) @@ -460,7 +460,7 @@ class Kinect : public virtual core::objectmodel::BaseObject freenect_raw_tilt_state* state = freenect_get_tilt_state(f_dev); double dx,dy,dz; freenect_get_mks_accel(state, &dx, &dy, &dz); - this->accelerometer.setValue(Vector3(dx,dy,dz)); + this->accelerometer.setValue(Vec3(dx,dy,dz)); } } @@ -472,20 +472,20 @@ class Kinect : public virtual core::objectmodel::BaseObject } - void getCorners(Vec<8,Vector3> &c) // get image corners + void getCorners(Vec<8,Vec3> &c) // get image corners { raDepth rimage(this->depthImage); const imCoord dim= rimage->getDimensions(); - Vec<8,Vector3> p; - p[0]=Vector3(-0.5,-0.5,-0.5); - p[1]=Vector3(dim[0]-0.5,-0.5,-0.5); - p[2]=Vector3(-0.5,dim[1]-0.5,-0.5); - p[3]=Vector3(dim[0]-0.5,dim[1]-0.5,-0.5); - p[4]=Vector3(-0.5,-0.5,dim[2]-0.5); - p[5]=Vector3(dim[0]-0.5,-0.5,dim[2]-0.5); - p[6]=Vector3(-0.5,dim[1]-0.5,dim[2]-0.5); - p[7]=Vector3(dim[0]-0.5,dim[1]-0.5,dim[2]-0.5); + Vec<8,Vec3> p; + p[0]=Vec3(-0.5,-0.5,-0.5); + p[1]=Vec3(dim[0]-0.5,-0.5,-0.5); + p[2]=Vec3(-0.5,dim[1]-0.5,-0.5); + p[3]=Vec3(dim[0]-0.5,dim[1]-0.5,-0.5); + p[4]=Vec3(-0.5,-0.5,dim[2]-0.5); + p[5]=Vec3(dim[0]-0.5,-0.5,dim[2]-0.5); + p[6]=Vec3(-0.5,dim[1]-0.5,dim[2]-0.5); + p[7]=Vec3(dim[0]-0.5,dim[1]-0.5,dim[2]-0.5); raTransform rtransform(this->depthTransform); for(unsigned int i=0; ifromImage(p[i]); @@ -494,7 +494,7 @@ class Kinect : public virtual core::objectmodel::BaseObject virtual void computeBBox(const core::ExecParams* params ) { if (!drawBB.getValue()) return; - Vec<8,Vector3> c; + Vec<8,Vec3> c; getCorners(c); Real bbmin[3] = {c[0][0],c[0][1],c[0][2]} , bbmax[3] = {c[0][0],c[0][1],c[0][2]}; @@ -527,7 +527,7 @@ class Kinect : public virtual core::objectmodel::BaseObject glColor4fv(color); glLineWidth(2.0); - Vec<8,Vector3> c; + Vec<8,Vec3> c; getCorners(c); glBegin(GL_LINE_LOOP); glVertex3d(c[0][0],c[0][1],c[0][2]); glVertex3d(c[1][0],c[1][1],c[1][2]); glVertex3d(c[3][0],c[3][1],c[3][2]); glVertex3d(c[2][0],c[2][1],c[2][2]); glEnd (); glBegin(GL_LINE_LOOP); glVertex3d(c[0][0],c[0][1],c[0][2]); glVertex3d(c[4][0],c[4][1],c[4][2]); glVertex3d(c[6][0],c[6][1],c[6][2]); glVertex3d(c[2][0],c[2][1],c[2][2]); glEnd (); @@ -541,8 +541,8 @@ class Kinect : public virtual core::objectmodel::BaseObject { const Vec<4,float> col(0,1,0,1); raTransform rtransform(this->depthTransform); - Vector3 camCenter = rtransform->fromImage(Vector3(-0.5,-0.5,-0.5)); - Vector3 acc = rtransform->qrotation.rotate(this->accelerometer.getValue()); + Vec3 camCenter = rtransform->fromImage(Vec3(-0.5,-0.5,-0.5)); + Vec3 acc = rtransform->qrotation.rotate(this->accelerometer.getValue()); vparams->drawTool()->drawArrow(camCenter, camCenter+acc*showArrowSize.getValue(), showArrowSize.getValue()*0.1, col); } diff --git a/applications/plugins/image/imagetoolbox/imagetoolbox.h b/applications/plugins/image/imagetoolbox/imagetoolbox.h index 9434c44014e..3f7013a5c71 100644 --- a/applications/plugins/image/imagetoolbox/imagetoolbox.h +++ b/applications/plugins/image/imagetoolbox/imagetoolbox.h @@ -49,7 +49,7 @@ namespace misc using namespace cimg_library; using type::Vec; -using type::Vector3; +using type::Vec3; template diff --git a/applications/tutorials/compositeObject/compositeObject.cpp b/applications/tutorials/compositeObject/compositeObject.cpp index cd9a2cefe61..7b31861c134 100644 --- a/applications/tutorials/compositeObject/compositeObject.cpp +++ b/applications/tutorials/compositeObject/compositeObject.cpp @@ -38,7 +38,7 @@ #include #include #include -#include +#include #include #include #include @@ -106,18 +106,18 @@ simulation::Node::SPtr createGridScene(Vec3 startPoint, Vec3 endPoint, unsigned using MechanicalObjectRigid3 = sofa::component::statecontainer::MechanicalObject; using UniformMassRigid3 = sofa::component::mass::UniformMass; using RigidMappingRigid3_to_3 = sofa::component::mapping::nonlinear::RigidMapping; - using FixedConstraintRigid3 = sofa::component::constraint::projective::FixedConstraint; + using FixedProjectiveConstraintRigid3 = sofa::component::constraint::projective::FixedProjectiveConstraint; // The rigid object Node::SPtr rigidNode = simulatedScene->createChild("rigidNode"); auto rigid_dof = addNew(rigidNode, "dof"); auto rigid_mass = addNew(rigidNode,"mass"); - auto rigid_fixedConstraint = addNew(rigidNode,"fixedConstraint"); + auto rigid_FixedProjectiveConstraint = addNew(rigidNode,"FixedProjectiveConstraint"); using MechanicalObject3 = sofa::component::statecontainer::MechanicalObject; using UniformMassRigid3 = sofa::component::mass::UniformMass; using RigidMappingRigid3_to_3 = sofa::component::mapping::nonlinear::RigidMapping; - using FixedConstraintRigid3 = sofa::component::constraint::projective::FixedConstraint; + using FixedProjectiveConstraintRigid3 = sofa::component::constraint::projective::FixedProjectiveConstraint; // Particles mapped to the rigid object auto mappedParticles = rigidNode->createChild("mappedParticles"); auto mappedParticles_dof = addNew< MechanicalObject3>(mappedParticles,"dof"); From adf7b83c9cbc90030061abe59d4ee5069c719498 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Sun, 25 Feb 2024 21:27:40 +0100 Subject: [PATCH 08/18] [all] Lifecycle v24.06 (2): remove Compat --- Sofa/Component/Compat/CMakeLists.txt | 71 ------------------- .../Compat/Sofa.Component.AnimationLoop.cmake | 10 --- ...ponent.Collision.Detection.Algorithm.cmake | 20 ------ ...ent.Collision.Detection.Intersection.cmake | 24 ------- .../Sofa.Component.Collision.Geometry.cmake | 26 ------- ...Component.Collision.Response.Contact.cmake | 24 ------- ....Component.Collision.Response.Mapper.cmake | 14 ---- .../Sofa.Component.CompatConfig.cmake.in | 12 ---- ...ent.Constraint.Lagrangian.Correction.cmake | 11 --- ...omponent.Constraint.Lagrangian.Model.cmake | 15 ---- ...mponent.Constraint.Lagrangian.Solver.cmake | 8 --- ...Sofa.Component.Constraint.Projective.cmake | 45 ------------ .../Compat/Sofa.Component.Controller.cmake | 7 -- .../Compat/Sofa.Component.Diffusion.cmake | 6 -- .../Sofa.Component.Engine.Analyze.cmake | 17 ----- .../Sofa.Component.Engine.Generate.cmake | 44 ------------ .../Compat/Sofa.Component.Engine.Select.cmake | 41 ----------- .../Sofa.Component.Engine.Transform.cmake | 35 --------- .../Compat/Sofa.Component.Haptics.cmake | 10 --- .../Compat/Sofa.Component.IO.Mesh.cmake | 27 ------- .../Sofa.Component.LinearSolver.Direct.cmake | 21 ------ ...ofa.Component.LinearSolver.Iterative.cmake | 14 ---- ...omponent.LinearSolver.Preconditioner.cmake | 14 ---- .../Sofa.Component.Mapping.Linear.cmake | 64 ----------------- .../Sofa.Component.Mapping.MappedMatrix.cmake | 9 --- .../Sofa.Component.Mapping.NonLinear.cmake | 20 ------ .../Compat/Sofa.Component.Mass.cmake | 13 ---- .../Sofa.Component.MechanicalLoad.cmake | 37 ---------- .../Sofa.Component.ODESolver.Backward.cmake | 10 --- .../Sofa.Component.ODESolver.Forward.cmake | 11 --- .../Compat/Sofa.Component.Playback.cmake | 17 ----- .../Compat/Sofa.Component.SceneUtility.cmake | 13 ---- .../Compat/Sofa.Component.Setting.cmake | 10 --- ...Component.SolidMechanics.FEM.Elastic.cmake | 37 ---------- ...nent.SolidMechanics.FEM.HyperElastic.cmake | 18 ----- ...ponent.SolidMechanics.FEM.NonUniform.cmake | 12 ---- ...Sofa.Component.SolidMechanics.Spring.cmake | 50 ------------- ....Component.SolidMechanics.TensorMass.cmake | 10 --- .../Sofa.Component.StateContainer.cmake | 8 --- ...omponent.Topology.Container.Constant.cmake | 8 --- ...Component.Topology.Container.Dynamic.cmake | 45 ------------ ...fa.Component.Topology.Container.Grid.cmake | 15 ---- .../Sofa.Component.Topology.Mapping.cmake | 13 ---- .../Sofa.Component.Topology.Utility.cmake | 8 --- .../Compat/Sofa.Component.Visual.cmake | 13 ---- .../Compat/Sofa.GL.Component.Engine.cmake | 6 -- .../Sofa.GL.Component.Rendering2D.cmake | 7 -- .../Sofa.GL.Component.Rendering3D.cmake | 13 ---- .../Compat/Sofa.GL.Component.Shader.cmake | 24 ------- .../Component/Compat/Sofa.GUI.Component.cmake | 29 -------- .../src/SofaBaseCollision/BVHNarrowPhase.h | 26 ------- .../src/SofaBaseCollision/BaseContactMapper.h | 26 ------- .../BaseProximityIntersection.h | 26 ------- .../SofaBaseCollision/BruteForceBroadPhase.h | 26 ------- .../SofaBaseCollision/BruteForceDetection.h | 26 ------- .../src/SofaBaseCollision/ContactListener.h | 25 ------- .../Compat/src/SofaBaseCollision/CubeModel.h | 26 ------- .../src/SofaBaseCollision/CylinderModel.h | 26 ------- .../src/SofaBaseCollision/CylinderModel.inl | 26 ------- .../SofaBaseCollision/DefaultContactManager.h | 26 ------- .../src/SofaBaseCollision/DefaultPipeline.h | 26 ------- .../SofaBaseCollision/DiscreteIntersection.h | 26 ------- .../MinProximityIntersection.h | 26 ------- .../src/SofaBaseCollision/MirrorIntersector.h | 26 ------- .../NewProximityIntersection.h | 26 ------- .../NewProximityIntersection.inl | 26 ------- .../src/SofaBaseCollision/SphereModel.h | 26 ------- .../src/SofaBaseCollision/SphereModel.inl | 26 ------- .../Compat/src/SofaBaseCollision/fwd.h | 24 ------- .../src/SofaBaseLinearSolver/CGLinearSolver.h | 26 ------- .../SofaBaseLinearSolver/CGLinearSolver.inl | 26 ------- .../GraphScatteredTypes.h | 26 ------- .../SofaBaseLinearSolver/MatrixLinearSolver.h | 26 ------- .../MatrixLinearSolver.inl | 26 ------- .../SofaBaseMechanics/AddMToMatrixFunctor.h | 26 ------- .../BarycentricMappers/BarycentricMapper.h | 26 ------- .../BarycentricMappers/BarycentricMapper.inl | 25 ------- .../BarycentricMapperEdgeSetTopology.h | 26 ------- .../BarycentricMapperEdgeSetTopology.inl | 25 ------- .../BarycentricMapperHexahedronSetTopology.h | 26 ------- ...BarycentricMapperHexahedronSetTopology.inl | 25 ------- .../BarycentricMapperMeshTopology.h | 26 ------- .../BarycentricMapperMeshTopology.inl | 25 ------- .../BarycentricMapperQuadSetTopology.h | 25 ------- .../BarycentricMapperQuadSetTopology.inl | 25 ------- .../BarycentricMapperRegularGridTopology.h | 26 ------- .../BarycentricMapperRegularGridTopology.inl | 25 ------- .../BarycentricMapperSparseGridTopology.h | 25 ------- .../BarycentricMapperSparseGridTopology.inl | 25 ------- .../BarycentricMapperTetrahedronSetTopology.h | 25 ------- ...arycentricMapperTetrahedronSetTopology.inl | 25 ------- .../BarycentricMapperTopologyContainer.h | 26 ------- .../BarycentricMapperTopologyContainer.inl | 25 ------- .../BarycentricMapperTriangleSetTopology.h | 26 ------- .../BarycentricMapperTriangleSetTopology.inl | 25 ------- .../TopologyBarycentricMapper.h | 25 ------- .../TopologyBarycentricMapper.inl | 25 ------- .../SofaBaseMechanics/BarycentricMapping.h | 25 ------- .../SofaBaseMechanics/BarycentricMapping.inl | 25 ------- .../src/SofaBaseMechanics/DiagonalMass.h | 26 ------- .../src/SofaBaseMechanics/DiagonalMass.inl | 26 ------- .../src/SofaBaseMechanics/IdentityMapping.h | 25 ------- .../src/SofaBaseMechanics/IdentityMapping.inl | 25 ------- .../src/SofaBaseMechanics/MappedObject.h | 25 ------- .../src/SofaBaseMechanics/MappedObject.inl | 25 ------- .../Compat/src/SofaBaseMechanics/MassType.h | 26 ------- .../src/SofaBaseMechanics/MechanicalObject.h | 25 ------- .../SofaBaseMechanics/MechanicalObject.inl | 25 ------- .../src/SofaBaseMechanics/SubsetMapping.h | 25 ------- .../src/SofaBaseMechanics/SubsetMapping.inl | 25 ------- .../src/SofaBaseMechanics/UniformMass.h | 26 ------- .../src/SofaBaseMechanics/UniformMass.inl | 26 ------- .../src/SofaBaseTopology/CommonAlgorithms.h | 25 ------- .../EdgeSetGeometryAlgorithms.h | 26 ------- .../EdgeSetGeometryAlgorithms.inl | 25 ------- .../EdgeSetTopologyAlgorithms.h | 25 ------- .../EdgeSetTopologyContainer.h | 25 ------- .../EdgeSetTopologyModifier.h | 28 -------- .../src/SofaBaseTopology/GridTopology.h | 33 --------- .../HexahedronSetGeometryAlgorithms.h | 25 ------- .../HexahedronSetGeometryAlgorithms.inl | 25 ------- .../HexahedronSetTopologyAlgorithms.h | 25 ------- .../HexahedronSetTopologyContainer.h | 25 ------- .../HexahedronSetTopologyModifier.h | 25 ------- .../src/SofaBaseTopology/MeshTopology.h | 25 ------- .../NumericalIntegrationDescriptor.h | 25 ------- .../NumericalIntegrationDescriptor.inl | 25 ------- .../PointSetGeometryAlgorithms.h | 25 ------- .../PointSetGeometryAlgorithms.inl | 25 ------- .../PointSetTopologyAlgorithms.h | 25 ------- .../PointSetTopologyContainer.h | 25 ------- .../PointSetTopologyModifier.h | 25 ------- .../QuadSetGeometryAlgorithms.h | 25 ------- .../QuadSetGeometryAlgorithms.inl | 25 ------- .../QuadSetTopologyAlgorithms.h | 25 ------- .../QuadSetTopologyContainer.h | 25 ------- .../QuadSetTopologyModifier.h | 26 ------- .../SofaBaseTopology/RegularGridTopology.h | 25 ------- .../src/SofaBaseTopology/SparseGridTopology.h | 25 ------- .../TetrahedronSetGeometryAlgorithms.h | 25 ------- .../TetrahedronSetGeometryAlgorithms.inl | 25 ------- .../TetrahedronSetTopologyAlgorithms.h | 25 ------- .../TetrahedronSetTopologyContainer.h | 26 ------- .../TetrahedronSetTopologyModifier.h | 25 ------- .../TriangleSetGeometryAlgorithms.h | 25 ------- .../TriangleSetGeometryAlgorithms.inl | 25 ------- .../TriangleSetTopologyAlgorithms.h | 25 ------- .../TriangleSetTopologyContainer.h | 25 ------- .../TriangleSetTopologyModifier.h | 25 ------- .../Compat/src/SofaBaseTopology/fwd.h | 31 -------- .../polygon_cube_intersection.h | 26 ------- .../polygon_cube_intersection/vec.h | 26 ------- .../src/SofaBaseUtils/AddResourceRepository.h | 25 ------- .../Compat/src/SofaBaseUtils/InfoComponent.h | 25 ------- .../src/SofaBaseUtils/MakeAliasComponent.h | 25 ------- .../SofaBaseUtils/MakeDataAliasComponent.h | 25 ------- .../SofaBaseUtils/messageHandlerComponent.h | 25 ------- .../src/SofaBaseVisual/BackgroundSetting.h | 25 ------- .../Compat/src/SofaBaseVisual/BaseCamera.h | 25 ------- .../Compat/src/SofaBaseVisual/Camera.h | 25 ------- .../src/SofaBaseVisual/InteractiveCamera.h | 25 ------- .../src/SofaBaseVisual/VisualModelImpl.h | 25 ------- .../Compat/src/SofaBaseVisual/VisualStyle.h | 26 ------- .../AffineMovementConstraint.h | 26 ------- .../AffineMovementConstraint.inl | 26 ------- .../SofaBoundaryCondition/ConicalForceField.h | 26 ------- .../ConicalForceField.inl | 26 ------- .../ConstantForceField.h | 26 ------- .../ConstantForceField.inl | 26 ------- .../DiagonalVelocityDampingForceField.h | 26 ------- .../DiagonalVelocityDampingForceField.inl | 26 ------- .../EdgePressureForceField.h | 26 ------- .../EdgePressureForceField.inl | 26 ------- .../EllipsoidForceField.h | 26 ------- .../EllipsoidForceField.inl | 26 ------- .../SofaBoundaryCondition/FixedConstraint.h | 26 ------- .../SofaBoundaryCondition/FixedConstraint.inl | 26 ------- .../FixedPlaneConstraint.h | 26 ------- .../FixedPlaneConstraint.inl | 26 ------- .../FixedRotationConstraint.h | 26 ------- .../FixedRotationConstraint.inl | 26 ------- .../FixedTranslationConstraint.h | 26 ------- .../FixedTranslationConstraint.inl | 26 ------- .../HermiteSplineConstraint.h | 26 ------- .../HermiteSplineConstraint.inl | 26 ------- .../SofaBoundaryCondition/LinearForceField.h | 26 ------- .../LinearForceField.inl | 26 ------- .../LinearMovementConstraint.h | 26 ------- .../LinearMovementConstraint.inl | 26 ------- .../LinearVelocityConstraint.h | 26 ------- .../LinearVelocityConstraint.inl | 26 ------- .../OscillatingTorsionPressureForceField.h | 26 ------- .../OscillatingTorsionPressureForceField.inl | 26 ------- .../OscillatorConstraint.h | 26 ------- .../OscillatorConstraint.inl | 26 ------- .../ParabolicConstraint.h | 26 ------- .../ParabolicConstraint.inl | 26 ------- .../PartialFixedConstraint.h | 26 ------- .../PartialFixedConstraint.inl | 26 ------- .../PartialLinearMovementConstraint.h | 26 ------- .../PartialLinearMovementConstraint.inl | 26 ------- .../PatchTestMovementConstraint.h | 26 ------- .../PatchTestMovementConstraint.inl | 26 ------- .../SofaBoundaryCondition/PlaneForceField.h | 26 ------- .../SofaBoundaryCondition/PlaneForceField.inl | 26 ------- .../PositionBasedDynamicsConstraint.h | 26 ------- .../PositionBasedDynamicsConstraint.inl | 26 ------- .../ProjectDirectionConstraint.h | 26 ------- .../ProjectDirectionConstraint.inl | 26 ------- .../ProjectToLineConstraint.h | 26 ------- .../ProjectToLineConstraint.inl | 26 ------- .../ProjectToPlaneConstraint.h | 26 ------- .../ProjectToPlaneConstraint.inl | 26 ------- .../ProjectToPointConstraint.h | 26 ------- .../ProjectToPointConstraint.inl | 26 ------- .../QuadPressureForceField.h | 26 ------- .../QuadPressureForceField.inl | 26 ------- .../SkeletalMotionConstraint.h | 26 ------- .../SkeletalMotionConstraint.inl | 26 ------- .../SofaBoundaryCondition/SphereForceField.h | 26 ------- .../SphereForceField.inl | 26 ------- .../SurfacePressureForceField.h | 26 ------- .../SurfacePressureForceField.inl | 26 ------- .../TaitSurfacePressureForceField.h | 26 ------- .../TaitSurfacePressureForceField.inl | 26 ------- .../SofaBoundaryCondition/TorsionForceField.h | 33 --------- .../TorsionForceField.inl | 26 ------- .../TrianglePressureForceField.h | 26 ------- .../TrianglePressureForceField.inl | 26 ------- .../UniformVelocityDampingForceField.h | 26 ------- .../UniformVelocityDampingForceField.inl | 26 ------- .../BilateralConstraintResolution.h | 26 ------- .../BilateralInteractionConstraint.h | 26 ------- .../BilateralInteractionConstraint.inl | 26 ------- .../SofaConstraint/ConstraintAnimationLoop.h | 26 ------- .../ConstraintAttachBodyPerformer.h | 49 ------------- .../ConstraintAttachBodyPerformer.inl | 25 ------- .../src/SofaConstraint/ConstraintSolverImpl.h | 26 ------- .../ConstraintStoreLambdaVisitor.h | 26 ------- .../src/SofaConstraint/ContactIdentifier.h | 25 ------- .../SofaConstraint/FreeMotionAnimationLoop.h | 26 ------- .../src/SofaConstraint/FreeMotionTask.h | 26 ------- .../src/SofaConstraint/FrictionContact.h | 25 ------- .../src/SofaConstraint/FrictionContact.inl | 27 ------- .../GenericConstraintCorrection.h | 26 ------- .../SofaConstraint/GenericConstraintSolver.h | 26 ------- .../src/SofaConstraint/LCPConstraintSolver.h | 26 ------- .../LinearSolverConstraintCorrection.h | 26 ------- .../LinearSolverConstraintCorrection.inl | 26 ------- .../src/SofaConstraint/LocalMinDistance.h | 26 ------- .../MappingGeometricStiffnessForceField.h | 25 ------- .../MappingGeometricStiffnessForceField.inl | 25 ------- .../PrecomputedConstraintCorrection.h | 26 ------- .../PrecomputedConstraintCorrection.inl | 26 ------- .../src/SofaConstraint/SlidingConstraint.h | 26 ------- .../src/SofaConstraint/SlidingConstraint.inl | 26 ------- .../SofaConstraint/StickContactConstraint.h | 25 ------- .../SofaConstraint/StickContactConstraint.inl | 27 ------- .../src/SofaConstraint/StopperConstraint.h | 26 ------- .../src/SofaConstraint/StopperConstraint.inl | 26 ------- .../UncoupledConstraintCorrection.h | 26 ------- .../UncoupledConstraintCorrection.inl | 26 ------- .../src/SofaConstraint/UniformConstraint.h | 26 ------- .../src/SofaConstraint/UniformConstraint.inl | 26 ------- .../UnilateralInteractionConstraint.h | 26 ------- .../UnilateralInteractionConstraint.inl | 26 ------- .../SofaDeformable/AngularSpringForceField.h | 26 ------- .../AngularSpringForceField.inl | 26 ------- .../src/SofaDeformable/MeshSpringForceField.h | 26 ------- .../SofaDeformable/MeshSpringForceField.inl | 26 ------- .../PolynomialRestShapeSpringsForceField.h | 26 ------- .../PolynomialRestShapeSpringsForceField.inl | 26 ------- .../PolynomialSpringsForceField.h | 26 ------- .../PolynomialSpringsForceField.inl | 26 ------- .../RestShapeSpringsForceField.h | 26 ------- .../RestShapeSpringsForceField.inl | 26 ------- .../src/SofaDeformable/SpringForceField.h | 26 ------- .../src/SofaDeformable/SpringForceField.inl | 26 ------- .../SofaDeformable/StiffSpringForceField.h | 26 ------- .../SofaDeformable/StiffSpringForceField.inl | 26 ------- .../src/SofaDenseSolver/SVDLinearSolver.h | 26 ------- Sofa/Component/Compat/src/SofaEngine/BoxROI.h | 26 ------- .../Compat/src/SofaEngine/BoxROI.inl | 26 ------- .../src/SofaExplicitOdeSolver/EulerSolver.h | 26 ------- .../Compat/src/SofaExporter/BlenderExporter.h | 26 ------- .../src/SofaExporter/BlenderExporter.inl | 25 ------- .../Compat/src/SofaExporter/MeshExporter.h | 26 ------- .../Compat/src/SofaExporter/STLExporter.h | 26 ------- .../Compat/src/SofaExporter/VTKExporter.h | 26 ------- .../src/SofaExporter/VisualModelOBJExporter.h | 26 ------- .../Compat/src/SofaExporter/WriteState.h | 26 ------- .../Compat/src/SofaExporter/WriteState.inl | 25 ------- .../Compat/src/SofaExporter/WriteTopology.h | 26 ------- .../Compat/src/SofaExporter/WriteTopology.inl | 25 ------- .../MechanicalMatrixMapper.h | 25 ------- .../MechanicalMatrixMapper.inl | 25 ------- .../MultiStepAnimationLoop.h | 26 ------- .../MultiTagAnimationLoop.h | 26 ------- .../FastTriangularBendingSprings.h | 26 ------- .../FastTriangularBendingSprings.inl | 26 ------- .../FrameSpringForceField.h | 26 ------- .../FrameSpringForceField.inl | 26 ------- .../QuadBendingSprings.h | 26 ------- .../QuadBendingSprings.inl | 26 ------- .../QuadularBendingSprings.h | 26 ------- .../QuadularBendingSprings.inl | 26 ------- .../RegularGridSpringForceField.h | 26 ------- .../RegularGridSpringForceField.inl | 26 ------- .../TriangleBendingSprings.h | 26 ------- .../TriangleBendingSprings.inl | 26 ------- .../TriangularBendingSprings.h | 26 ------- .../TriangularBendingSprings.inl | 26 ------- .../TriangularBiquadraticSpringsForceField.h | 26 ------- ...TriangularBiquadraticSpringsForceField.inl | 26 ------- .../TriangularQuadraticSpringsForceField.h | 26 ------- .../TriangularQuadraticSpringsForceField.inl | 26 ------- .../TriangularTensorMassForceField.h | 26 ------- .../TriangularTensorMassForceField.inl | 26 ------- .../VectorSpringForceField.h | 26 ------- .../VectorSpringForceField.inl | 26 ------- .../src/SofaGeneralEngine/AverageCoord.h | 26 ------- .../src/SofaGeneralEngine/AverageCoord.inl | 26 ------- .../src/SofaGeneralEngine/ClusteringEngine.h | 26 ------- .../SofaGeneralEngine/ClusteringEngine.inl | 26 ------- .../src/SofaGeneralEngine/ComplementaryROI.h | 26 ------- .../SofaGeneralEngine/ComplementaryROI.inl | 26 ------- .../src/SofaGeneralEngine/DifferenceEngine.h | 26 ------- .../SofaGeneralEngine/DifferenceEngine.inl | 26 ------- .../src/SofaGeneralEngine/DilateEngine.h | 26 ------- .../src/SofaGeneralEngine/DilateEngine.inl | 26 ------- .../ExtrudeEdgesAndGenerateQuads.h | 26 ------- .../ExtrudeEdgesAndGenerateQuads.inl | 26 ------- .../ExtrudeQuadsAndGenerateHexas.h | 26 ------- .../ExtrudeQuadsAndGenerateHexas.inl | 26 ------- .../src/SofaGeneralEngine/ExtrudeSurface.h | 26 ------- .../src/SofaGeneralEngine/ExtrudeSurface.inl | 26 ------- .../src/SofaGeneralEngine/GenerateCylinder.h | 26 ------- .../SofaGeneralEngine/GenerateCylinder.inl | 26 ------- .../src/SofaGeneralEngine/GenerateGrid.h | 26 ------- .../src/SofaGeneralEngine/GenerateGrid.inl | 26 ------- .../src/SofaGeneralEngine/GenerateRigidMass.h | 26 ------- .../SofaGeneralEngine/GenerateRigidMass.inl | 26 ------- .../src/SofaGeneralEngine/GenerateSphere.h | 26 ------- .../src/SofaGeneralEngine/GenerateSphere.inl | 26 ------- .../GroupFilterYoungModulus.h | 26 ------- .../GroupFilterYoungModulus.inl | 26 ------- .../src/SofaGeneralEngine/HausdorffDistance.h | 26 ------- .../SofaGeneralEngine/HausdorffDistance.inl | 26 ------- .../src/SofaGeneralEngine/IndexValueMapper.h | 26 ------- .../SofaGeneralEngine/IndexValueMapper.inl | 26 ------- .../SofaGeneralEngine/Indices2ValuesMapper.h | 26 ------- .../Indices2ValuesMapper.inl | 26 ------- .../src/SofaGeneralEngine/IndicesFromValues.h | 26 ------- .../SofaGeneralEngine/IndicesFromValues.inl | 26 ------- .../Compat/src/SofaGeneralEngine/JoinPoints.h | 26 ------- .../src/SofaGeneralEngine/JoinPoints.inl | 26 ------- .../Compat/src/SofaGeneralEngine/MapIndices.h | 26 ------- .../src/SofaGeneralEngine/MapIndices.inl | 26 ------- .../Compat/src/SofaGeneralEngine/MathOp.h | 26 ------- .../Compat/src/SofaGeneralEngine/MathOp.inl | 26 ------- .../src/SofaGeneralEngine/MergeMeshes.h | 26 ------- .../src/SofaGeneralEngine/MergeMeshes.inl | 26 ------- .../src/SofaGeneralEngine/MergePoints.h | 26 ------- .../src/SofaGeneralEngine/MergePoints.inl | 26 ------- .../Compat/src/SofaGeneralEngine/MergeROIs.h | 26 ------- .../Compat/src/SofaGeneralEngine/MergeSets.h | 26 ------- .../src/SofaGeneralEngine/MergeSets.inl | 26 ------- .../src/SofaGeneralEngine/MergeVectors.h | 26 ------- .../src/SofaGeneralEngine/MergeVectors.inl | 26 ------- .../MeshBarycentricMapperEngine.h | 26 ------- .../MeshBarycentricMapperEngine.inl | 26 ------- .../src/SofaGeneralEngine/MeshBoundaryROI.h | 26 ------- .../src/SofaGeneralEngine/MeshClosingEngine.h | 26 ------- .../SofaGeneralEngine/MeshClosingEngine.inl | 26 ------- .../Compat/src/SofaGeneralEngine/MeshROI.h | 26 ------- .../Compat/src/SofaGeneralEngine/MeshROI.inl | 26 ------- .../src/SofaGeneralEngine/MeshSampler.h | 26 ------- .../src/SofaGeneralEngine/MeshSampler.inl | 26 ------- .../SofaGeneralEngine/MeshSplittingEngine.h | 26 ------- .../SofaGeneralEngine/MeshSplittingEngine.inl | 26 ------- .../src/SofaGeneralEngine/MeshSubsetEngine.h | 26 ------- .../SofaGeneralEngine/MeshSubsetEngine.inl | 26 ------- .../src/SofaGeneralEngine/NearestPointROI.h | 26 ------- .../src/SofaGeneralEngine/NearestPointROI.inl | 26 ------- .../Compat/src/SofaGeneralEngine/NormEngine.h | 26 ------- .../src/SofaGeneralEngine/NormEngine.inl | 26 ------- .../src/SofaGeneralEngine/NormalsFromPoints.h | 26 ------- .../SofaGeneralEngine/NormalsFromPoints.inl | 26 ------- .../Compat/src/SofaGeneralEngine/PairBoxRoi.h | 26 ------- .../src/SofaGeneralEngine/PairBoxRoi.inl | 26 ------- .../Compat/src/SofaGeneralEngine/PlaneROI.h | 26 ------- .../Compat/src/SofaGeneralEngine/PlaneROI.inl | 26 ------- .../src/SofaGeneralEngine/PointsFromIndices.h | 26 ------- .../SofaGeneralEngine/PointsFromIndices.inl | 26 ------- .../src/SofaGeneralEngine/ProximityROI.h | 26 ------- .../src/SofaGeneralEngine/ProximityROI.inl | 26 ------- .../src/SofaGeneralEngine/QuatToRigidEngine.h | 26 ------- .../SofaGeneralEngine/QuatToRigidEngine.inl | 26 ------- .../src/SofaGeneralEngine/ROIValueMapper.h | 26 ------- .../RandomPointDistributionInSurface.h | 26 ------- .../RandomPointDistributionInSurface.inl | 26 ------- .../src/SofaGeneralEngine/RigidToQuatEngine.h | 26 ------- .../SofaGeneralEngine/RigidToQuatEngine.inl | 26 ------- .../SelectConnectedLabelsROI.h | 26 ------- .../src/SofaGeneralEngine/SelectLabelROI.h | 33 --------- .../src/SofaGeneralEngine/ShapeMatching.h | 26 ------- .../src/SofaGeneralEngine/ShapeMatching.inl | 26 ------- .../src/SofaGeneralEngine/SmoothMeshEngine.h | 26 ------- .../SofaGeneralEngine/SmoothMeshEngine.inl | 26 ------- .../Compat/src/SofaGeneralEngine/SphereROI.h | 26 ------- .../src/SofaGeneralEngine/SphereROI.inl | 26 ------- .../Compat/src/SofaGeneralEngine/Spiral.h | 26 ------- .../Compat/src/SofaGeneralEngine/Spiral.inl | 26 ------- .../src/SofaGeneralEngine/SubsetTopology.h | 26 ------- .../src/SofaGeneralEngine/SubsetTopology.inl | 26 ------- .../Compat/src/SofaGeneralEngine/SumEngine.h | 26 ------- .../src/SofaGeneralEngine/SumEngine.inl | 26 ------- .../SofaGeneralEngine/TextureInterpolation.h | 25 ------- .../TextureInterpolation.inl | 25 ------- .../src/SofaGeneralEngine/TransformEngine.h | 26 ------- .../src/SofaGeneralEngine/TransformEngine.inl | 26 ------- .../SofaGeneralEngine/TransformMatrixEngine.h | 26 ------- .../src/SofaGeneralEngine/TransformPosition.h | 26 ------- .../SofaGeneralEngine/TransformPosition.inl | 26 ------- .../src/SofaGeneralEngine/ValuesFromIndices.h | 26 ------- .../SofaGeneralEngine/ValuesFromIndices.inl | 26 ------- .../SofaGeneralEngine/ValuesFromPositions.h | 26 ------- .../SofaGeneralEngine/ValuesFromPositions.inl | 26 ------- .../src/SofaGeneralEngine/Vertex2Frame.h | 26 ------- .../src/SofaGeneralEngine/Vertex2Frame.inl | 26 ------- .../CentralDifferenceSolver.h | 25 ------- .../RungeKutta2Solver.h | 26 ------- .../RungeKutta4Solver.h | 26 ------- .../VariationalSymplecticSolver.h | 26 ------- .../SofaGeneralLinearSolver/BTDLinearSolver.h | 26 ------- .../BTDLinearSolver.inl | 26 ------- .../SofaGeneralLinearSolver/CholeskySolver.h | 26 ------- .../CholeskySolver.inl | 26 ------- .../MinResLinearSolver.h | 26 ------- .../MinResLinearSolver.inl | 26 ------- .../src/SofaGeneralLoader/GIDMeshLoader.h | 26 ------- .../src/SofaGeneralLoader/GridMeshCreator.h | 26 ------- .../src/SofaGeneralLoader/InputEventReader.h | 26 ------- .../src/SofaGeneralLoader/MeshGmshLoader.h | 26 ------- .../src/SofaGeneralLoader/MeshOffLoader.h | 26 ------- .../src/SofaGeneralLoader/MeshSTLLoader.h | 26 ------- .../src/SofaGeneralLoader/MeshTrianLoader.h | 26 ------- .../src/SofaGeneralLoader/MeshXspLoader.h | 26 ------- .../src/SofaGeneralLoader/OffSequenceLoader.h | 26 ------- .../Compat/src/SofaGeneralLoader/ReadState.h | 26 ------- .../src/SofaGeneralLoader/ReadState.inl | 25 ------- .../src/SofaGeneralLoader/ReadTopology.h | 26 ------- .../src/SofaGeneralLoader/ReadTopology.inl | 25 ------- .../src/SofaGeneralLoader/SphereLoader.h | 26 ------- .../src/SofaGeneralLoader/StringMeshCreator.h | 26 ------- .../src/SofaGeneralLoader/VoxelGridLoader.h | 26 ------- .../src/SofaGeneralMeshCollision/DSAPBox.h | 26 ------- .../src/SofaGeneralMeshCollision/DirectSAP.h | 26 ------- .../DirectSAPNarrowPhase.h | 26 ------- .../src/SofaGeneralMeshCollision/IncrSAP.h | 26 ------- .../MeshDiscreteIntersection.h | 26 ------- .../MeshDiscreteIntersection.inl | 26 ------- .../MeshMinProximityIntersection.h | 26 ------- .../RayTraceNarrowPhase.h | 26 ------- .../SofaGeneralMeshCollision/TriangleOctree.h | 26 ------- .../TriangleOctreeModel.h | 26 ------- .../AttachConstraint.h | 26 ------- .../AttachConstraint.inl | 26 ------- .../InteractionEllipsoidForceField.h | 26 ------- .../InteractionEllipsoidForceField.inl | 26 ------- .../RepulsiveSpringForceField.h | 26 ------- .../RepulsiveSpringForceField.inl | 26 ------- .../SofaGeneralRigid/LineSetSkinningMapping.h | 25 ------- .../LineSetSkinningMapping.inl | 25 ------- .../src/SofaGeneralRigid/SkinningMapping.h | 25 ------- .../src/SofaGeneralRigid/SkinningMapping.inl | 25 ------- .../SofaGeneralSimpleFem/BeamFEMForceField.h | 26 ------- .../BeamFEMForceField.inl | 26 ------- .../HexahedralFEMForceField.h | 26 ------- .../HexahedralFEMForceField.inl | 26 ------- .../HexahedralFEMForceFieldAndMass.h | 26 ------- .../HexahedralFEMForceFieldAndMass.inl | 26 ------- .../HexahedronFEMForceFieldAndMass.h | 26 ------- .../HexahedronFEMForceFieldAndMass.inl | 26 ------- .../TetrahedralCorotationalFEMForceField.h | 26 ------- .../TetrahedralCorotationalFEMForceField.inl | 26 ------- .../TriangularFEMForceFieldOptim.h | 26 ------- .../TriangularFEMForceFieldOptim.inl | 26 ------- .../src/SofaGeneralTopology/CubeTopology.h | 25 ------- .../CylinderGridTopology.h | 25 ------- .../SofaGeneralTopology/SphereGridTopology.h | 25 ------- .../SofaGeneralTopology/SphereQuadTopology.h | 25 ------- .../src/SofaGeneralVisual/RecordedCamera.h | 25 ------- .../src/SofaGeneralVisual/Visual3DText.h | 25 ------- .../src/SofaGeneralVisual/VisualTransform.h | 25 ------- .../src/SofaGraphComponent/APIVersion.h | 25 ------- .../AddFrameButtonSetting.h | 34 --------- .../AddRecordedCameraButtonSetting.h | 34 --------- .../AttachBodyButtonSetting.h | 35 --------- .../FixPickedParticleButtonSetting.h | 34 --------- .../SofaGraphComponent/MouseButtonSetting.h | 25 ------- .../src/SofaGraphComponent/PauseAnimation.h | 25 ------- .../PauseAnimationOnEvent.h | 25 ------- .../SofaDefaultPathSetting.h | 25 ------- .../src/SofaGraphComponent/StatsSetting.h | 25 ------- .../src/SofaGraphComponent/ViewerSetting.h | 25 ------- .../Compat/src/SofaGraphComponent/init.h | 29 -------- .../Compat/src/SofaHaptics/ForceFeedback.h | 26 ------- .../Compat/src/SofaHaptics/LCPForceFeedback.h | 26 ------- .../src/SofaHaptics/LCPForceFeedback.inl | 26 ------- .../MechanicalStateForceFeedback.h | 26 ------- .../src/SofaHaptics/NullForceFeedback.h | 26 ------- .../src/SofaHaptics/NullForceFeedbackT.h | 26 ------- .../EulerImplicitSolver.h | 26 ------- .../src/SofaImplicitOdeSolver/StaticSolver.h | 26 ------- .../Compat/src/SofaLoader/BaseVTKReader.h | 26 ------- .../Compat/src/SofaLoader/BaseVTKReader.inl | 25 ------- .../Compat/src/SofaLoader/MeshOBJLoader.h | 26 ------- .../Compat/src/SofaLoader/MeshVTKLoader.h | 26 ------- .../BarycentricContactMapper.h | 26 ------- .../BarycentricContactMapper.inl | 26 ------- .../BarycentricPenalityContact.h | 25 ------- .../BarycentricPenalityContact.inl | 28 -------- .../src/SofaMeshCollision/CollisionPM.h | 26 ------- .../Compat/src/SofaMeshCollision/EndPoint.h | 26 ------- .../SofaMeshCollision/IdentityContactMapper.h | 26 ------- .../IdentityContactMapper.inl | 26 ------- .../Compat/src/SofaMeshCollision/LineModel.h | 26 ------- .../src/SofaMeshCollision/LineModel.inl | 26 ------- .../MeshNewProximityIntersection.h | 26 ------- .../MeshNewProximityIntersection.inl | 28 -------- .../Compat/src/SofaMeshCollision/PointModel.h | 26 ------- .../src/SofaMeshCollision/PointModel.inl | 26 ------- .../SofaMeshCollision/RigidContactMapper.h | 26 ------- .../SofaMeshCollision/RigidContactMapper.inl | 26 ------- .../SofaMeshCollision/SubsetContactMapper.h | 26 ------- .../SofaMeshCollision/SubsetContactMapper.inl | 26 ------- .../src/SofaMeshCollision/TriangleModel.h | 26 ------- .../src/SofaMeshCollision/TriangleModel.inl | 26 ------- .../BarycentricStickContact.h | 25 ------- .../BarycentricStickContact.inl | 28 -------- .../RuleBasedContactManager.h | 25 ------- .../TetrahedronDiscreteIntersection.h | 26 ------- .../src/SofaMiscCollision/TetrahedronModel.h | 26 ------- .../TriangleModelInRegularGrid.h | 26 ------- .../SofaMiscEngine/DisplacementMatrixEngine.h | 26 ------- .../DisplacementMatrixEngine.inl | 26 ------- .../Compat/src/SofaMiscEngine/Distances.h | 26 ------- .../Compat/src/SofaMiscEngine/Distances.inl | 26 ------- .../ProjectiveTransformEngine.h | 26 ------- .../ProjectiveTransformEngine.inl | 26 ------- .../src/SofaMiscExtra/MeshTetraStuffing.h | 26 ------- .../Compat/src/SofaMiscFem/BaseMaterial.h | 26 ------- .../Compat/src/SofaMiscFem/BoyceAndArruda.h | 26 ------- Sofa/Component/Compat/src/SofaMiscFem/Costa.h | 26 ------- .../FastTetrahedralCorotationalForceField.h | 26 ------- .../FastTetrahedralCorotationalForceField.inl | 26 ------- .../src/SofaMiscFem/HyperelasticMaterial.h | 26 ------- .../Compat/src/SofaMiscFem/MooneyRivlin.h | 26 ------- .../Compat/src/SofaMiscFem/NeoHookean.h | 26 ------- Sofa/Component/Compat/src/SofaMiscFem/Ogden.h | 26 ------- .../Compat/src/SofaMiscFem/PlasticMaterial.h | 26 ------- .../SofaMiscFem/QuadBendingFEMForceField.h | 26 ------- .../SofaMiscFem/QuadBendingFEMForceField.inl | 26 ------- .../src/SofaMiscFem/STVenantKirchhoff.h | 26 ------- .../StandardTetrahedralFEMForceField.h | 26 ------- .../StandardTetrahedralFEMForceField.inl | 26 ------- .../TetrahedralTensorMassForceField.h | 26 ------- .../TetrahedralTensorMassForceField.inl | 26 ------- .../TetrahedronHyperelasticityFEMForceField.h | 26 ------- ...etrahedronHyperelasticityFEMForceField.inl | 26 ------- .../src/SofaMiscFem/TriangleFEMForceField.h | 26 ------- .../src/SofaMiscFem/TriangleFEMForceField.inl | 26 ------- .../TriangularAnisotropicFEMForceField.h | 26 ------- .../TriangularAnisotropicFEMForceField.inl | 26 ------- .../src/SofaMiscFem/TriangularFEMForceField.h | 26 ------- .../SofaMiscFem/TriangularFEMForceField.inl | 26 ------- .../Compat/src/SofaMiscFem/VerondaWestman.h | 26 ------- .../SofaMiscForceField/GearSpringForceField.h | 26 ------- .../GearSpringForceField.inl | 26 ------- .../src/SofaMiscForceField/MeshMatrixMass.h | 26 ------- .../src/SofaMiscForceField/MeshMatrixMass.inl | 26 ------- .../SofaMiscMapping/BarycentricMappingRigid.h | 25 ------- .../BarycentricMappingRigid.inl | 25 ------- .../src/SofaMiscMapping/BeamLinearMapping.h | 25 ------- .../src/SofaMiscMapping/BeamLinearMapping.inl | 25 ------- .../src/SofaMiscMapping/CenterOfMassMapping.h | 25 ------- .../SofaMiscMapping/CenterOfMassMapping.inl | 25 ------- .../CenterOfMassMappingOperation.h | 25 ------- .../CenterOfMassMulti2Mapping.h | 25 ------- .../CenterOfMassMulti2Mapping.inl | 25 ------- .../CenterOfMassMultiMapping.h | 25 ------- .../CenterOfMassMultiMapping.inl | 25 ------- .../DeformableOnRigidFrameMapping.h | 25 ------- .../DeformableOnRigidFrameMapping.inl | 25 ------- .../DistanceFromTargetMapping.h | 25 ------- .../DistanceFromTargetMapping.inl | 25 ------- .../src/SofaMiscMapping/DistanceMapping.h | 25 ------- .../src/SofaMiscMapping/DistanceMapping.inl | 25 ------- .../SofaMiscMapping/IdentityMultiMapping.h | 25 ------- .../SofaMiscMapping/IdentityMultiMapping.inl | 25 ------- .../SofaMiscMapping/SquareDistanceMapping.h | 25 ------- .../SofaMiscMapping/SquareDistanceMapping.inl | 25 ------- .../src/SofaMiscMapping/SquareMapping.h | 25 ------- .../src/SofaMiscMapping/SquareMapping.inl | 25 ------- .../src/SofaMiscMapping/SubsetMultiMapping.h | 25 ------- .../SofaMiscMapping/SubsetMultiMapping.inl | 25 ------- .../src/SofaMiscMapping/TubularMapping.h | 25 ------- .../src/SofaMiscMapping/TubularMapping.inl | 25 ------- .../Compat/src/SofaMiscMapping/VoidMapping.h | 25 ------- .../src/SofaMiscSolver/DampVelocitySolver.h | 26 ------- .../SofaMiscSolver/NewmarkImplicitSolver.h | 26 ------- .../TopologicalChangeProcessor.h | 25 ------- .../TopologyBoundingTrasher.h | 25 ------- .../TopologyBoundingTrasher.inl | 25 ------- .../src/SofaMiscTopology/TopologyChecker.h | 25 ------- .../DynamicSparseGridGeometryAlgorithms.h | 25 ------- .../DynamicSparseGridGeometryAlgorithms.inl | 25 ------- .../DynamicSparseGridTopologyAlgorithms.h | 25 ------- .../DynamicSparseGridTopologyContainer.h | 25 ------- .../DynamicSparseGridTopologyModifier.h | 25 ------- .../HexahedronCompositeFEMForceFieldAndMass.h | 26 ------- ...exahedronCompositeFEMForceFieldAndMass.inl | 26 ------- .../HexahedronCompositeFEMMapping.h | 26 ------- .../HexahedronCompositeFEMMapping.inl | 26 ------- ...MultilevelHexahedronSetTopologyContainer.h | 25 ------- ...NonUniformHexahedralFEMForceFieldAndMass.h | 26 ------- ...nUniformHexahedralFEMForceFieldAndMass.inl | 26 ------- ...NonUniformHexahedronFEMForceFieldAndMass.h | 26 ------- ...nUniformHexahedronFEMForceFieldAndMass.inl | 26 ------- .../SparseGridMultipleTopology.h | 25 ------- .../SparseGridRamificationTopology.h | 25 ------- .../PenalityContactForceField.h | 25 ------- .../PenalityContactForceField.inl | 25 ------- .../Compat/src/SofaOpenglVisual/ClipPlane.h | 34 --------- .../SofaOpenglVisual/CompositingVisualLoop.h | 34 --------- .../Compat/src/SofaOpenglVisual/DataDisplay.h | 34 --------- .../Compat/src/SofaOpenglVisual/Light.h | 34 --------- .../src/SofaOpenglVisual/LightManager.h | 34 --------- .../src/SofaOpenglVisual/MergeVisualModels.h | 34 --------- .../src/SofaOpenglVisual/OglAttribute.h | 34 --------- .../src/SofaOpenglVisual/OglAttribute.inl | 33 --------- .../Compat/src/SofaOpenglVisual/OglColorMap.h | 34 --------- .../src/SofaOpenglVisual/OglCylinderModel.h | 34 --------- .../Compat/src/SofaOpenglVisual/OglGrid.h | 34 --------- .../Compat/src/SofaOpenglVisual/OglLabel.h | 34 --------- .../Compat/src/SofaOpenglVisual/OglLineAxis.h | 34 --------- .../Compat/src/SofaOpenglVisual/OglModel.h | 34 --------- .../src/SofaOpenglVisual/OglOITShader.h | 34 --------- .../src/SofaOpenglVisual/OglRenderingSRGB.h | 34 --------- .../src/SofaOpenglVisual/OglSceneFrame.h | 34 --------- .../Compat/src/SofaOpenglVisual/OglShader.h | 34 --------- .../src/SofaOpenglVisual/OglShaderMacro.h | 34 --------- .../SofaOpenglVisual/OglShaderVisualModel.h | 34 --------- .../src/SofaOpenglVisual/OglShadowShader.h | 34 --------- .../Compat/src/SofaOpenglVisual/OglTexture.h | 34 --------- .../src/SofaOpenglVisual/OglTexturePointer.h | 34 --------- .../Compat/src/SofaOpenglVisual/OglVariable.h | 34 --------- .../src/SofaOpenglVisual/OglVariable.inl | 26 ------- .../Compat/src/SofaOpenglVisual/OglViewport.h | 34 --------- .../OrderIndependentTransparencyManager.h | 34 --------- .../src/SofaOpenglVisual/PointSplatModel.h | 35 --------- .../src/SofaOpenglVisual/PostProcessManager.h | 34 --------- .../SofaOpenglVisual/SlicedVolumetricModel.h | 34 --------- .../src/SofaOpenglVisual/VisualManagerPass.h | 34 --------- .../VisualManagerSecondaryPass.h | 34 --------- .../BlockJacobiPreconditioner.h | 26 ------- .../BlockJacobiPreconditioner.inl | 26 ------- .../SofaPreconditioner/JacobiPreconditioner.h | 26 ------- .../JacobiPreconditioner.inl | 26 ------- .../PrecomputedWarpPreconditioner.h | 26 ------- .../PrecomputedWarpPreconditioner.inl | 26 ------- .../SofaPreconditioner/SSORPreconditioner.h | 26 ------- .../SofaPreconditioner/SSORPreconditioner.inl | 26 ------- .../ShewchukPCGLinearSolver.h | 26 ------- .../SofaPreconditioner/WarpPreconditioner.h | 26 ------- .../SofaPreconditioner/WarpPreconditioner.inl | 26 ------- .../Compat/src/SofaRigid/JointSpring.h | 26 ------- .../Compat/src/SofaRigid/JointSpring.inl | 26 ------- .../src/SofaRigid/JointSpringForceField.h | 26 ------- .../src/SofaRigid/JointSpringForceField.inl | 26 ------- .../Compat/src/SofaRigid/RigidMapping.h | 25 ------- .../Compat/src/SofaRigid/RigidMapping.inl | 25 ------- .../Compat/src/SofaRigid/RigidRigidMapping.h | 25 ------- .../src/SofaRigid/RigidRigidMapping.inl | 25 ------- .../SofaSimpleFem/HexahedronFEMForceField.h | 26 ------- .../SofaSimpleFem/HexahedronFEMForceField.inl | 26 ------- .../TetrahedronDiffusionFEMForceField.h | 26 ------- .../TetrahedronDiffusionFEMForceField.inl | 26 ------- .../SofaSimpleFem/TetrahedronFEMForceField.h | 26 ------- .../TetrahedronFEMForceField.inl | 26 ------- Sofa/Component/Compat/src/SofaSimpleFem/fwd.h | 26 ------- .../SofaSparseSolver/FillReducingOrdering.h | 33 --------- .../SofaSparseSolver/FillReducingOrdering.inl | 33 --------- .../PrecomputedLinearSolver.h | 26 ------- .../PrecomputedLinearSolver.inl | 26 ------- .../SofaSparseSolver/SparseCholeskySolver.h | 28 -------- .../src/SofaSparseSolver/SparseLDLSolver.h | 26 ------- .../src/SofaSparseSolver/SparseLDLSolver.inl | 26 ------- .../SofaSparseSolver/SparseLDLSolverImpl.h | 26 ------- .../src/SofaSparseSolver/SparseLUSolver.h | 28 -------- .../src/SofaSparseSolver/SparseLUSolver.inl | 28 -------- .../CenterPointTopologicalMapping.h | 25 ------- .../Edge2QuadTopologicalMapping.h | 25 ------- .../Hexa2QuadTopologicalMapping.h | 25 ------- .../Hexa2TetraTopologicalMapping.h | 25 ------- .../IdentityTopologicalMapping.h | 25 ------- .../Mesh2PointMechanicalMapping.h | 25 ------- .../Mesh2PointMechanicalMapping.inl | 25 ------- .../Quad2TriangleTopologicalMapping.h | 25 ------- .../SimpleTesselatedTetraMechanicalMapping.h | 25 ------- ...SimpleTesselatedTetraMechanicalMapping.inl | 25 ------- .../SubsetTopologicalMapping.h | 25 ------- .../Tetra2TriangleTopologicalMapping.h | 25 ------- .../Triangle2EdgeTopologicalMapping.h | 25 ------- .../AddRecordedCameraPerformer.h | 34 --------- .../SofaUserInteraction/AttachBodyPerformer.h | 34 --------- .../AttachBodyPerformer.inl | 33 --------- .../ComponentMouseInteraction.h | 35 --------- .../ComponentMouseInteraction.inl | 33 --------- .../src/SofaUserInteraction/Controller.h | 25 ------- .../FixParticlePerformer.h | 35 --------- .../FixParticlePerformer.inl | 33 --------- .../InciseAlongPathPerformer.h | 35 --------- .../InteractionPerformer.h | 35 --------- .../MechanicalStateController.h | 25 ------- .../MechanicalStateController.inl | 25 ------- .../src/SofaUserInteraction/MouseInteractor.h | 34 --------- .../SofaUserInteraction/MouseInteractor.inl | 33 --------- .../Compat/src/SofaUserInteraction/Ray.h | 26 ------- .../src/SofaUserInteraction/RayContact.h | 25 ------- .../RayDiscreteIntersection.h | 26 ------- .../RayDiscreteIntersection.inl | 26 ------- .../Compat/src/SofaUserInteraction/RayModel.h | 26 ------- .../RayNewProximityIntersection.h | 26 ------- .../SofaUserInteraction/RayTraceDetection.h | 26 ------- .../RemovePrimitivePerformer.h | 34 --------- .../RemovePrimitivePerformer.inl | 33 --------- .../StartNavigationPerformer.h | 35 --------- .../SuturePointPerformer.h | 34 --------- .../SuturePointPerformer.inl | 33 --------- .../TopologicalChangeManager.h | 34 --------- .../Compat/src/SofaValidation/CompareState.h | 26 ------- .../src/SofaValidation/CompareTopology.h | 26 ------- Sofa/Component/Compat/src/init.cpp | 35 --------- 745 files changed, 19442 deletions(-) delete mode 100644 Sofa/Component/Compat/CMakeLists.txt delete mode 100644 Sofa/Component/Compat/Sofa.Component.AnimationLoop.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Collision.Detection.Algorithm.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Collision.Detection.Intersection.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Collision.Geometry.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Collision.Response.Contact.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Collision.Response.Mapper.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.CompatConfig.cmake.in delete mode 100644 Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Correction.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Model.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Solver.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Constraint.Projective.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Controller.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Diffusion.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Engine.Analyze.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Engine.Generate.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Engine.Select.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Engine.Transform.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Haptics.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.IO.Mesh.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.LinearSolver.Direct.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.LinearSolver.Iterative.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.LinearSolver.Preconditioner.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Mapping.Linear.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Mapping.MappedMatrix.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Mapping.NonLinear.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Mass.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.MechanicalLoad.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.ODESolver.Backward.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.ODESolver.Forward.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Playback.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.SceneUtility.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Setting.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.Elastic.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.HyperElastic.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.NonUniform.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.SolidMechanics.Spring.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.SolidMechanics.TensorMass.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.StateContainer.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Topology.Container.Constant.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Topology.Container.Dynamic.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Topology.Container.Grid.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Topology.Mapping.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Topology.Utility.cmake delete mode 100644 Sofa/Component/Compat/Sofa.Component.Visual.cmake delete mode 100644 Sofa/Component/Compat/Sofa.GL.Component.Engine.cmake delete mode 100644 Sofa/Component/Compat/Sofa.GL.Component.Rendering2D.cmake delete mode 100644 Sofa/Component/Compat/Sofa.GL.Component.Rendering3D.cmake delete mode 100644 Sofa/Component/Compat/Sofa.GL.Component.Shader.cmake delete mode 100644 Sofa/Component/Compat/Sofa.GUI.Component.cmake delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/BVHNarrowPhase.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/BaseContactMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/BaseProximityIntersection.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/BruteForceBroadPhase.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/BruteForceDetection.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/ContactListener.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/CubeModel.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/CylinderModel.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/CylinderModel.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/DefaultContactManager.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/DefaultPipeline.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/DiscreteIntersection.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/MinProximityIntersection.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/MirrorIntersector.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/NewProximityIntersection.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/NewProximityIntersection.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/SphereModel.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/SphereModel.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseCollision/fwd.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseLinearSolver/CGLinearSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseLinearSolver/CGLinearSolver.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseLinearSolver/GraphScatteredTypes.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseLinearSolver/MatrixLinearSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseLinearSolver/MatrixLinearSolver.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/AddMToMatrixFunctor.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapper.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperEdgeSetTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperEdgeSetTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperHexahedronSetTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperHexahedronSetTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperMeshTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperMeshTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperQuadSetTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperQuadSetTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperRegularGridTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperRegularGridTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperSparseGridTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperSparseGridTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTopologyContainer.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTopologyContainer.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTriangleSetTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTriangleSetTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/TopologyBarycentricMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/TopologyBarycentricMapper.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/DiagonalMass.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/DiagonalMass.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/IdentityMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/IdentityMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/MappedObject.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/MappedObject.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/MassType.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/MechanicalObject.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/MechanicalObject.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/SubsetMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/SubsetMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/UniformMass.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseMechanics/UniformMass.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/CommonAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetGeometryAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetGeometryAlgorithms.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyContainer.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyModifier.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/GridTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetGeometryAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetGeometryAlgorithms.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyContainer.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyModifier.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/MeshTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/NumericalIntegrationDescriptor.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/NumericalIntegrationDescriptor.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/PointSetGeometryAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/PointSetGeometryAlgorithms.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyContainer.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyModifier.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/QuadSetGeometryAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/QuadSetGeometryAlgorithms.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyContainer.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyModifier.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/RegularGridTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/SparseGridTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetGeometryAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetGeometryAlgorithms.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyContainer.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyModifier.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetGeometryAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetGeometryAlgorithms.inl delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyContainer.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyModifier.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/fwd.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/polygon_cube_intersection/polygon_cube_intersection.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseTopology/polygon_cube_intersection/vec.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseUtils/AddResourceRepository.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseUtils/InfoComponent.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseUtils/MakeAliasComponent.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseUtils/MakeDataAliasComponent.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseUtils/messageHandlerComponent.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseVisual/BackgroundSetting.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseVisual/BaseCamera.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseVisual/Camera.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseVisual/InteractiveCamera.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseVisual/VisualModelImpl.h delete mode 100644 Sofa/Component/Compat/src/SofaBaseVisual/VisualStyle.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/AffineMovementConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/AffineMovementConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ConicalForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ConicalForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ConstantForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ConstantForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/DiagonalVelocityDampingForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/DiagonalVelocityDampingForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/EdgePressureForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/EdgePressureForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/EllipsoidForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/EllipsoidForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/FixedConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/FixedConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/FixedPlaneConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/FixedPlaneConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/FixedRotationConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/FixedRotationConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/FixedTranslationConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/FixedTranslationConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/HermiteSplineConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/HermiteSplineConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/LinearForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/LinearForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/LinearMovementConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/LinearMovementConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/LinearVelocityConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/LinearVelocityConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatingTorsionPressureForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatingTorsionPressureForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatorConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatorConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ParabolicConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ParabolicConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/PartialFixedConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/PartialFixedConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/PartialLinearMovementConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/PartialLinearMovementConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/PatchTestMovementConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/PatchTestMovementConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/PlaneForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/PlaneForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/PositionBasedDynamicsConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/PositionBasedDynamicsConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectDirectionConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectDirectionConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToLineConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToLineConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPlaneConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPlaneConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPointConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPointConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/QuadPressureForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/QuadPressureForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/SkeletalMotionConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/SkeletalMotionConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/SphereForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/SphereForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/SurfacePressureForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/SurfacePressureForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/TaitSurfacePressureForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/TaitSurfacePressureForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/TorsionForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/TorsionForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/TrianglePressureForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/TrianglePressureForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/UniformVelocityDampingForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaBoundaryCondition/UniformVelocityDampingForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/BilateralConstraintResolution.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/BilateralInteractionConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/BilateralInteractionConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/ConstraintAnimationLoop.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/ConstraintAttachBodyPerformer.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/ConstraintAttachBodyPerformer.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/ConstraintSolverImpl.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/ConstraintStoreLambdaVisitor.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/ContactIdentifier.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/FreeMotionAnimationLoop.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/FreeMotionTask.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/FrictionContact.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/FrictionContact.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/GenericConstraintCorrection.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/GenericConstraintSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/LCPConstraintSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/LinearSolverConstraintCorrection.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/LinearSolverConstraintCorrection.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/LocalMinDistance.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/MappingGeometricStiffnessForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/MappingGeometricStiffnessForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/PrecomputedConstraintCorrection.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/PrecomputedConstraintCorrection.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/SlidingConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/SlidingConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/StickContactConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/StickContactConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/StopperConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/StopperConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/UncoupledConstraintCorrection.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/UncoupledConstraintCorrection.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/UniformConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/UniformConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/UnilateralInteractionConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaConstraint/UnilateralInteractionConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/AngularSpringForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/AngularSpringForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/MeshSpringForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/MeshSpringForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/PolynomialRestShapeSpringsForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/PolynomialRestShapeSpringsForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/PolynomialSpringsForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/PolynomialSpringsForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/RestShapeSpringsForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/RestShapeSpringsForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/SpringForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/SpringForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/StiffSpringForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaDeformable/StiffSpringForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaDenseSolver/SVDLinearSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaEngine/BoxROI.h delete mode 100644 Sofa/Component/Compat/src/SofaEngine/BoxROI.inl delete mode 100644 Sofa/Component/Compat/src/SofaExplicitOdeSolver/EulerSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaExporter/BlenderExporter.h delete mode 100644 Sofa/Component/Compat/src/SofaExporter/BlenderExporter.inl delete mode 100644 Sofa/Component/Compat/src/SofaExporter/MeshExporter.h delete mode 100644 Sofa/Component/Compat/src/SofaExporter/STLExporter.h delete mode 100644 Sofa/Component/Compat/src/SofaExporter/VTKExporter.h delete mode 100644 Sofa/Component/Compat/src/SofaExporter/VisualModelOBJExporter.h delete mode 100644 Sofa/Component/Compat/src/SofaExporter/WriteState.h delete mode 100644 Sofa/Component/Compat/src/SofaExporter/WriteState.inl delete mode 100644 Sofa/Component/Compat/src/SofaExporter/WriteTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaExporter/WriteTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MechanicalMatrixMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MechanicalMatrixMapper.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MultiStepAnimationLoop.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MultiTagAnimationLoop.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/FastTriangularBendingSprings.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/FastTriangularBendingSprings.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/FrameSpringForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/FrameSpringForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/QuadBendingSprings.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/QuadBendingSprings.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/QuadularBendingSprings.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/QuadularBendingSprings.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/RegularGridSpringForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/RegularGridSpringForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/TriangleBendingSprings.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/TriangleBendingSprings.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBendingSprings.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBendingSprings.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBiquadraticSpringsForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBiquadraticSpringsForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularQuadraticSpringsForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularQuadraticSpringsForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularTensorMassForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularTensorMassForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/VectorSpringForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralDeformable/VectorSpringForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/AverageCoord.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/AverageCoord.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ClusteringEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ClusteringEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ComplementaryROI.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ComplementaryROI.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/DifferenceEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/DifferenceEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/DilateEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/DilateEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeEdgesAndGenerateQuads.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeEdgesAndGenerateQuads.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeQuadsAndGenerateHexas.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeQuadsAndGenerateHexas.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeSurface.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeSurface.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/GenerateCylinder.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/GenerateCylinder.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/GenerateGrid.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/GenerateGrid.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/GenerateRigidMass.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/GenerateRigidMass.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/GenerateSphere.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/GenerateSphere.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/GroupFilterYoungModulus.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/GroupFilterYoungModulus.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/HausdorffDistance.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/HausdorffDistance.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/IndexValueMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/IndexValueMapper.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/Indices2ValuesMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/Indices2ValuesMapper.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/IndicesFromValues.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/IndicesFromValues.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/JoinPoints.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/JoinPoints.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MapIndices.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MapIndices.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MathOp.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MathOp.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MergeMeshes.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MergeMeshes.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MergePoints.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MergePoints.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MergeROIs.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MergeSets.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MergeSets.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MergeVectors.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MergeVectors.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshBarycentricMapperEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshBarycentricMapperEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshBoundaryROI.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshClosingEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshClosingEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshROI.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshROI.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshSampler.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshSampler.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshSplittingEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshSplittingEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshSubsetEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/MeshSubsetEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/NearestPointROI.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/NearestPointROI.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/NormEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/NormEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/NormalsFromPoints.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/NormalsFromPoints.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/PairBoxRoi.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/PairBoxRoi.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/PlaneROI.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/PlaneROI.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/PointsFromIndices.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/PointsFromIndices.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ProximityROI.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ProximityROI.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/QuatToRigidEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/QuatToRigidEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ROIValueMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/RandomPointDistributionInSurface.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/RandomPointDistributionInSurface.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/RigidToQuatEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/RigidToQuatEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/SelectConnectedLabelsROI.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/SelectLabelROI.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ShapeMatching.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ShapeMatching.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/SmoothMeshEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/SmoothMeshEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/SphereROI.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/SphereROI.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/Spiral.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/Spiral.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/SubsetTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/SubsetTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/SumEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/SumEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/TextureInterpolation.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/TextureInterpolation.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/TransformEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/TransformEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/TransformMatrixEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/TransformPosition.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/TransformPosition.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromIndices.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromIndices.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromPositions.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromPositions.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/Vertex2Frame.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralEngine/Vertex2Frame.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/CentralDifferenceSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/RungeKutta2Solver.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/RungeKutta4Solver.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralImplicitOdeSolver/VariationalSymplecticSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLinearSolver/BTDLinearSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLinearSolver/BTDLinearSolver.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLinearSolver/CholeskySolver.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLinearSolver/CholeskySolver.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLinearSolver/MinResLinearSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLinearSolver/MinResLinearSolver.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/GIDMeshLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/GridMeshCreator.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/InputEventReader.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/MeshGmshLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/MeshOffLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/MeshSTLLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/MeshTrianLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/MeshXspLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/OffSequenceLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/ReadState.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/ReadState.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/ReadTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/ReadTopology.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/SphereLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/StringMeshCreator.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralLoader/VoxelGridLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralMeshCollision/DSAPBox.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralMeshCollision/DirectSAP.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralMeshCollision/DirectSAPNarrowPhase.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralMeshCollision/IncrSAP.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshDiscreteIntersection.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshDiscreteIntersection.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshMinProximityIntersection.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralMeshCollision/RayTraceNarrowPhase.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralMeshCollision/TriangleOctree.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralMeshCollision/TriangleOctreeModel.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralObjectInteraction/AttachConstraint.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralObjectInteraction/AttachConstraint.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralObjectInteraction/InteractionEllipsoidForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralObjectInteraction/InteractionEllipsoidForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralObjectInteraction/RepulsiveSpringForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralObjectInteraction/RepulsiveSpringForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralRigid/LineSetSkinningMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralRigid/LineSetSkinningMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralRigid/SkinningMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralRigid/SkinningMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/BeamFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/BeamFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceFieldAndMass.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceFieldAndMass.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedronFEMForceFieldAndMass.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedronFEMForceFieldAndMass.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/TetrahedralCorotationalFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/TetrahedralCorotationalFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/TriangularFEMForceFieldOptim.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralSimpleFem/TriangularFEMForceFieldOptim.inl delete mode 100644 Sofa/Component/Compat/src/SofaGeneralTopology/CubeTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralTopology/CylinderGridTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralTopology/SphereGridTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralTopology/SphereQuadTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralVisual/RecordedCamera.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralVisual/Visual3DText.h delete mode 100644 Sofa/Component/Compat/src/SofaGeneralVisual/VisualTransform.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/APIVersion.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/AddFrameButtonSetting.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/AddRecordedCameraButtonSetting.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/AttachBodyButtonSetting.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/FixPickedParticleButtonSetting.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/MouseButtonSetting.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/PauseAnimation.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/PauseAnimationOnEvent.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/SofaDefaultPathSetting.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/StatsSetting.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/ViewerSetting.h delete mode 100644 Sofa/Component/Compat/src/SofaGraphComponent/init.h delete mode 100644 Sofa/Component/Compat/src/SofaHaptics/ForceFeedback.h delete mode 100644 Sofa/Component/Compat/src/SofaHaptics/LCPForceFeedback.h delete mode 100644 Sofa/Component/Compat/src/SofaHaptics/LCPForceFeedback.inl delete mode 100644 Sofa/Component/Compat/src/SofaHaptics/MechanicalStateForceFeedback.h delete mode 100644 Sofa/Component/Compat/src/SofaHaptics/NullForceFeedback.h delete mode 100644 Sofa/Component/Compat/src/SofaHaptics/NullForceFeedbackT.h delete mode 100644 Sofa/Component/Compat/src/SofaImplicitOdeSolver/EulerImplicitSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaImplicitOdeSolver/StaticSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaLoader/BaseVTKReader.h delete mode 100644 Sofa/Component/Compat/src/SofaLoader/BaseVTKReader.inl delete mode 100644 Sofa/Component/Compat/src/SofaLoader/MeshOBJLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaLoader/MeshVTKLoader.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/BarycentricContactMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/BarycentricContactMapper.inl delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/BarycentricPenalityContact.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/BarycentricPenalityContact.inl delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/CollisionPM.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/EndPoint.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/IdentityContactMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/IdentityContactMapper.inl delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/LineModel.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/LineModel.inl delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/MeshNewProximityIntersection.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/MeshNewProximityIntersection.inl delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/PointModel.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/PointModel.inl delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/RigidContactMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/RigidContactMapper.inl delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/SubsetContactMapper.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/SubsetContactMapper.inl delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/TriangleModel.h delete mode 100644 Sofa/Component/Compat/src/SofaMeshCollision/TriangleModel.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscCollision/BarycentricStickContact.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscCollision/BarycentricStickContact.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscCollision/RuleBasedContactManager.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscCollision/TetrahedronDiscreteIntersection.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscCollision/TetrahedronModel.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscCollision/TriangleModelInRegularGrid.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscEngine/DisplacementMatrixEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscEngine/DisplacementMatrixEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscEngine/Distances.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscEngine/Distances.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscEngine/ProjectiveTransformEngine.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscEngine/ProjectiveTransformEngine.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscExtra/MeshTetraStuffing.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/BaseMaterial.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/BoyceAndArruda.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/Costa.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/FastTetrahedralCorotationalForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/FastTetrahedralCorotationalForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/HyperelasticMaterial.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/MooneyRivlin.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/NeoHookean.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/Ogden.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/PlasticMaterial.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/QuadBendingFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/QuadBendingFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/STVenantKirchhoff.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/StandardTetrahedralFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/StandardTetrahedralFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/TetrahedralTensorMassForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/TetrahedralTensorMassForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/TetrahedronHyperelasticityFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/TetrahedronHyperelasticityFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/TriangleFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/TriangleFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/TriangularAnisotropicFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/TriangularAnisotropicFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/TriangularFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/TriangularFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscFem/VerondaWestman.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscForceField/GearSpringForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscForceField/GearSpringForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscForceField/MeshMatrixMass.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscForceField/MeshMatrixMass.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/BarycentricMappingRigid.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/BarycentricMappingRigid.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/BeamLinearMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/BeamLinearMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMappingOperation.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMulti2Mapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMulti2Mapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMultiMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMultiMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/DeformableOnRigidFrameMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/DeformableOnRigidFrameMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/DistanceFromTargetMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/DistanceFromTargetMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/DistanceMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/DistanceMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/IdentityMultiMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/IdentityMultiMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/SquareDistanceMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/SquareDistanceMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/SquareMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/SquareMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/SubsetMultiMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/SubsetMultiMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/TubularMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/TubularMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscMapping/VoidMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscSolver/DampVelocitySolver.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscSolver/NewmarkImplicitSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscTopology/TopologicalChangeProcessor.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscTopology/TopologyBoundingTrasher.h delete mode 100644 Sofa/Component/Compat/src/SofaMiscTopology/TopologyBoundingTrasher.inl delete mode 100644 Sofa/Component/Compat/src/SofaMiscTopology/TopologyChecker.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridGeometryAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridGeometryAlgorithms.inl delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyAlgorithms.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyContainer.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyModifier.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMForceFieldAndMass.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMForceFieldAndMass.inl delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/MultilevelHexahedronSetTopologyContainer.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedralFEMForceFieldAndMass.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedralFEMForceFieldAndMass.inl delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedronFEMForceFieldAndMass.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedronFEMForceFieldAndMass.inl delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/SparseGridMultipleTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaNonUniformFem/SparseGridRamificationTopology.h delete mode 100644 Sofa/Component/Compat/src/SofaObjectInteraction/PenalityContactForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaObjectInteraction/PenalityContactForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/ClipPlane.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/CompositingVisualLoop.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/DataDisplay.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/Light.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/LightManager.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/MergeVisualModels.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglAttribute.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglAttribute.inl delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglColorMap.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglCylinderModel.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglGrid.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglLabel.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglLineAxis.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglModel.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglOITShader.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglRenderingSRGB.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglSceneFrame.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglShader.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglShaderMacro.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglShaderVisualModel.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglShadowShader.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglTexture.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglTexturePointer.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglVariable.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglVariable.inl delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OglViewport.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/OrderIndependentTransparencyManager.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/PointSplatModel.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/PostProcessManager.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/SlicedVolumetricModel.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/VisualManagerPass.h delete mode 100644 Sofa/Component/Compat/src/SofaOpenglVisual/VisualManagerSecondaryPass.h delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/BlockJacobiPreconditioner.h delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/BlockJacobiPreconditioner.inl delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/JacobiPreconditioner.h delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/JacobiPreconditioner.inl delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/PrecomputedWarpPreconditioner.h delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/PrecomputedWarpPreconditioner.inl delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/SSORPreconditioner.h delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/SSORPreconditioner.inl delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/ShewchukPCGLinearSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/WarpPreconditioner.h delete mode 100644 Sofa/Component/Compat/src/SofaPreconditioner/WarpPreconditioner.inl delete mode 100644 Sofa/Component/Compat/src/SofaRigid/JointSpring.h delete mode 100644 Sofa/Component/Compat/src/SofaRigid/JointSpring.inl delete mode 100644 Sofa/Component/Compat/src/SofaRigid/JointSpringForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaRigid/JointSpringForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaRigid/RigidMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaRigid/RigidMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaRigid/RigidRigidMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaRigid/RigidRigidMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaSimpleFem/HexahedronFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaSimpleFem/HexahedronFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronDiffusionFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronDiffusionFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronFEMForceField.h delete mode 100644 Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronFEMForceField.inl delete mode 100644 Sofa/Component/Compat/src/SofaSimpleFem/fwd.h delete mode 100644 Sofa/Component/Compat/src/SofaSparseSolver/FillReducingOrdering.h delete mode 100644 Sofa/Component/Compat/src/SofaSparseSolver/FillReducingOrdering.inl delete mode 100644 Sofa/Component/Compat/src/SofaSparseSolver/PrecomputedLinearSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaSparseSolver/PrecomputedLinearSolver.inl delete mode 100644 Sofa/Component/Compat/src/SofaSparseSolver/SparseCholeskySolver.h delete mode 100644 Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolver.inl delete mode 100644 Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolverImpl.h delete mode 100644 Sofa/Component/Compat/src/SofaSparseSolver/SparseLUSolver.h delete mode 100644 Sofa/Component/Compat/src/SofaSparseSolver/SparseLUSolver.inl delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/CenterPointTopologicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/Edge2QuadTopologicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/Hexa2QuadTopologicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/Hexa2TetraTopologicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/IdentityTopologicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/Mesh2PointMechanicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/Mesh2PointMechanicalMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/Quad2TriangleTopologicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/SimpleTesselatedTetraMechanicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/SimpleTesselatedTetraMechanicalMapping.inl delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/SubsetTopologicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/Tetra2TriangleTopologicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaTopologyMapping/Triangle2EdgeTopologicalMapping.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/AddRecordedCameraPerformer.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/AttachBodyPerformer.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/AttachBodyPerformer.inl delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/ComponentMouseInteraction.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/ComponentMouseInteraction.inl delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/Controller.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/FixParticlePerformer.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/FixParticlePerformer.inl delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/InciseAlongPathPerformer.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/InteractionPerformer.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/MechanicalStateController.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/MechanicalStateController.inl delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/MouseInteractor.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/MouseInteractor.inl delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/Ray.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/RayContact.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/RayDiscreteIntersection.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/RayDiscreteIntersection.inl delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/RayModel.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/RayNewProximityIntersection.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/RayTraceDetection.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/RemovePrimitivePerformer.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/RemovePrimitivePerformer.inl delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/StartNavigationPerformer.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/SuturePointPerformer.h delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/SuturePointPerformer.inl delete mode 100644 Sofa/Component/Compat/src/SofaUserInteraction/TopologicalChangeManager.h delete mode 100644 Sofa/Component/Compat/src/SofaValidation/CompareState.h delete mode 100644 Sofa/Component/Compat/src/SofaValidation/CompareTopology.h delete mode 100644 Sofa/Component/Compat/src/init.cpp diff --git a/Sofa/Component/Compat/CMakeLists.txt b/Sofa/Component/Compat/CMakeLists.txt deleted file mode 100644 index bccd7655fd8..00000000000 --- a/Sofa/Component/Compat/CMakeLists.txt +++ /dev/null @@ -1,71 +0,0 @@ -cmake_minimum_required(VERSION 3.12) -project(Sofa.Component.Compat LANGUAGES CXX) - -set(SOFACOMPONENTCOMPATSRC_ROOT "src") - -set(HEADER_FILES "") -set(SOURCE_FILES ${SOFACOMPONENTCOMPATSRC_ROOT}/init.cpp) - -include(Sofa.Component.AnimationLoop.cmake) -include(Sofa.Component.Collision.Detection.Algorithm.cmake) -include(Sofa.Component.Collision.Detection.Intersection.cmake) -include(Sofa.Component.Collision.Geometry.cmake) -include(Sofa.Component.Collision.Response.Contact.cmake) -include(Sofa.Component.Collision.Response.Mapper.cmake) -include(Sofa.Component.Constraint.Lagrangian.Correction.cmake) -include(Sofa.Component.Constraint.Lagrangian.Model.cmake) -include(Sofa.Component.Constraint.Lagrangian.Solver.cmake) -include(Sofa.Component.Constraint.Projective.cmake) -include(Sofa.Component.Controller.cmake) -include(Sofa.Component.Diffusion.cmake) -include(Sofa.Component.Engine.Analyze.cmake) -include(Sofa.Component.Engine.Generate.cmake) -include(Sofa.Component.Engine.Select.cmake) -include(Sofa.Component.Engine.Transform.cmake) -include(Sofa.Component.Haptics.cmake) -include(Sofa.Component.IO.Mesh.cmake) -include(Sofa.Component.LinearSolver.Direct.cmake) -include(Sofa.Component.LinearSolver.Iterative.cmake) -include(Sofa.Component.LinearSolver.Preconditioner.cmake) -include(Sofa.Component.Mapping.Linear.cmake) -include(Sofa.Component.Mapping.MappedMatrix.cmake) -include(Sofa.Component.Mapping.NonLinear.cmake) -include(Sofa.Component.Mass.cmake) -include(Sofa.Component.MechanicalLoad.cmake) -include(Sofa.Component.ODESolver.Backward.cmake) -include(Sofa.Component.ODESolver.Forward.cmake) -include(Sofa.Component.Playback.cmake) -include(Sofa.Component.SceneUtility.cmake) -include(Sofa.Component.Setting.cmake) -include(Sofa.Component.SolidMechanics.FEM.Elastic.cmake) -include(Sofa.Component.SolidMechanics.FEM.HyperElastic.cmake) -include(Sofa.Component.SolidMechanics.Spring.cmake) -include(Sofa.Component.SolidMechanics.TensorMass.cmake) -include(Sofa.Component.StateContainer.cmake) -include(Sofa.Component.Topology.Container.Constant.cmake) -include(Sofa.Component.Topology.Container.Dynamic.cmake) -include(Sofa.Component.Topology.Container.Grid.cmake) -include(Sofa.Component.Topology.Mapping.cmake) -include(Sofa.Component.Topology.Utility.cmake) -include(Sofa.Component.Visual.cmake) -include(Sofa.Component.Visual.cmake) -include(Sofa.GL.Component.Engine.cmake) -include(Sofa.GL.Component.Rendering2D.cmake) -include(Sofa.GL.Component.Rendering3D.cmake) -include(Sofa.GL.Component.Shader.cmake) -include(Sofa.GUI.Component.cmake) - -sofa_find_package(Sofa.Config REQUIRED) - -add_library(${PROJECT_NAME} SHARED ${HEADER_FILES} ${SOURCE_FILES}) -target_link_libraries(${PROJECT_NAME} PUBLIC Sofa.Config) -set_target_properties(${PROJECT_NAME} PROPERTIES LINKER_LANGUAGE CXX) - -sofa_create_package_with_targets( - PACKAGE_NAME ${PROJECT_NAME} - PACKAGE_VERSION ${Sofa_VERSION} - TARGETS ${PROJECT_NAME} AUTO_SET_TARGET_PROPERTIES - INCLUDE_SOURCE_DIR "src" - INCLUDE_INSTALL_DIR "${PROJECT_NAME}" - OPTIMIZE_BUILD_DIR 0 -) diff --git a/Sofa/Component/Compat/Sofa.Component.AnimationLoop.cmake b/Sofa/Component/Compat/Sofa.Component.AnimationLoop.cmake deleted file mode 100644 index bc366e25914..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.AnimationLoop.cmake +++ /dev/null @@ -1,10 +0,0 @@ -set(SOFACONSTRAINT_SRC src/SofaConstraint) -set(SOFAGENERALANIMATIONLOOP_SRC src/SofaGeneralAnimationLoop) - -list(APPEND HEADER_FILES - ${SOFACONSTRAINT_SRC}/FreeMotionAnimationLoop.h - ${SOFACONSTRAINT_SRC}/FreeMotionTask.h - ${SOFACONSTRAINT_SRC}/ConstraintAnimationLoop.h - ${SOFAGENERALANIMATIONLOOP_SRC}/MultiStepAnimationLoop.h - ${SOFAGENERALANIMATIONLOOP_SRC}/MultiTagAnimationLoop.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Collision.Detection.Algorithm.cmake b/Sofa/Component/Compat/Sofa.Component.Collision.Detection.Algorithm.cmake deleted file mode 100644 index 0732198a734..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Collision.Detection.Algorithm.cmake +++ /dev/null @@ -1,20 +0,0 @@ -set(SOFABASECOLLISION_SRC src/SofaBaseCollision) -set(SOFAMESHCOLLISION_SRC src/SofaMeshCollision) -set(SOFAGENERALMESHCOLLISION_SRC src/SofaGeneralMeshCollision) -set(SOFAUSERINTERACTION_SRC src/SofaUserInteraction) - -list(APPEND HEADER_FILES - ${SOFABASECOLLISION_SRC}/BruteForceBroadPhase.h - ${SOFABASECOLLISION_SRC}/BruteForceDetection.h - ${SOFABASECOLLISION_SRC}/BVHNarrowPhase.h - ${SOFABASECOLLISION_SRC}/DefaultPipeline.h - ${SOFABASECOLLISION_SRC}/MirrorIntersector.h - ${SOFAMESHCOLLISION_SRC}/CollisionPM.h - ${SOFAMESHCOLLISION_SRC}/EndPoint.h - ${SOFAGENERALMESHCOLLISION_SRC}/DirectSAP.h - ${SOFAGENERALMESHCOLLISION_SRC}/DirectSAPNarrowPhase.h - ${SOFAGENERALMESHCOLLISION_SRC}/DSAPBox.h - ${SOFAGENERALMESHCOLLISION_SRC}/IncrSAP.h - ${SOFAGENERALMESHCOLLISION_SRC}/RayTraceNarrowPhase.h - ${SOFAUSERINTERACTION_SRC}/RayTraceDetection.h -) \ No newline at end of file diff --git a/Sofa/Component/Compat/Sofa.Component.Collision.Detection.Intersection.cmake b/Sofa/Component/Compat/Sofa.Component.Collision.Detection.Intersection.cmake deleted file mode 100644 index 0327027332f..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Collision.Detection.Intersection.cmake +++ /dev/null @@ -1,24 +0,0 @@ -set(SOFABASECOLLISION_SRC src/SofaBaseCollision) -set(SOFAMESHCOLLISION_SRC src/SofaMeshCollision) -set(SOFACONSTRAINT_SRC src/SofaConstraint) -set(SOFAGENERALMESHCOLLISION_SRC src/SofaGeneralMeshCollision) -set(SOFAUSERINTERACTION_SRC src/SofaUserInteraction) -set(SOFAMISCCOLLISION_SRC src/SofaMiscCollision) - -list(APPEND HEADER_FILES - ${SOFABASECOLLISION_SRC}/BaseProximityIntersection.h - ${SOFABASECOLLISION_SRC}/DiscreteIntersection.h - ${SOFABASECOLLISION_SRC}/MinProximityIntersection.h - ${SOFABASECOLLISION_SRC}/NewProximityIntersection.h - ${SOFABASECOLLISION_SRC}/NewProximityIntersection.inl - ${SOFAMESHCOLLISION_SRC}/MeshNewProximityIntersection.h - ${SOFAMESHCOLLISION_SRC}/MeshNewProximityIntersection.inl - ${SOFACONSTRAINT_SRC}/LocalMinDistance.h - ${SOFAGENERALMESHCOLLISION_SRC}/MeshDiscreteIntersection.h - ${SOFAGENERALMESHCOLLISION_SRC}/MeshDiscreteIntersection.inl - ${SOFAGENERALMESHCOLLISION_SRC}/MeshMinProximityIntersection.h - ${SOFAUSERINTERACTION_SRC}/RayDiscreteIntersection.h - ${SOFAUSERINTERACTION_SRC}/RayDiscreteIntersection.inl - ${SOFAUSERINTERACTION_SRC}/RayNewProximityIntersection.h - ${SOFAMISCCOLLISION_SRC}/TetrahedronDiscreteIntersection.h -) \ No newline at end of file diff --git a/Sofa/Component/Compat/Sofa.Component.Collision.Geometry.cmake b/Sofa/Component/Compat/Sofa.Component.Collision.Geometry.cmake deleted file mode 100644 index b4adea10d0f..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Collision.Geometry.cmake +++ /dev/null @@ -1,26 +0,0 @@ -set(SOFABASECOLLISION_SRC src/SofaBaseCollision) -set(SOFAMESHCOLLISION_SRC src/SofaMeshCollision) -set(SOFAUSERINTERACTION_SRC src/SofaUserInteraction) -set(SOFAGENERALMESHCOLLISION_SRC src/SofaGeneralMeshCollision) -set(SOFAMISCCOLLISION_SRC src/SofaMiscCollision) - -list(APPEND HEADER_FILES - ${SOFABASECOLLISION_SRC}/fwd.h - ${SOFABASECOLLISION_SRC}/CubeModel.h - ${SOFABASECOLLISION_SRC}/CylinderModel.h - ${SOFABASECOLLISION_SRC}/CylinderModel.inl - ${SOFABASECOLLISION_SRC}/SphereModel.h - ${SOFABASECOLLISION_SRC}/SphereModel.inl - ${SOFAMESHCOLLISION_SRC}/LineModel.h - ${SOFAMESHCOLLISION_SRC}/LineModel.inl - ${SOFAMESHCOLLISION_SRC}/PointModel.h - ${SOFAMESHCOLLISION_SRC}/PointModel.inl - ${SOFAMESHCOLLISION_SRC}/TriangleModel.h - ${SOFAMESHCOLLISION_SRC}/TriangleModel.inl - ${SOFAUSERINTERACTION_SRC}/Ray.h - ${SOFAUSERINTERACTION_SRC}/RayModel.h - ${SOFAGENERALMESHCOLLISION_SRC}/TriangleOctree.h - ${SOFAGENERALMESHCOLLISION_SRC}/TriangleOctreeModel.h - ${SOFAMISCCOLLISION_SRC}/TetrahedronModel.h - ${SOFAMISCCOLLISION_SRC}/TriangleModelInRegularGrid.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Collision.Response.Contact.cmake b/Sofa/Component/Compat/Sofa.Component.Collision.Response.Contact.cmake deleted file mode 100644 index 4f18a0316dd..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Collision.Response.Contact.cmake +++ /dev/null @@ -1,24 +0,0 @@ -set(SOFABASECOLLISION_SRC src/SofaBaseCollision) -set(SOFAMESHCOLLISION_SRC src/SofaMeshCollision) -set(SOFACONSTRAINT_SRC src/SofaConstraint) -set(SOFAUSERINTERACTION_SRC src/SofaUserInteraction) -set(SOFAOBJECTINTERACTION_SRC src/SofaObjectInteraction) -set(SOFAMISCCOLLISION_SRC src/SofaMiscCollision) - -list(APPEND HEADER_FILES - ${SOFABASECOLLISION_SRC}/ContactListener.h - ${SOFABASECOLLISION_SRC}/DefaultContactManager.h - ${SOFAMESHCOLLISION_SRC}/BarycentricPenalityContact.h - ${SOFAMESHCOLLISION_SRC}/BarycentricPenalityContact.inl - ${SOFACONSTRAINT_SRC}/ContactIdentifier.h - ${SOFACONSTRAINT_SRC}/FrictionContact.h - ${SOFACONSTRAINT_SRC}/FrictionContact.inl - ${SOFACONSTRAINT_SRC}/StickContactConstraint.h - ${SOFACONSTRAINT_SRC}/StickContactConstraint.inl - ${SOFAUSERINTERACTION_SRC}/RayContact.h - ${SOFAOBJECTINTERACTION_SRC}/PenalityContactForceField.h - ${SOFAOBJECTINTERACTION_SRC}/PenalityContactForceField.inl - ${SOFAMISCCOLLISION_SRC}/BarycentricStickContact.h - ${SOFAMISCCOLLISION_SRC}/BarycentricStickContact.inl - ${SOFAMISCCOLLISION_SRC}/RuleBasedContactManager.h -) \ No newline at end of file diff --git a/Sofa/Component/Compat/Sofa.Component.Collision.Response.Mapper.cmake b/Sofa/Component/Compat/Sofa.Component.Collision.Response.Mapper.cmake deleted file mode 100644 index faca18601c1..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Collision.Response.Mapper.cmake +++ /dev/null @@ -1,14 +0,0 @@ -set(SOFABASECOLLISION_SRC src/SofaBaseCollision) -set(SOFAMESHCOLLISION_SRC src/SofaMeshCollision) - -list(APPEND HEADER_FILES - ${SOFABASECOLLISION_SRC}/BaseContactMapper.h - ${SOFAMESHCOLLISION_SRC}/BarycentricContactMapper.h - ${SOFAMESHCOLLISION_SRC}/BarycentricContactMapper.inl - ${SOFAMESHCOLLISION_SRC}/IdentityContactMapper.h - ${SOFAMESHCOLLISION_SRC}/IdentityContactMapper.inl - ${SOFAMESHCOLLISION_SRC}/RigidContactMapper.h - ${SOFAMESHCOLLISION_SRC}/RigidContactMapper.inl - ${SOFAMESHCOLLISION_SRC}/SubsetContactMapper.h - ${SOFAMESHCOLLISION_SRC}/SubsetContactMapper.inl -) \ No newline at end of file diff --git a/Sofa/Component/Compat/Sofa.Component.CompatConfig.cmake.in b/Sofa/Component/Compat/Sofa.Component.CompatConfig.cmake.in deleted file mode 100644 index bfdc3332d88..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.CompatConfig.cmake.in +++ /dev/null @@ -1,12 +0,0 @@ -# CMake package configuration file for the @PROJECT_NAME@ module - -@PACKAGE_GUARD@ -@PACKAGE_INIT@ - -find_package(Sofa.Config QUIET REQUIRED) - -if(NOT TARGET @PROJECT_NAME@) - include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake") -endif() - -check_required_components(@PROJECT_NAME@) diff --git a/Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Correction.cmake b/Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Correction.cmake deleted file mode 100644 index 474a7035a29..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Correction.cmake +++ /dev/null @@ -1,11 +0,0 @@ -set(SOFACONSTRAINT_SRC src/SofaConstraint) - -list(APPEND HEADER_FILES - ${SOFACONSTRAINT_SRC}/GenericConstraintCorrection.h - ${SOFACONSTRAINT_SRC}/LinearSolverConstraintCorrection.h - ${SOFACONSTRAINT_SRC}/LinearSolverConstraintCorrection.inl - ${SOFACONSTRAINT_SRC}/PrecomputedConstraintCorrection.h - ${SOFACONSTRAINT_SRC}/PrecomputedConstraintCorrection.inl - ${SOFACONSTRAINT_SRC}/UncoupledConstraintCorrection.h - ${SOFACONSTRAINT_SRC}/UncoupledConstraintCorrection.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Model.cmake b/Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Model.cmake deleted file mode 100644 index 05afc6e1084..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Model.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(SOFACONSTRAINT_SRC src/SofaConstraint) - -list(APPEND HEADER_FILES - ${SOFACONSTRAINT_SRC}/BilateralConstraintResolution.h - ${SOFACONSTRAINT_SRC}/BilateralInteractionConstraint.h - ${SOFACONSTRAINT_SRC}/BilateralInteractionConstraint.inl - ${SOFACONSTRAINT_SRC}/SlidingConstraint.h - ${SOFACONSTRAINT_SRC}/SlidingConstraint.inl - ${SOFACONSTRAINT_SRC}/StopperConstraint.h - ${SOFACONSTRAINT_SRC}/StopperConstraint.inl - ${SOFACONSTRAINT_SRC}/UniformConstraint.h - ${SOFACONSTRAINT_SRC}/UniformConstraint.inl - ${SOFACONSTRAINT_SRC}/UnilateralInteractionConstraint.h - ${SOFACONSTRAINT_SRC}/UnilateralInteractionConstraint.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Solver.cmake b/Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Solver.cmake deleted file mode 100644 index 3fd9ed02f77..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Constraint.Lagrangian.Solver.cmake +++ /dev/null @@ -1,8 +0,0 @@ -set(SOFACONSTRAINT_SRC src/SofaConstraint) - -list(APPEND HEADER_FILES - ${SOFACONSTRAINT_SRC}/ConstraintSolverImpl.h - ${SOFACONSTRAINT_SRC}/ConstraintStoreLambdaVisitor.h - ${SOFACONSTRAINT_SRC}/GenericConstraintSolver.h - ${SOFACONSTRAINT_SRC}/LCPConstraintSolver.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Constraint.Projective.cmake b/Sofa/Component/Compat/Sofa.Component.Constraint.Projective.cmake deleted file mode 100644 index a72d17cc278..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Constraint.Projective.cmake +++ /dev/null @@ -1,45 +0,0 @@ -set(SOFAGENERALOBJECTINTERACTION_SRC src/SofaGeneralObjectInteraction) -set(SOFABOUNDARYCONDITION_SRC src/SofaBoundaryCondition) - -list(APPEND HEADER_FILES - ${SOFAGENERALOBJECTINTERACTION_SRC}/AttachConstraint.h - ${SOFAGENERALOBJECTINTERACTION_SRC}/AttachConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/AffineMovementConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/AffineMovementConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/FixedConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/FixedConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/FixedPlaneConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/FixedPlaneConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/FixedRotationConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/FixedRotationConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/FixedTranslationConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/FixedTranslationConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/HermiteSplineConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/HermiteSplineConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/LinearMovementConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/LinearMovementConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/LinearVelocityConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/LinearVelocityConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/OscillatorConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/OscillatorConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/ParabolicConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/ParabolicConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/PartialFixedConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/PartialFixedConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/PartialLinearMovementConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/PartialLinearMovementConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/PatchTestMovementConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/PatchTestMovementConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/PositionBasedDynamicsConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/PositionBasedDynamicsConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/SkeletalMotionConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/SkeletalMotionConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/ProjectToLineConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/ProjectToLineConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/ProjectToPlaneConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/ProjectToPlaneConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/ProjectToPointConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/ProjectToPointConstraint.inl - ${SOFABOUNDARYCONDITION_SRC}/ProjectDirectionConstraint.h - ${SOFABOUNDARYCONDITION_SRC}/ProjectDirectionConstraint.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.Controller.cmake b/Sofa/Component/Compat/Sofa.Component.Controller.cmake deleted file mode 100644 index 4915450e2cb..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Controller.cmake +++ /dev/null @@ -1,7 +0,0 @@ -set(SOFAUSERINTERACTION_SRC src/SofaUserInteraction) - -list(APPEND HEADER_FILES - ${SOFAUSERINTERACTION_SRC}/MechanicalStateController.h - ${SOFAUSERINTERACTION_SRC}/MechanicalStateController.inl - ${SOFAUSERINTERACTION_SRC}/Controller.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Diffusion.cmake b/Sofa/Component/Compat/Sofa.Component.Diffusion.cmake deleted file mode 100644 index bf10b59eb01..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Diffusion.cmake +++ /dev/null @@ -1,6 +0,0 @@ -set(SOFASIMPLEFEM_SRC src/SofaSimpleFem) - -list(APPEND HEADER_FILES - ${SOFASIMPLEFEM_SRC}/TetrahedronDiffusionFEMForceField.h - ${SOFASIMPLEFEM_SRC}/TetrahedronDiffusionFEMForceField.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.Engine.Analyze.cmake b/Sofa/Component/Compat/Sofa.Component.Engine.Analyze.cmake deleted file mode 100644 index 8d87b787bdc..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Engine.Analyze.cmake +++ /dev/null @@ -1,17 +0,0 @@ -set(SOFAGENERALENGINE_SRC src/SofaGeneralEngine) -set(SOFAMISCENGINE_SRC src/SofaMiscEngine) - -list(APPEND HEADER_FILES - ${SOFAGENERALENGINE_SRC}/AverageCoord.h - ${SOFAGENERALENGINE_SRC}/AverageCoord.inl - ${SOFAGENERALENGINE_SRC}/SumEngine.h - ${SOFAGENERALENGINE_SRC}/SumEngine.inl - ${SOFAGENERALENGINE_SRC}/ClusteringEngine.h - ${SOFAGENERALENGINE_SRC}/ClusteringEngine.inl - ${SOFAGENERALENGINE_SRC}/HausdorffDistance.h - ${SOFAGENERALENGINE_SRC}/HausdorffDistance.inl - ${SOFAGENERALENGINE_SRC}/ShapeMatching.h - ${SOFAGENERALENGINE_SRC}/ShapeMatching.inl - ${SOFAMISCENGINE_SRC}/Distances.h - ${SOFAMISCENGINE_SRC}/Distances.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.Engine.Generate.cmake b/Sofa/Component/Compat/Sofa.Component.Engine.Generate.cmake deleted file mode 100644 index ac799957823..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Engine.Generate.cmake +++ /dev/null @@ -1,44 +0,0 @@ -set(SOFAGENERALENGINE_SRC src/SofaGeneralEngine) -set(SOFAMISCEXTRA_SRC src/SofaMiscExtra) - -list(APPEND HEADER_FILES - ${SOFAGENERALENGINE_SRC}/GroupFilterYoungModulus.h - ${SOFAGENERALENGINE_SRC}/GroupFilterYoungModulus.inl - ${SOFAGENERALENGINE_SRC}/JoinPoints.h - ${SOFAGENERALENGINE_SRC}/JoinPoints.inl - ${SOFAGENERALENGINE_SRC}/MergePoints.h - ${SOFAGENERALENGINE_SRC}/MergePoints.inl - ${SOFAGENERALENGINE_SRC}/MergeSets.h - ${SOFAGENERALENGINE_SRC}/MergeSets.inl - ${SOFAGENERALENGINE_SRC}/MergeVectors.h - ${SOFAGENERALENGINE_SRC}/MergeVectors.inl - ${SOFAGENERALENGINE_SRC}/NormalsFromPoints.h - ${SOFAGENERALENGINE_SRC}/NormalsFromPoints.inl - ${SOFAGENERALENGINE_SRC}/NormEngine.h - ${SOFAGENERALENGINE_SRC}/NormEngine.inl - ${SOFAGENERALENGINE_SRC}/RandomPointDistributionInSurface.h - ${SOFAGENERALENGINE_SRC}/RandomPointDistributionInSurface.inl - ${SOFAGENERALENGINE_SRC}/ExtrudeEdgesAndGenerateQuads.h - ${SOFAGENERALENGINE_SRC}/ExtrudeEdgesAndGenerateQuads.inl - ${SOFAGENERALENGINE_SRC}/ExtrudeQuadsAndGenerateHexas.h - ${SOFAGENERALENGINE_SRC}/ExtrudeQuadsAndGenerateHexas.inl - ${SOFAGENERALENGINE_SRC}/ExtrudeSurface.h - ${SOFAGENERALENGINE_SRC}/ExtrudeSurface.inl - ${SOFAGENERALENGINE_SRC}/GenerateCylinder.h - ${SOFAGENERALENGINE_SRC}/GenerateCylinder.inl - ${SOFAGENERALENGINE_SRC}/GenerateGrid.h - ${SOFAGENERALENGINE_SRC}/GenerateGrid.inl - ${SOFAGENERALENGINE_SRC}/GenerateSphere.h - ${SOFAGENERALENGINE_SRC}/GenerateSphere.inl - ${SOFAGENERALENGINE_SRC}/MergeMeshes.h - ${SOFAGENERALENGINE_SRC}/MergeMeshes.inl - ${SOFAGENERALENGINE_SRC}/MeshBarycentricMapperEngine.h - ${SOFAGENERALENGINE_SRC}/MeshBarycentricMapperEngine.inl - ${SOFAGENERALENGINE_SRC}/MeshClosingEngine.h - ${SOFAGENERALENGINE_SRC}/MeshClosingEngine.inl - ${SOFAGENERALENGINE_SRC}/Spiral.h - ${SOFAGENERALENGINE_SRC}/Spiral.inl - ${SOFAGENERALENGINE_SRC}/GenerateRigidMass.h - ${SOFAGENERALENGINE_SRC}/GenerateRigidMass.inl - ${SOFAMISCEXTRA_SRC}/MeshTetraStuffing.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Engine.Select.cmake b/Sofa/Component/Compat/Sofa.Component.Engine.Select.cmake deleted file mode 100644 index 66e381aed32..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Engine.Select.cmake +++ /dev/null @@ -1,41 +0,0 @@ -set(SOFAENGINE_SRC src/SofaEngine) -set(SOFAGENERALENGINE_SRC src/SofaGeneralEngine) - -list(APPEND HEADER_FILES - ${SOFAGENERALENGINE_SRC}/IndicesFromValues.h - ${SOFAGENERALENGINE_SRC}/IndicesFromValues.inl - ${SOFAGENERALENGINE_SRC}/PointsFromIndices.h - ${SOFAGENERALENGINE_SRC}/PointsFromIndices.inl - ${SOFAGENERALENGINE_SRC}/ValuesFromIndices.h - ${SOFAGENERALENGINE_SRC}/ValuesFromIndices.inl - ${SOFAGENERALENGINE_SRC}/ValuesFromPositions.h - ${SOFAGENERALENGINE_SRC}/ValuesFromPositions.inl - ${SOFAGENERALENGINE_SRC}/MeshSampler.h - ${SOFAGENERALENGINE_SRC}/MeshSampler.inl - ${SOFAGENERALENGINE_SRC}/MeshSplittingEngine.h - ${SOFAGENERALENGINE_SRC}/MeshSplittingEngine.inl - ${SOFAGENERALENGINE_SRC}/MeshSubsetEngine.h - ${SOFAGENERALENGINE_SRC}/MeshSubsetEngine.inl - ${SOFAENGINE_SRC}/BoxROI.h - ${SOFAENGINE_SRC}/BoxROI.inl - ${SOFAGENERALENGINE_SRC}/ComplementaryROI.h - ${SOFAGENERALENGINE_SRC}/ComplementaryROI.inl - ${SOFAGENERALENGINE_SRC}/MergeROIs.h - ${SOFAGENERALENGINE_SRC}/MeshBoundaryROI.h - ${SOFAGENERALENGINE_SRC}/MeshROI.h - ${SOFAGENERALENGINE_SRC}/MeshROI.inl - ${SOFAGENERALENGINE_SRC}/NearestPointROI.h - ${SOFAGENERALENGINE_SRC}/NearestPointROI.inl - ${SOFAGENERALENGINE_SRC}/PairBoxRoi.h - ${SOFAGENERALENGINE_SRC}/PairBoxRoi.inl - ${SOFAGENERALENGINE_SRC}/PlaneROI.h - ${SOFAGENERALENGINE_SRC}/PlaneROI.inl - ${SOFAGENERALENGINE_SRC}/ProximityROI.h - ${SOFAGENERALENGINE_SRC}/ProximityROI.inl - ${SOFAGENERALENGINE_SRC}/SelectLabelROI.h - ${SOFAGENERALENGINE_SRC}/SelectConnectedLabelsROI.h - ${SOFAGENERALENGINE_SRC}/SphereROI.h - ${SOFAGENERALENGINE_SRC}/SphereROI.inl - ${SOFAGENERALENGINE_SRC}/SubsetTopology.h - ${SOFAGENERALENGINE_SRC}/SubsetTopology.inl -) \ No newline at end of file diff --git a/Sofa/Component/Compat/Sofa.Component.Engine.Transform.cmake b/Sofa/Component/Compat/Sofa.Component.Engine.Transform.cmake deleted file mode 100644 index 891d7909478..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Engine.Transform.cmake +++ /dev/null @@ -1,35 +0,0 @@ -set(SOFAGENERALENGINE_SRC src/SofaGeneralEngine) -set(SOFAMISCENGINE_SRC src/SofaMiscEngine) - -list(APPEND HEADER_FILES - ${SOFAMISCENGINE_SRC}/DisplacementMatrixEngine.h - ${SOFAMISCENGINE_SRC}/DisplacementMatrixEngine.inl - ${SOFAMISCENGINE_SRC}/ProjectiveTransformEngine.h - ${SOFAMISCENGINE_SRC}/ProjectiveTransformEngine.inl - ${SOFAGENERALENGINE_SRC}/TransformEngine.h - ${SOFAGENERALENGINE_SRC}/TransformEngine.inl - ${SOFAGENERALENGINE_SRC}/TransformMatrixEngine.h - ${SOFAGENERALENGINE_SRC}/TransformPosition.h - ${SOFAGENERALENGINE_SRC}/TransformPosition.inl - ${SOFAGENERALENGINE_SRC}/DifferenceEngine.h - ${SOFAGENERALENGINE_SRC}/DifferenceEngine.inl - ${SOFAGENERALENGINE_SRC}/MathOp.h - ${SOFAGENERALENGINE_SRC}/MathOp.inl - ${SOFAGENERALENGINE_SRC}/IndexValueMapper.h - ${SOFAGENERALENGINE_SRC}/IndexValueMapper.inl - ${SOFAGENERALENGINE_SRC}/Indices2ValuesMapper.h - ${SOFAGENERALENGINE_SRC}/Indices2ValuesMapper.inl - ${SOFAGENERALENGINE_SRC}/MapIndices.h - ${SOFAGENERALENGINE_SRC}/MapIndices.inl - ${SOFAGENERALENGINE_SRC}/ROIValueMapper.h - ${SOFAGENERALENGINE_SRC}/DilateEngine.h - ${SOFAGENERALENGINE_SRC}/DilateEngine.inl - ${SOFAGENERALENGINE_SRC}/SmoothMeshEngine.h - ${SOFAGENERALENGINE_SRC}/SmoothMeshEngine.inl - ${SOFAGENERALENGINE_SRC}/QuatToRigidEngine.h - ${SOFAGENERALENGINE_SRC}/QuatToRigidEngine.inl - ${SOFAGENERALENGINE_SRC}/RigidToQuatEngine.h - ${SOFAGENERALENGINE_SRC}/RigidToQuatEngine.inl - ${SOFAGENERALENGINE_SRC}/Vertex2Frame.h - ${SOFAGENERALENGINE_SRC}/Vertex2Frame.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.Haptics.cmake b/Sofa/Component/Compat/Sofa.Component.Haptics.cmake deleted file mode 100644 index e9fea159e56..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Haptics.cmake +++ /dev/null @@ -1,10 +0,0 @@ -set(SOFAHAPTICS_SRC src/SofaHaptics) - -list(APPEND HEADER_FILES - ${SOFAHAPTICS_SRC}/ForceFeedback.h - ${SOFAHAPTICS_SRC}/LCPForceFeedback.h - ${SOFAHAPTICS_SRC}/LCPForceFeedback.inl - ${SOFAHAPTICS_SRC}/MechanicalStateForceFeedback.h - ${SOFAHAPTICS_SRC}/NullForceFeedback.h - ${SOFAHAPTICS_SRC}/NullForceFeedbackT.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.IO.Mesh.cmake b/Sofa/Component/Compat/Sofa.Component.IO.Mesh.cmake deleted file mode 100644 index 7f1eb9f2d81..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.IO.Mesh.cmake +++ /dev/null @@ -1,27 +0,0 @@ -set(SOFALOADER_SRC src/SofaLoader) -set(SOFAGENERALLOADER_SRC src/SofaGeneralLoader) -set(SOFAEXPORTER_SRC src/SofaExporter) - -list(APPEND HEADER_FILES - ${SOFALOADER_SRC}/BaseVTKReader.h - ${SOFALOADER_SRC}/BaseVTKReader.inl - ${SOFALOADER_SRC}/MeshOBJLoader.h - ${SOFALOADER_SRC}/MeshVTKLoader.h - ${SOFAGENERALLOADER_SRC}/MeshGmshLoader.h - ${SOFAGENERALLOADER_SRC}/GIDMeshLoader.h - ${SOFAGENERALLOADER_SRC}/GridMeshCreator.h - ${SOFAGENERALLOADER_SRC}/MeshOffLoader.h - ${SOFAGENERALLOADER_SRC}/MeshSTLLoader.h - ${SOFAGENERALLOADER_SRC}/MeshTrianLoader.h - ${SOFAGENERALLOADER_SRC}/MeshXspLoader.h - ${SOFAGENERALLOADER_SRC}/OffSequenceLoader.h - ${SOFAGENERALLOADER_SRC}/SphereLoader.h - ${SOFAGENERALLOADER_SRC}/StringMeshCreator.h - ${SOFAGENERALLOADER_SRC}/VoxelGridLoader.h - ${SOFAEXPORTER_SRC}/BlenderExporter.h - ${SOFAEXPORTER_SRC}/BlenderExporter.inl - ${SOFAEXPORTER_SRC}/MeshExporter.h - ${SOFAEXPORTER_SRC}/STLExporter.h - ${SOFAEXPORTER_SRC}/VisualModelOBJExporter.h - ${SOFAEXPORTER_SRC}/VTKExporter.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.LinearSolver.Direct.cmake b/Sofa/Component/Compat/Sofa.Component.LinearSolver.Direct.cmake deleted file mode 100644 index 36a337a3c25..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.LinearSolver.Direct.cmake +++ /dev/null @@ -1,21 +0,0 @@ -set(SOFAGENERALLINEARSOLVER_SRC src/SofaGeneralLinearSolver) -set(SOFASPARSESOLVER_SRC src/SofaSparseSolver) -set(SOFADENSESOLVER_SRC src/SofaDenseSolver) - -list(APPEND HEADER_FILES - ${SOFAGENERALLINEARSOLVER_SRC}/BTDLinearSolver.h - ${SOFAGENERALLINEARSOLVER_SRC}/BTDLinearSolver.inl - ${SOFAGENERALLINEARSOLVER_SRC}/CholeskySolver.h - ${SOFAGENERALLINEARSOLVER_SRC}/CholeskySolver.inl - ${SOFADENSESOLVER_SRC}/SVDLinearSolver.h - ${SOFASPARSESOLVER_SRC}/PrecomputedLinearSolver.h - ${SOFASPARSESOLVER_SRC}/PrecomputedLinearSolver.inl - ${SOFASPARSESOLVER_SRC}/SparseLDLSolver.h - ${SOFASPARSESOLVER_SRC}/SparseLDLSolver.inl - ${SOFASPARSESOLVER_SRC}/SparseLDLSolverImpl.h - ${SOFASPARSESOLVER_SRC}/SparseCholeskySolver.h - ${SOFASPARSESOLVER_SRC}/SparseLUSolver.h - ${SOFASPARSESOLVER_SRC}/SparseLUSolver.inl - ${SOFASPARSESOLVER_SRC}/FillReducingOrdering.h - ${SOFASPARSESOLVER_SRC}/FillReducingOrdering.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.LinearSolver.Iterative.cmake b/Sofa/Component/Compat/Sofa.Component.LinearSolver.Iterative.cmake deleted file mode 100644 index 7182ea66010..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.LinearSolver.Iterative.cmake +++ /dev/null @@ -1,14 +0,0 @@ -set(SOFABASELINEARSOLVER_SRC src/SofaBaseLinearSolver) -set(SOFAGENERALLINEARSOLVER_SRC src/SofaGeneralLinearSolver) -set(SOFAPRECONDITIONER_SRC src/SofaPreconditioner) - -list(APPEND HEADER_FILES - ${SOFABASELINEARSOLVER_SRC}/CGLinearSolver.h - ${SOFABASELINEARSOLVER_SRC}/CGLinearSolver.inl - ${SOFAGENERALLINEARSOLVER_SRC}/MinResLinearSolver.h - ${SOFAGENERALLINEARSOLVER_SRC}/MinResLinearSolver.inl - ${SOFAPRECONDITIONER_SRC}/ShewchukPCGLinearSolver.h - ${SOFABASELINEARSOLVER_SRC}/MatrixLinearSolver.h - ${SOFABASELINEARSOLVER_SRC}/MatrixLinearSolver.inl - ${SOFABASELINEARSOLVER_SRC}/GraphScatteredTypes.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.LinearSolver.Preconditioner.cmake b/Sofa/Component/Compat/Sofa.Component.LinearSolver.Preconditioner.cmake deleted file mode 100644 index 5531dc94654..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.LinearSolver.Preconditioner.cmake +++ /dev/null @@ -1,14 +0,0 @@ -set(SOFAPRECONDITIONER_SRC src/SofaPreconditioner) - -list(APPEND HEADER_FILES - ${SOFAPRECONDITIONER_SRC}/BlockJacobiPreconditioner.h - ${SOFAPRECONDITIONER_SRC}/BlockJacobiPreconditioner.inl - ${SOFAPRECONDITIONER_SRC}/JacobiPreconditioner.h - ${SOFAPRECONDITIONER_SRC}/JacobiPreconditioner.inl - ${SOFAPRECONDITIONER_SRC}/PrecomputedWarpPreconditioner.h - ${SOFAPRECONDITIONER_SRC}/PrecomputedWarpPreconditioner.inl - ${SOFAPRECONDITIONER_SRC}/SSORPreconditioner.h - ${SOFAPRECONDITIONER_SRC}/SSORPreconditioner.inl - ${SOFAPRECONDITIONER_SRC}/WarpPreconditioner.h - ${SOFAPRECONDITIONER_SRC}/WarpPreconditioner.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.Mapping.Linear.cmake b/Sofa/Component/Compat/Sofa.Component.Mapping.Linear.cmake deleted file mode 100644 index b43ac39626a..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Mapping.Linear.cmake +++ /dev/null @@ -1,64 +0,0 @@ -set(SOFABASEMECHANICS_SRC src/SofaBaseMechanics) -set(SOFARIGID_SRC src/SofaRigid) -set(SOFAGENERALRIGID_SRC src/SofaGeneralRigid) -set(SOFATOPOLOGICALMAPPING_SRC src/SofaTopologyMapping) -set(SOFAMISCMAPPING_SRC src/SofaMiscMapping) - -list(APPEND HEADER_FILES - ${SOFABASEMECHANICS_SRC}/BarycentricMapping.h - ${SOFABASEMECHANICS_SRC}/BarycentricMapping.inl - ${SOFABASEMECHANICS_SRC}/IdentityMapping.h - ${SOFABASEMECHANICS_SRC}/IdentityMapping.inl - ${SOFABASEMECHANICS_SRC}/SubsetMapping.h - ${SOFABASEMECHANICS_SRC}/SubsetMapping.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapper.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapper.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/TopologyBarycentricMapper.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/TopologyBarycentricMapper.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperMeshTopology.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperMeshTopology.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperRegularGridTopology.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperRegularGridTopology.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperSparseGridTopology.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperSparseGridTopology.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperTopologyContainer.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperTopologyContainer.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperEdgeSetTopology.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperEdgeSetTopology.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperTriangleSetTopology.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperTriangleSetTopology.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperQuadSetTopology.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperQuadSetTopology.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.inl - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperHexahedronSetTopology.h - ${SOFABASEMECHANICS_SRC}/BarycentricMappers/BarycentricMapperHexahedronSetTopology.inl - ${SOFAGENERALRIGID_SRC}/LineSetSkinningMapping.h - ${SOFAGENERALRIGID_SRC}/LineSetSkinningMapping.inl - ${SOFAGENERALRIGID_SRC}/SkinningMapping.h - ${SOFAGENERALRIGID_SRC}/SkinningMapping.inl - ${SOFATOPOLOGICALMAPPING_SRC}/Mesh2PointMechanicalMapping.h - ${SOFATOPOLOGICALMAPPING_SRC}/Mesh2PointMechanicalMapping.inl - ${SOFATOPOLOGICALMAPPING_SRC}/SimpleTesselatedTetraMechanicalMapping.h - ${SOFATOPOLOGICALMAPPING_SRC}/SimpleTesselatedTetraMechanicalMapping.inl - ${SOFAMISCMAPPING_SRC}/BarycentricMappingRigid.h - ${SOFAMISCMAPPING_SRC}/BarycentricMappingRigid.inl - ${SOFAMISCMAPPING_SRC}/BeamLinearMapping.h - ${SOFAMISCMAPPING_SRC}/BeamLinearMapping.inl - ${SOFAMISCMAPPING_SRC}/CenterOfMassMapping.h - ${SOFAMISCMAPPING_SRC}/CenterOfMassMapping.inl - ${SOFAMISCMAPPING_SRC}/CenterOfMassMappingOperation.h - ${SOFAMISCMAPPING_SRC}/CenterOfMassMulti2Mapping.h - ${SOFAMISCMAPPING_SRC}/CenterOfMassMulti2Mapping.inl - ${SOFAMISCMAPPING_SRC}/CenterOfMassMultiMapping.h - ${SOFAMISCMAPPING_SRC}/CenterOfMassMultiMapping.inl - ${SOFAMISCMAPPING_SRC}/DeformableOnRigidFrameMapping.h - ${SOFAMISCMAPPING_SRC}/DeformableOnRigidFrameMapping.inl - ${SOFAMISCMAPPING_SRC}/IdentityMultiMapping.h - ${SOFAMISCMAPPING_SRC}/IdentityMultiMapping.inl - ${SOFAMISCMAPPING_SRC}/SubsetMultiMapping.h - ${SOFAMISCMAPPING_SRC}/SubsetMultiMapping.inl - ${SOFAMISCMAPPING_SRC}/TubularMapping.h - ${SOFAMISCMAPPING_SRC}/TubularMapping.inl - ${SOFAMISCMAPPING_SRC}/VoidMapping.h -) \ No newline at end of file diff --git a/Sofa/Component/Compat/Sofa.Component.Mapping.MappedMatrix.cmake b/Sofa/Component/Compat/Sofa.Component.Mapping.MappedMatrix.cmake deleted file mode 100644 index f8fa5c63a0e..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Mapping.MappedMatrix.cmake +++ /dev/null @@ -1,9 +0,0 @@ -set(SOFACONSTRAINT_SRC src/SofaConstraint) -set(SOFAGENERALANIMATIONLOOP_SRC src/SofaGeneralAnimationLoop) - -list(APPEND HEADER_FILES - ${SOFACONSTRAINT_SRC}/MappingGeometricStiffnessForceField.h - ${SOFACONSTRAINT_SRC}/MappingGeometricStiffnessForceField.inl - ${SOFAGENERALANIMATIONLOOP_SRC}/MechanicalMatrixMapper.h - ${SOFAGENERALANIMATIONLOOP_SRC}/MechanicalMatrixMapper.inl -) \ No newline at end of file diff --git a/Sofa/Component/Compat/Sofa.Component.Mapping.NonLinear.cmake b/Sofa/Component/Compat/Sofa.Component.Mapping.NonLinear.cmake deleted file mode 100644 index 55af6b52865..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Mapping.NonLinear.cmake +++ /dev/null @@ -1,20 +0,0 @@ -set(SOFABASEMECHANICS_SRC src/SofaBaseMechanics) -set(SOFARIGID_SRC src/SofaRigid) -set(SOFAGENERALRIGID_SRC src/SofaGeneralRigid) -set(SOFATOPOLOGICALMAPPING_SRC src/SofaTopologyMapping) -set(SOFAMISCMAPPING_SRC src/SofaMiscMapping) - -list(APPEND HEADER_FILES - ${SOFARIGID_SRC}/RigidMapping.h - ${SOFARIGID_SRC}/RigidMapping.inl - ${SOFARIGID_SRC}/RigidRigidMapping.h - ${SOFARIGID_SRC}/RigidRigidMapping.inl - ${SOFAMISCMAPPING_SRC}/DistanceFromTargetMapping.h - ${SOFAMISCMAPPING_SRC}/DistanceFromTargetMapping.inl - ${SOFAMISCMAPPING_SRC}/DistanceMapping.h - ${SOFAMISCMAPPING_SRC}/DistanceMapping.inl - ${SOFAMISCMAPPING_SRC}/SquareDistanceMapping.h - ${SOFAMISCMAPPING_SRC}/SquareDistanceMapping.inl - ${SOFAMISCMAPPING_SRC}/SquareMapping.h - ${SOFAMISCMAPPING_SRC}/SquareMapping.inl -) \ No newline at end of file diff --git a/Sofa/Component/Compat/Sofa.Component.Mass.cmake b/Sofa/Component/Compat/Sofa.Component.Mass.cmake deleted file mode 100644 index cc5fc4bdfd5..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Mass.cmake +++ /dev/null @@ -1,13 +0,0 @@ -set(SOFABASEMECHANICS_SRC src/SofaBaseMechanics) -set(SOFAMISCFORCEFIELD_SRC src/SofaMiscForceField) - -list(APPEND HEADER_FILES - ${SOFABASEMECHANICS_SRC}/AddMToMatrixFunctor.h - ${SOFABASEMECHANICS_SRC}/DiagonalMass.h - ${SOFABASEMECHANICS_SRC}/DiagonalMass.inl - ${SOFABASEMECHANICS_SRC}/MassType.h - ${SOFABASEMECHANICS_SRC}/UniformMass.h - ${SOFABASEMECHANICS_SRC}/UniformMass.inl - ${SOFAMISCFORCEFIELD_SRC}/MeshMatrixMass.h - ${SOFAMISCFORCEFIELD_SRC}/MeshMatrixMass.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.MechanicalLoad.cmake b/Sofa/Component/Compat/Sofa.Component.MechanicalLoad.cmake deleted file mode 100644 index 688c8ef43bd..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.MechanicalLoad.cmake +++ /dev/null @@ -1,37 +0,0 @@ -set(SOFABOUNDARYCONDITION_SRC src/SofaBoundaryCondition) -set(SOFAGENERALOBJECTINTERACTION_SRC src/SofaGeneralObjectInteraction) - -list(APPEND HEADER_FILES - ${SOFABOUNDARYCONDITION_SRC}/ConicalForceField.h - ${SOFABOUNDARYCONDITION_SRC}/ConicalForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/ConstantForceField.h - ${SOFABOUNDARYCONDITION_SRC}/ConstantForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/DiagonalVelocityDampingForceField.h - ${SOFABOUNDARYCONDITION_SRC}/DiagonalVelocityDampingForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/EdgePressureForceField.h - ${SOFABOUNDARYCONDITION_SRC}/EdgePressureForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/EllipsoidForceField.h - ${SOFABOUNDARYCONDITION_SRC}/EllipsoidForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/LinearForceField.h - ${SOFABOUNDARYCONDITION_SRC}/LinearForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/OscillatingTorsionPressureForceField.h - ${SOFABOUNDARYCONDITION_SRC}/OscillatingTorsionPressureForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/PlaneForceField.h - ${SOFABOUNDARYCONDITION_SRC}/PlaneForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/QuadPressureForceField.h - ${SOFABOUNDARYCONDITION_SRC}/QuadPressureForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/SphereForceField.h - ${SOFABOUNDARYCONDITION_SRC}/SphereForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/SurfacePressureForceField.h - ${SOFABOUNDARYCONDITION_SRC}/SurfacePressureForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/TaitSurfacePressureForceField.h - ${SOFABOUNDARYCONDITION_SRC}/TaitSurfacePressureForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/TorsionForceField.h - ${SOFABOUNDARYCONDITION_SRC}/TorsionForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/TrianglePressureForceField.h - ${SOFABOUNDARYCONDITION_SRC}/TrianglePressureForceField.inl - ${SOFABOUNDARYCONDITION_SRC}/UniformVelocityDampingForceField.h - ${SOFABOUNDARYCONDITION_SRC}/UniformVelocityDampingForceField.inl - ${SOFAGENERALOBJECTINTERACTION_SRC}/InteractionEllipsoidForceField.h - ${SOFAGENERALOBJECTINTERACTION_SRC}/InteractionEllipsoidForceField.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.ODESolver.Backward.cmake b/Sofa/Component/Compat/Sofa.Component.ODESolver.Backward.cmake deleted file mode 100644 index f35b0ad24be..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.ODESolver.Backward.cmake +++ /dev/null @@ -1,10 +0,0 @@ -set(SOFAIMPLICITODESOLVER_SRC src/SofaImplicitOdeSolver) -set(SOFAGENERALIMPLICITODESOLVER_SRC src/SofaGeneralImplicitOdeSolver) -set(SOFAMISCSOLVER_SRC src/SofaMiscSolver) - -list(APPEND HEADER_FILES - ${SOFAIMPLICITODESOLVER_SRC}/EulerImplicitSolver.h - ${SOFAIMPLICITODESOLVER_SRC}/StaticSolver.h - ${SOFAGENERALIMPLICITODESOLVER_SRC}/VariationalSymplecticSolver.h - ${SOFAMISCSOLVER_SRC}/NewmarkImplicitSolver.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.ODESolver.Forward.cmake b/Sofa/Component/Compat/Sofa.Component.ODESolver.Forward.cmake deleted file mode 100644 index b040f791536..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.ODESolver.Forward.cmake +++ /dev/null @@ -1,11 +0,0 @@ -set(SOFAEXPLICITODESOLVER_SRC src/SofaExplicitOdeSolver) -set(SOFAGENERALEXPLICITODESOLVER_SRC src/SofaGeneralExplicitOdeSolver) -set(SOFAMISCSOLVER_SRC src/SofaMiscSolver) - -list(APPEND HEADER_FILES - ${SOFAEXPLICITODESOLVER_SRC}/EulerSolver.h - ${SOFAGENERALEXPLICITODESOLVER_SRC}/CentralDifferenceSolver.h - ${SOFAGENERALEXPLICITODESOLVER_SRC}/RungeKutta2Solver.h - ${SOFAGENERALEXPLICITODESOLVER_SRC}/RungeKutta4Solver.h - ${SOFAMISCSOLVER_SRC}/DampVelocitySolver.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Playback.cmake b/Sofa/Component/Compat/Sofa.Component.Playback.cmake deleted file mode 100644 index 3c09640987f..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Playback.cmake +++ /dev/null @@ -1,17 +0,0 @@ -set(SOFAGENERALLOADER_SRC src/SofaGeneralLoader) -set(SOFAEXPORTER_SRC src/SofaExporter) -set(SOFAVALIDATION_SRC src/SofaValidation) - -list(APPEND HEADER_FILES - ${SOFAGENERALLOADER_SRC}/ReadState.h - ${SOFAGENERALLOADER_SRC}/ReadState.inl - ${SOFAGENERALLOADER_SRC}/ReadTopology.h - ${SOFAGENERALLOADER_SRC}/ReadTopology.inl - ${SOFAGENERALLOADER_SRC}/InputEventReader.h - ${SOFAEXPORTER_SRC}/WriteState.h - ${SOFAEXPORTER_SRC}/WriteState.inl - ${SOFAEXPORTER_SRC}/WriteTopology.h - ${SOFAEXPORTER_SRC}/WriteTopology.inl - ${SOFAVALIDATION_SRC}/CompareState.h - ${SOFAVALIDATION_SRC}/CompareTopology.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.SceneUtility.cmake b/Sofa/Component/Compat/Sofa.Component.SceneUtility.cmake deleted file mode 100644 index fd8679b5201..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.SceneUtility.cmake +++ /dev/null @@ -1,13 +0,0 @@ -set(SOFABASEUTILS_SRC src/SofaBaseUtils) -set(SOFAGRAPHCOMPONENT_SRC src/SofaGraphComponent) - -list(APPEND HEADER_FILES - ${SOFABASEUTILS_SRC}/AddResourceRepository.h - ${SOFABASEUTILS_SRC}/InfoComponent.h - ${SOFABASEUTILS_SRC}/MakeAliasComponent.h - ${SOFABASEUTILS_SRC}/MakeDataAliasComponent.h - ${SOFABASEUTILS_SRC}/messageHandlerComponent.h - ${SOFAGRAPHCOMPONENT_SRC}/APIVersion.h - ${SOFAGRAPHCOMPONENT_SRC}/PauseAnimation.h - ${SOFAGRAPHCOMPONENT_SRC}/PauseAnimationOnEvent.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Setting.cmake b/Sofa/Component/Compat/Sofa.Component.Setting.cmake deleted file mode 100644 index 02c09072462..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Setting.cmake +++ /dev/null @@ -1,10 +0,0 @@ -set(SOFABASEVISUAL_SRC src/SofaBaseVisual) -set(SOFAGRAPHCOMPONENT_SRC src/SofaGraphComponent) - -list(APPEND HEADER_FILES - ${SOFABASEVISUAL_SRC}/BackgroundSetting.h - ${SOFAGRAPHCOMPONENT_SRC}/MouseButtonSetting.h - ${SOFAGRAPHCOMPONENT_SRC}/SofaDefaultPathSetting.h - ${SOFAGRAPHCOMPONENT_SRC}/StatsSetting.h - ${SOFAGRAPHCOMPONENT_SRC}/ViewerSetting.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.Elastic.cmake b/Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.Elastic.cmake deleted file mode 100644 index e284e810a17..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.Elastic.cmake +++ /dev/null @@ -1,37 +0,0 @@ -set(SOFASIMPLEFEM_SRC src/SofaSimpleFem) -set(SOFAGENERALSIMPLEFEM_SRC src/SofaGeneralSimpleFem) -set(SOFAMISCFEM_SRC src/SofaMiscFem) - -list(APPEND HEADER_FILES - ${SOFASIMPLEFEM_SRC}/fwd.h - ${SOFASIMPLEFEM_SRC}/HexahedronFEMForceField.h - ${SOFASIMPLEFEM_SRC}/HexahedronFEMForceField.inl - ${SOFASIMPLEFEM_SRC}/TetrahedronFEMForceField.h - ${SOFASIMPLEFEM_SRC}/TetrahedronFEMForceField.inl - ${SOFAGENERALSIMPLEFEM_SRC}/BeamFEMForceField.h - ${SOFAGENERALSIMPLEFEM_SRC}/BeamFEMForceField.inl - ${SOFAGENERALSIMPLEFEM_SRC}/HexahedralFEMForceField.h - ${SOFAGENERALSIMPLEFEM_SRC}/HexahedralFEMForceField.inl - ${SOFAGENERALSIMPLEFEM_SRC}/HexahedralFEMForceFieldAndMass.h - ${SOFAGENERALSIMPLEFEM_SRC}/HexahedralFEMForceFieldAndMass.inl - ${SOFAGENERALSIMPLEFEM_SRC}/HexahedronFEMForceFieldAndMass.h - ${SOFAGENERALSIMPLEFEM_SRC}/HexahedronFEMForceFieldAndMass.inl - ${SOFAGENERALSIMPLEFEM_SRC}/TetrahedralCorotationalFEMForceField.h - ${SOFAGENERALSIMPLEFEM_SRC}/TetrahedralCorotationalFEMForceField.inl - ${SOFAGENERALSIMPLEFEM_SRC}/TriangularFEMForceFieldOptim.h - ${SOFAGENERALSIMPLEFEM_SRC}/TriangularFEMForceFieldOptim.inl - ${SOFAMISCFEM_SRC}/FastTetrahedralCorotationalForceField.h - ${SOFAMISCFEM_SRC}/FastTetrahedralCorotationalForceField.inl - ${SOFAMISCFEM_SRC}/StandardTetrahedralFEMForceField.h - ${SOFAMISCFEM_SRC}/StandardTetrahedralFEMForceField.inl - ${SOFAMISCFEM_SRC}/TetrahedralTensorMassForceField.h - ${SOFAMISCFEM_SRC}/TetrahedralTensorMassForceField.inl - ${SOFAMISCFEM_SRC}/TriangleFEMForceField.h - ${SOFAMISCFEM_SRC}/TriangleFEMForceField.inl - ${SOFAMISCFEM_SRC}/TriangularAnisotropicFEMForceField.h - ${SOFAMISCFEM_SRC}/TriangularAnisotropicFEMForceField.inl - ${SOFAMISCFEM_SRC}/TriangularFEMForceField.h - ${SOFAMISCFEM_SRC}/TriangularFEMForceField.inl - ${SOFAMISCFEM_SRC}/QuadBendingFEMForceField.h - ${SOFAMISCFEM_SRC}/QuadBendingFEMForceField.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.HyperElastic.cmake b/Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.HyperElastic.cmake deleted file mode 100644 index d0edc55404a..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.HyperElastic.cmake +++ /dev/null @@ -1,18 +0,0 @@ -set(SOFAMISCFEM_SRC src/SofaMiscFem) - -list(APPEND HEADER_FILES - ${SOFAMISCFEM_SRC}/BaseMaterial.h - ${SOFAMISCFEM_SRC}/BoyceAndArruda.h - ${SOFAMISCFEM_SRC}/Costa.h - ${SOFAMISCFEM_SRC}/HyperelasticMaterial.h - ${SOFAMISCFEM_SRC}/MooneyRivlin.h - ${SOFAMISCFEM_SRC}/NeoHookean.h - ${SOFAMISCFEM_SRC}/Ogden.h - ${SOFAMISCFEM_SRC}/PlasticMaterial.h - ${SOFAMISCFEM_SRC}/StandardTetrahedralFEMForceField.h - ${SOFAMISCFEM_SRC}/StandardTetrahedralFEMForceField.inl - ${SOFAMISCFEM_SRC}/STVenantKirchhoff.h - ${SOFAMISCFEM_SRC}/TetrahedronHyperelasticityFEMForceField.h - ${SOFAMISCFEM_SRC}/TetrahedronHyperelasticityFEMForceField.inl - ${SOFAMISCFEM_SRC}/VerondaWestman.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.NonUniform.cmake b/Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.NonUniform.cmake deleted file mode 100644 index 3e9b30dc7c1..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.SolidMechanics.FEM.NonUniform.cmake +++ /dev/null @@ -1,12 +0,0 @@ -set(SOFANONUNIFORMFEM_SRC src/SofaNonUniformFem) - -list(APPEND HEADER_FILES - ${SOFANONUNIFORMFEM_SRC}/NonUniformHexahedralFEMForceFieldAndMass.h - ${SOFANONUNIFORMFEM_SRC}/NonUniformHexahedralFEMForceFieldAndMass.inl - ${SOFANONUNIFORMFEM_SRC}/NonUniformHexahedronFEMForceFieldAndMass.h - ${SOFANONUNIFORMFEM_SRC}/NonUniformHexahedronFEMForceFieldAndMass.inl - ${SOFANONUNIFORMFEM_SRC}/HexahedronCompositeFEMForceFieldAndMass.h - ${SOFANONUNIFORMFEM_SRC}/HexahedronCompositeFEMForceFieldAndMass.inl - ${SOFANONUNIFORMFEM_SRC}/HexahedronCompositeFEMMapping.h - ${SOFANONUNIFORMFEM_SRC}/HexahedronCompositeFEMMapping.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.SolidMechanics.Spring.cmake b/Sofa/Component/Compat/Sofa.Component.SolidMechanics.Spring.cmake deleted file mode 100644 index 9b2db04dc38..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.SolidMechanics.Spring.cmake +++ /dev/null @@ -1,50 +0,0 @@ -set(SOFADEFORMABLE_SRC src/SofaDeformable) -set(SOFARIGID_SRC src/SofaRigid) -set(SOFAGENERALDEFORMABLE_SRC src/SofaGeneralDeformable) -set(SOFAGENERALOBJECTINTERACTION_SRC src/SofaGeneralObjectInteraction) -set(SOFAMISCFORCEFIELD_SRC src/SofaMiscForceField) - -list(APPEND HEADER_FILES - ${SOFADEFORMABLE_SRC}/AngularSpringForceField.h - ${SOFADEFORMABLE_SRC}/AngularSpringForceField.inl - ${SOFADEFORMABLE_SRC}/MeshSpringForceField.h - ${SOFADEFORMABLE_SRC}/MeshSpringForceField.inl - ${SOFADEFORMABLE_SRC}/RestShapeSpringsForceField.h - ${SOFADEFORMABLE_SRC}/RestShapeSpringsForceField.inl - ${SOFADEFORMABLE_SRC}/PolynomialRestShapeSpringsForceField.h - ${SOFADEFORMABLE_SRC}/PolynomialRestShapeSpringsForceField.inl - ${SOFADEFORMABLE_SRC}/SpringForceField.h - ${SOFADEFORMABLE_SRC}/SpringForceField.inl - ${SOFADEFORMABLE_SRC}/StiffSpringForceField.h - ${SOFADEFORMABLE_SRC}/StiffSpringForceField.inl - ${SOFADEFORMABLE_SRC}/PolynomialSpringsForceField.h - ${SOFADEFORMABLE_SRC}/PolynomialSpringsForceField.inl - ${SOFARIGID_SRC}/JointSpring.h - ${SOFARIGID_SRC}/JointSpring.inl - ${SOFARIGID_SRC}/JointSpringForceField.h - ${SOFARIGID_SRC}/JointSpringForceField.inl - ${SOFAGENERALDEFORMABLE_SRC}/FastTriangularBendingSprings.h - ${SOFAGENERALDEFORMABLE_SRC}/FastTriangularBendingSprings.inl - ${SOFAGENERALDEFORMABLE_SRC}/FrameSpringForceField.h - ${SOFAGENERALDEFORMABLE_SRC}/FrameSpringForceField.inl - ${SOFAGENERALDEFORMABLE_SRC}/QuadBendingSprings.h - ${SOFAGENERALDEFORMABLE_SRC}/QuadBendingSprings.inl - ${SOFAGENERALDEFORMABLE_SRC}/QuadularBendingSprings.h - ${SOFAGENERALDEFORMABLE_SRC}/QuadularBendingSprings.inl - ${SOFAGENERALDEFORMABLE_SRC}/RegularGridSpringForceField.h - ${SOFAGENERALDEFORMABLE_SRC}/RegularGridSpringForceField.inl - ${SOFAGENERALDEFORMABLE_SRC}/TriangleBendingSprings.h - ${SOFAGENERALDEFORMABLE_SRC}/TriangleBendingSprings.inl - ${SOFAGENERALDEFORMABLE_SRC}/TriangularBendingSprings.h - ${SOFAGENERALDEFORMABLE_SRC}/TriangularBendingSprings.inl - ${SOFAGENERALDEFORMABLE_SRC}/TriangularBiquadraticSpringsForceField.h - ${SOFAGENERALDEFORMABLE_SRC}/TriangularBiquadraticSpringsForceField.inl - ${SOFAGENERALDEFORMABLE_SRC}/TriangularQuadraticSpringsForceField.h - ${SOFAGENERALDEFORMABLE_SRC}/TriangularQuadraticSpringsForceField.inl - ${SOFAGENERALDEFORMABLE_SRC}/VectorSpringForceField.h - ${SOFAGENERALDEFORMABLE_SRC}/VectorSpringForceField.inl - ${SOFAGENERALOBJECTINTERACTION_SRC}/RepulsiveSpringForceField.h - ${SOFAGENERALOBJECTINTERACTION_SRC}/RepulsiveSpringForceField.inl - ${SOFAMISCFORCEFIELD_SRC}/GearSpringForceField.h - ${SOFAMISCFORCEFIELD_SRC}/GearSpringForceField.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.SolidMechanics.TensorMass.cmake b/Sofa/Component/Compat/Sofa.Component.SolidMechanics.TensorMass.cmake deleted file mode 100644 index a50025c85bd..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.SolidMechanics.TensorMass.cmake +++ /dev/null @@ -1,10 +0,0 @@ -set(SOFASIMPLEFEM_SRC src/SofaSimpleFem) -set(SOFAGENERALDEFORMABLE_SRC src/SofaGeneralDeformable) - -list(APPEND HEADER_FILES - ${SOFASIMPLEFEM_SRC}/fwd.h - ${SOFAMISCFEM_SRC}/TetrahedralTensorMassForceField.h - ${SOFAMISCFEM_SRC}/TetrahedralTensorMassForceField.inl - ${SOFAGENERALDEFORMABLE_SRC}/TriangularTensorMassForceField.h - ${SOFAGENERALDEFORMABLE_SRC}/TriangularTensorMassForceField.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.StateContainer.cmake b/Sofa/Component/Compat/Sofa.Component.StateContainer.cmake deleted file mode 100644 index 7ad61eb529f..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.StateContainer.cmake +++ /dev/null @@ -1,8 +0,0 @@ -set(SOFABASEMECHANICS_SRC src/SofaBaseMechanics) - -list(APPEND HEADER_FILES - ${SOFABASEMECHANICS_SRC}/MechanicalObject.h - ${SOFABASEMECHANICS_SRC}/MechanicalObject.inl - ${SOFABASEMECHANICS_SRC}/MappedObject.h - ${SOFABASEMECHANICS_SRC}/MappedObject.inl -) diff --git a/Sofa/Component/Compat/Sofa.Component.Topology.Container.Constant.cmake b/Sofa/Component/Compat/Sofa.Component.Topology.Container.Constant.cmake deleted file mode 100644 index 7776b2c8246..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Topology.Container.Constant.cmake +++ /dev/null @@ -1,8 +0,0 @@ -set(SOFABASETOPOLOGY_SRC src/SofaBaseTopology) -set(SOFAGENERALTOPOLOGY_SRC src/SofaGeneralTopology) - -list(APPEND HEADER_FILES - ${SOFABASETOPOLOGY_SRC}/MeshTopology.h - ${SOFAGENERALTOPOLOGY_SRC}/CubeTopology.h - ${SOFAGENERALTOPOLOGY_SRC}/SphereQuadTopology.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Topology.Container.Dynamic.cmake b/Sofa/Component/Compat/Sofa.Component.Topology.Container.Dynamic.cmake deleted file mode 100644 index 3c4073d374c..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Topology.Container.Dynamic.cmake +++ /dev/null @@ -1,45 +0,0 @@ -set(SOFABASETOPOLOGY_SRC src/SofaBaseTopology) -set(SOFANONUNIFORMFEM_SRC src/SofaNonUniformFem) - -list(APPEND HEADER_FILES - ${SOFABASETOPOLOGY_SRC}/fwd.h - ${SOFABASETOPOLOGY_SRC}/CommonAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/EdgeSetGeometryAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/EdgeSetGeometryAlgorithms.inl - ${SOFABASETOPOLOGY_SRC}/EdgeSetTopologyAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/EdgeSetTopologyContainer.h - ${SOFABASETOPOLOGY_SRC}/EdgeSetTopologyModifier.h - ${SOFABASETOPOLOGY_SRC}/HexahedronSetGeometryAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/HexahedronSetGeometryAlgorithms.inl - ${SOFABASETOPOLOGY_SRC}/HexahedronSetTopologyAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/HexahedronSetTopologyContainer.h - ${SOFABASETOPOLOGY_SRC}/HexahedronSetTopologyModifier.h - ${SOFABASETOPOLOGY_SRC}/NumericalIntegrationDescriptor.h - ${SOFABASETOPOLOGY_SRC}/NumericalIntegrationDescriptor.inl - ${SOFABASETOPOLOGY_SRC}/PointSetGeometryAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/PointSetGeometryAlgorithms.inl - ${SOFABASETOPOLOGY_SRC}/PointSetTopologyAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/PointSetTopologyContainer.h - ${SOFABASETOPOLOGY_SRC}/PointSetTopologyModifier.h - ${SOFABASETOPOLOGY_SRC}/QuadSetGeometryAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/QuadSetGeometryAlgorithms.inl - ${SOFABASETOPOLOGY_SRC}/QuadSetTopologyAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/QuadSetTopologyContainer.h - ${SOFABASETOPOLOGY_SRC}/QuadSetTopologyModifier.h - ${SOFABASETOPOLOGY_SRC}/TetrahedronSetGeometryAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/TetrahedronSetGeometryAlgorithms.inl - ${SOFABASETOPOLOGY_SRC}/TetrahedronSetTopologyAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/TetrahedronSetTopologyContainer.h - ${SOFABASETOPOLOGY_SRC}/TetrahedronSetTopologyModifier.h - ${SOFABASETOPOLOGY_SRC}/TriangleSetGeometryAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/TriangleSetGeometryAlgorithms.inl - ${SOFABASETOPOLOGY_SRC}/TriangleSetTopologyAlgorithms.h - ${SOFABASETOPOLOGY_SRC}/TriangleSetTopologyContainer.h - ${SOFABASETOPOLOGY_SRC}/TriangleSetTopologyModifier.h - ${SOFANONUNIFORMFEM_SRC}/DynamicSparseGridGeometryAlgorithms.h - ${SOFANONUNIFORMFEM_SRC}/DynamicSparseGridGeometryAlgorithms.inl - ${SOFANONUNIFORMFEM_SRC}/DynamicSparseGridTopologyAlgorithms.h - ${SOFANONUNIFORMFEM_SRC}/DynamicSparseGridTopologyContainer.h - ${SOFANONUNIFORMFEM_SRC}/DynamicSparseGridTopologyModifier.h - ${SOFANONUNIFORMFEM_SRC}/MultilevelHexahedronSetTopologyContainer.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Topology.Container.Grid.cmake b/Sofa/Component/Compat/Sofa.Component.Topology.Container.Grid.cmake deleted file mode 100644 index d7350cc5a0a..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Topology.Container.Grid.cmake +++ /dev/null @@ -1,15 +0,0 @@ -set(SOFABASETOPOLOGY_SRC src/SofaBaseTopology) -set(SOFAGENERALTOPOLOGY_SRC src/SofaGeneralTopology) -set(SOFANONUNIFORMFEM_SRC src/SofaNonUniformFem) - -list(APPEND HEADER_FILES - ${SOFABASETOPOLOGY_SRC}/polygon_cube_intersection/polygon_cube_intersection.h - ${SOFABASETOPOLOGY_SRC}/polygon_cube_intersection/vec.h - ${SOFABASETOPOLOGY_SRC}/GridTopology.h - ${SOFABASETOPOLOGY_SRC}/RegularGridTopology.h - ${SOFABASETOPOLOGY_SRC}/SparseGridTopology.h - ${SOFAGENERALTOPOLOGY_SRC}/CylinderGridTopology.h - ${SOFAGENERALTOPOLOGY_SRC}/SphereGridTopology.h - ${SOFANONUNIFORMFEM_SRC}/SparseGridMultipleTopology.h - ${SOFANONUNIFORMFEM_SRC}/SparseGridRamificationTopology.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Topology.Mapping.cmake b/Sofa/Component/Compat/Sofa.Component.Topology.Mapping.cmake deleted file mode 100644 index 2755cd25013..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Topology.Mapping.cmake +++ /dev/null @@ -1,13 +0,0 @@ -set(SOFATOPOLOGYMAPPING_SRC src/SofaTopologyMapping) - -list(APPEND HEADER_FILES - ${SOFATOPOLOGYMAPPING_SRC}/CenterPointTopologicalMapping.h - ${SOFATOPOLOGYMAPPING_SRC}/Edge2QuadTopologicalMapping.h - ${SOFATOPOLOGYMAPPING_SRC}/Hexa2QuadTopologicalMapping.h - ${SOFATOPOLOGYMAPPING_SRC}/Hexa2TetraTopologicalMapping.h - ${SOFATOPOLOGYMAPPING_SRC}/IdentityTopologicalMapping.h - ${SOFATOPOLOGYMAPPING_SRC}/Quad2TriangleTopologicalMapping.h - ${SOFATOPOLOGYMAPPING_SRC}/SubsetTopologicalMapping.h - ${SOFATOPOLOGYMAPPING_SRC}/Tetra2TriangleTopologicalMapping.h - ${SOFATOPOLOGYMAPPING_SRC}/Triangle2EdgeTopologicalMapping.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Topology.Utility.cmake b/Sofa/Component/Compat/Sofa.Component.Topology.Utility.cmake deleted file mode 100644 index 67a1c121c2c..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Topology.Utility.cmake +++ /dev/null @@ -1,8 +0,0 @@ -set(SOFAMISCTOPOLOGY_SRC src/SofaMiscTopology) - -list(APPEND HEADER_FILES - ${SOFAMISCTOPOLOGY_SRC}/TopologicalChangeProcessor.h - ${SOFAMISCTOPOLOGY_SRC}/TopologyBoundingTrasher.h - ${SOFAMISCTOPOLOGY_SRC}/TopologyBoundingTrasher.inl - ${SOFAMISCTOPOLOGY_SRC}/TopologyChecker.h -) diff --git a/Sofa/Component/Compat/Sofa.Component.Visual.cmake b/Sofa/Component/Compat/Sofa.Component.Visual.cmake deleted file mode 100644 index a622236893b..00000000000 --- a/Sofa/Component/Compat/Sofa.Component.Visual.cmake +++ /dev/null @@ -1,13 +0,0 @@ -set(SOFABASEVISUAL_SRC src/SofaBaseVisual) -set(SOFAGENERALVISUAL_SRC src/SofaGeneralVisual) - -list(APPEND HEADER_FILES - ${SOFABASEVISUAL_SRC}/BaseCamera.h - ${SOFABASEVISUAL_SRC}/Camera.h - ${SOFABASEVISUAL_SRC}/InteractiveCamera.h - ${SOFABASEVISUAL_SRC}/VisualModelImpl.h - ${SOFABASEVISUAL_SRC}/VisualStyle.h - ${SOFAGENERALVISUAL_SRC}/RecordedCamera.h - ${SOFAGENERALVISUAL_SRC}/VisualTransform.h - ${SOFAGENERALVISUAL_SRC}/Visual3DText.h -) diff --git a/Sofa/Component/Compat/Sofa.GL.Component.Engine.cmake b/Sofa/Component/Compat/Sofa.GL.Component.Engine.cmake deleted file mode 100644 index 164f2dddb11..00000000000 --- a/Sofa/Component/Compat/Sofa.GL.Component.Engine.cmake +++ /dev/null @@ -1,6 +0,0 @@ -set(SOFAGENERALENGINE_SRC src/SofaGeneralEngine) - -list(APPEND HEADER_FILES - ${SOFAGENERALENGINE_SRC}/TextureInterpolation.h - ${SOFAGENERALENGINE_SRC}/TextureInterpolation.inl -) diff --git a/Sofa/Component/Compat/Sofa.GL.Component.Rendering2D.cmake b/Sofa/Component/Compat/Sofa.GL.Component.Rendering2D.cmake deleted file mode 100644 index 73a81d98506..00000000000 --- a/Sofa/Component/Compat/Sofa.GL.Component.Rendering2D.cmake +++ /dev/null @@ -1,7 +0,0 @@ -set(SOFAOPENGLVISUAL_SRC src/SofaOpenglVisual) - -list(APPEND HEADER_FILES - ${SOFAOPENGLVISUAL_SRC}/OglColorMap.h - ${SOFAOPENGLVISUAL_SRC}/OglLabel.h - ${SOFAOPENGLVISUAL_SRC}/OglViewport.h -) diff --git a/Sofa/Component/Compat/Sofa.GL.Component.Rendering3D.cmake b/Sofa/Component/Compat/Sofa.GL.Component.Rendering3D.cmake deleted file mode 100644 index aa73c30ffa1..00000000000 --- a/Sofa/Component/Compat/Sofa.GL.Component.Rendering3D.cmake +++ /dev/null @@ -1,13 +0,0 @@ -set(SOFAOPENGLVISUAL_SRC src/SofaOpenglVisual) - -list(APPEND HEADER_FILES - ${SOFAOPENGLVISUAL_SRC}/DataDisplay.h - ${SOFAOPENGLVISUAL_SRC}/OglModel.h - ${SOFAOPENGLVISUAL_SRC}/PointSplatModel.h - ${SOFAOPENGLVISUAL_SRC}/MergeVisualModels.h - ${SOFAOPENGLVISUAL_SRC}/OglCylinderModel.h - ${SOFAOPENGLVISUAL_SRC}/OglGrid.h - ${SOFAOPENGLVISUAL_SRC}/OglLineAxis.h - ${SOFAOPENGLVISUAL_SRC}/OglSceneFrame.h - ${SOFAOPENGLVISUAL_SRC}/SlicedVolumetricModel.h -) diff --git a/Sofa/Component/Compat/Sofa.GL.Component.Shader.cmake b/Sofa/Component/Compat/Sofa.GL.Component.Shader.cmake deleted file mode 100644 index cd4f1412832..00000000000 --- a/Sofa/Component/Compat/Sofa.GL.Component.Shader.cmake +++ /dev/null @@ -1,24 +0,0 @@ -set(SOFAOPENGLVISUAL_SRC src/SofaOpenglVisual) - -list(APPEND HEADER_FILES - ${SOFAOPENGLVISUAL_SRC}/ClipPlane.h - ${SOFAOPENGLVISUAL_SRC}/CompositingVisualLoop.h - ${SOFAOPENGLVISUAL_SRC}/LightManager.h - ${SOFAOPENGLVISUAL_SRC}/Light.h - ${SOFAOPENGLVISUAL_SRC}/OrderIndependentTransparencyManager.h - ${SOFAOPENGLVISUAL_SRC}/OglOITShader.h - ${SOFAOPENGLVISUAL_SRC}/OglAttribute.h - ${SOFAOPENGLVISUAL_SRC}/OglAttribute.inl - ${SOFAOPENGLVISUAL_SRC}/OglShader.h - ${SOFAOPENGLVISUAL_SRC}/OglShaderMacro.h - ${SOFAOPENGLVISUAL_SRC}/OglShaderVisualModel.h - ${SOFAOPENGLVISUAL_SRC}/OglShadowShader.h - ${SOFAOPENGLVISUAL_SRC}/OglTexture.h - ${SOFAOPENGLVISUAL_SRC}/OglTexturePointer.h - ${SOFAOPENGLVISUAL_SRC}/OglVariable.h - ${SOFAOPENGLVISUAL_SRC}/OglVariable.inl - ${SOFAOPENGLVISUAL_SRC}/OglRenderingSRGB.h - ${SOFAOPENGLVISUAL_SRC}/PostProcessManager.h - ${SOFAOPENGLVISUAL_SRC}/VisualManagerPass.h - ${SOFAOPENGLVISUAL_SRC}/VisualManagerSecondaryPass.h -) diff --git a/Sofa/Component/Compat/Sofa.GUI.Component.cmake b/Sofa/Component/Compat/Sofa.GUI.Component.cmake deleted file mode 100644 index a3c33d4425e..00000000000 --- a/Sofa/Component/Compat/Sofa.GUI.Component.cmake +++ /dev/null @@ -1,29 +0,0 @@ -set(SOFAGRAPHCOMPONENT_SRC src/SofaGraphComponent) -set(SOFAUSERINTERACTION_SRC src/SofaUserInteraction) -set(SOFACONSTRAINT_SRC src/SofaConstraint) - -list(APPEND HEADER_FILES - ${SOFAGRAPHCOMPONENT_SRC}/AddFrameButtonSetting.h - ${SOFAGRAPHCOMPONENT_SRC}/AddRecordedCameraButtonSetting.h - ${SOFAGRAPHCOMPONENT_SRC}/AttachBodyButtonSetting.h - ${SOFAGRAPHCOMPONENT_SRC}/FixPickedParticleButtonSetting.h - ${SOFAUSERINTERACTION_SRC}/AddRecordedCameraPerformer.h - ${SOFAUSERINTERACTION_SRC}/AttachBodyPerformer.h - ${SOFAUSERINTERACTION_SRC}/AttachBodyPerformer.inl - ${SOFAUSERINTERACTION_SRC}/ComponentMouseInteraction.h - ${SOFAUSERINTERACTION_SRC}/ComponentMouseInteraction.inl - ${SOFAUSERINTERACTION_SRC}/FixParticlePerformer.h - ${SOFAUSERINTERACTION_SRC}/FixParticlePerformer.inl - ${SOFAUSERINTERACTION_SRC}/InciseAlongPathPerformer.h - ${SOFAUSERINTERACTION_SRC}/InteractionPerformer.h - ${SOFAUSERINTERACTION_SRC}/MouseInteractor.h - ${SOFAUSERINTERACTION_SRC}/MouseInteractor.inl - ${SOFAUSERINTERACTION_SRC}/RemovePrimitivePerformer.h - ${SOFAUSERINTERACTION_SRC}/RemovePrimitivePerformer.inl - ${SOFAUSERINTERACTION_SRC}/StartNavigationPerformer.h - ${SOFAUSERINTERACTION_SRC}/SuturePointPerformer.h - ${SOFAUSERINTERACTION_SRC}/SuturePointPerformer.inl - ${SOFAUSERINTERACTION_SRC}/TopologicalChangeManager.h - ${SOFACONSTRAINT_SRC}/ConstraintAttachBodyPerformer.h - ${SOFACONSTRAINT_SRC}/ConstraintAttachBodyPerformer.inl -) \ No newline at end of file diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/BVHNarrowPhase.h b/Sofa/Component/Compat/src/SofaBaseCollision/BVHNarrowPhase.h deleted file mode 100644 index c6b2a8a9226..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/BVHNarrowPhase.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/BVHNarrowPhase.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/BaseContactMapper.h b/Sofa/Component/Compat/src/SofaBaseCollision/BaseContactMapper.h deleted file mode 100644 index af655c5c047..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/BaseContactMapper.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/mapper/BaseContactMapper.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/BaseProximityIntersection.h b/Sofa/Component/Compat/src/SofaBaseCollision/BaseProximityIntersection.h deleted file mode 100644 index 3b716f38904..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/BaseProximityIntersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/BaseProximityIntersection.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/BruteForceBroadPhase.h b/Sofa/Component/Compat/src/SofaBaseCollision/BruteForceBroadPhase.h deleted file mode 100644 index 64b28e2c9ab..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/BruteForceBroadPhase.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/BruteForceBroadPhase.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/BruteForceDetection.h b/Sofa/Component/Compat/src/SofaBaseCollision/BruteForceDetection.h deleted file mode 100644 index 62104da153d..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/BruteForceDetection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/BruteForceDetection.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/ContactListener.h b/Sofa/Component/Compat/src/SofaBaseCollision/ContactListener.h deleted file mode 100644 index 83bbc6814fc..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/ContactListener.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/ContactListener.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/CubeModel.h b/Sofa/Component/Compat/src/SofaBaseCollision/CubeModel.h deleted file mode 100644 index f2fcd3822c2..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/CubeModel.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/CubeModel.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/CylinderModel.h b/Sofa/Component/Compat/src/SofaBaseCollision/CylinderModel.h deleted file mode 100644 index 6e9bede7534..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/CylinderModel.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/CylinderModel.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/CylinderModel.inl b/Sofa/Component/Compat/src/SofaBaseCollision/CylinderModel.inl deleted file mode 100644 index 88f443360f6..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/CylinderModel.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/CylinderModel.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/DefaultContactManager.h b/Sofa/Component/Compat/src/SofaBaseCollision/DefaultContactManager.h deleted file mode 100644 index 9bbb4d20cde..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/DefaultContactManager.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/CollisionResponse.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/DefaultPipeline.h b/Sofa/Component/Compat/src/SofaBaseCollision/DefaultPipeline.h deleted file mode 100644 index abb5ba66141..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/DefaultPipeline.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/CollisionPipeline.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/DiscreteIntersection.h b/Sofa/Component/Compat/src/SofaBaseCollision/DiscreteIntersection.h deleted file mode 100644 index 7ce9ca5c2ec..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/DiscreteIntersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/DiscreteIntersection.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/MinProximityIntersection.h b/Sofa/Component/Compat/src/SofaBaseCollision/MinProximityIntersection.h deleted file mode 100644 index 6ce250d3f41..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/MinProximityIntersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/MinProximityIntersection.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/MirrorIntersector.h b/Sofa/Component/Compat/src/SofaBaseCollision/MirrorIntersector.h deleted file mode 100644 index 0ae073404bb..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/MirrorIntersector.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/MirrorIntersector.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/NewProximityIntersection.h b/Sofa/Component/Compat/src/SofaBaseCollision/NewProximityIntersection.h deleted file mode 100644 index 43260a3466e..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/NewProximityIntersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/NewProximityIntersection.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/NewProximityIntersection.inl b/Sofa/Component/Compat/src/SofaBaseCollision/NewProximityIntersection.inl deleted file mode 100644 index 721de0476a7..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/NewProximityIntersection.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/NewProximityIntersection.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/SphereModel.h b/Sofa/Component/Compat/src/SofaBaseCollision/SphereModel.h deleted file mode 100644 index 78da5f91fbb..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/SphereModel.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/SphereModel.h") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/SphereModel.inl b/Sofa/Component/Compat/src/SofaBaseCollision/SphereModel.inl deleted file mode 100644 index 7af1fbe2d9d..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/SphereModel.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/SphereModel.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseCollision/fwd.h b/Sofa/Component/Compat/src/SofaBaseCollision/fwd.h deleted file mode 100644 index b39bf60248b..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseCollision/fwd.h +++ /dev/null @@ -1,24 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/fwd.h") diff --git a/Sofa/Component/Compat/src/SofaBaseLinearSolver/CGLinearSolver.h b/Sofa/Component/Compat/src/SofaBaseLinearSolver/CGLinearSolver.h deleted file mode 100644 index 32a4640d91a..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseLinearSolver/CGLinearSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/iterative/CGLinearSolver.h") diff --git a/Sofa/Component/Compat/src/SofaBaseLinearSolver/CGLinearSolver.inl b/Sofa/Component/Compat/src/SofaBaseLinearSolver/CGLinearSolver.inl deleted file mode 100644 index d6e219b1105..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseLinearSolver/CGLinearSolver.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/iterative/CGLinearSolver.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseLinearSolver/GraphScatteredTypes.h b/Sofa/Component/Compat/src/SofaBaseLinearSolver/GraphScatteredTypes.h deleted file mode 100644 index 818e3722081..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseLinearSolver/GraphScatteredTypes.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/iterative/GraphScatteredTypes.h") diff --git a/Sofa/Component/Compat/src/SofaBaseLinearSolver/MatrixLinearSolver.h b/Sofa/Component/Compat/src/SofaBaseLinearSolver/MatrixLinearSolver.h deleted file mode 100644 index e94f15377c3..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseLinearSolver/MatrixLinearSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/iterative/MatrixLinearSolver.h") diff --git a/Sofa/Component/Compat/src/SofaBaseLinearSolver/MatrixLinearSolver.inl b/Sofa/Component/Compat/src/SofaBaseLinearSolver/MatrixLinearSolver.inl deleted file mode 100644 index 00f8cd662dd..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseLinearSolver/MatrixLinearSolver.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/iterative/MatrixLinearSolver.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/AddMToMatrixFunctor.h b/Sofa/Component/Compat/src/SofaBaseMechanics/AddMToMatrixFunctor.h deleted file mode 100644 index f58fd32e163..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/AddMToMatrixFunctor.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mass/AddMToMatrixFunctor.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapper.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapper.h deleted file mode 100644 index a2a662572cc..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapper.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapper.h") - diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapper.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapper.inl deleted file mode 100644 index 307a7755b2f..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapper.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapper.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperEdgeSetTopology.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperEdgeSetTopology.h deleted file mode 100644 index 60f2cf3f7f5..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperEdgeSetTopology.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperEdgeSetTopology.h") - diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperEdgeSetTopology.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperEdgeSetTopology.inl deleted file mode 100644 index 8f0761aef28..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperEdgeSetTopology.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperEdgeSetTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperHexahedronSetTopology.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperHexahedronSetTopology.h deleted file mode 100644 index fa9f73484e3..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperHexahedronSetTopology.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperHexahedronSetTopology.h") - diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperHexahedronSetTopology.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperHexahedronSetTopology.inl deleted file mode 100644 index d77f628b3ee..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperHexahedronSetTopology.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperHexahedronSetTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperMeshTopology.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperMeshTopology.h deleted file mode 100644 index 34bb27b574b..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperMeshTopology.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperMeshTopology.h") - diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperMeshTopology.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperMeshTopology.inl deleted file mode 100644 index 5d764eda426..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperMeshTopology.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperMeshTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperQuadSetTopology.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperQuadSetTopology.h deleted file mode 100644 index 5ab3607c284..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperQuadSetTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperQuadSetTopology.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperQuadSetTopology.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperQuadSetTopology.inl deleted file mode 100644 index da55a83df0f..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperQuadSetTopology.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperQuadSetTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperRegularGridTopology.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperRegularGridTopology.h deleted file mode 100644 index 3c0d05a54f9..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperRegularGridTopology.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperRegularGridTopology.h") - diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperRegularGridTopology.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperRegularGridTopology.inl deleted file mode 100644 index 9cf4243f619..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperRegularGridTopology.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperRegularGridTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperSparseGridTopology.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperSparseGridTopology.h deleted file mode 100644 index 632719c2448..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperSparseGridTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperSparseGridTopology.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperSparseGridTopology.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperSparseGridTopology.inl deleted file mode 100644 index a1d3537398d..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperSparseGridTopology.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperSparseGridTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.h deleted file mode 100644 index 4a110ee161b..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.inl deleted file mode 100644 index fea01df3b54..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperTetrahedronSetTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTopologyContainer.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTopologyContainer.h deleted file mode 100644 index 12c0ada02f2..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTopologyContainer.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperTopologyContainer.h") - diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTopologyContainer.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTopologyContainer.inl deleted file mode 100644 index aae14d70316..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTopologyContainer.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperTopologyContainer.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTriangleSetTopology.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTriangleSetTopology.h deleted file mode 100644 index ddb85ecf00f..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTriangleSetTopology.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperTriangleSetTopology.h") - diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTriangleSetTopology.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTriangleSetTopology.inl deleted file mode 100644 index bc16ed594b9..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/BarycentricMapperTriangleSetTopology.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperTriangleSetTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/TopologyBarycentricMapper.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/TopologyBarycentricMapper.h deleted file mode 100644 index 5375ff74a74..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/TopologyBarycentricMapper.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/TopologyBarycentricMapper.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/TopologyBarycentricMapper.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/TopologyBarycentricMapper.inl deleted file mode 100644 index bbe2354269c..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMappers/TopologyBarycentricMapper.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappers/TopologyBarycentricMapper.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMapping.h b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMapping.h deleted file mode 100644 index 41d92024997..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMapping.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMapping.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMapping.inl deleted file mode 100644 index 11f085ad3c5..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/BarycentricMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/DiagonalMass.h b/Sofa/Component/Compat/src/SofaBaseMechanics/DiagonalMass.h deleted file mode 100644 index 007809581c3..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/DiagonalMass.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mass/DiagonalMass.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/DiagonalMass.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/DiagonalMass.inl deleted file mode 100644 index df39268fdbf..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/DiagonalMass.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mass/DiagonalMass.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/IdentityMapping.h b/Sofa/Component/Compat/src/SofaBaseMechanics/IdentityMapping.h deleted file mode 100644 index 658983b20e2..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/IdentityMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/IdentityMapping.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/IdentityMapping.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/IdentityMapping.inl deleted file mode 100644 index 87bdb8bf778..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/IdentityMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/IdentityMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/MappedObject.h b/Sofa/Component/Compat/src/SofaBaseMechanics/MappedObject.h deleted file mode 100644 index e2ec6778d3c..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/MappedObject.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/statecontainer/MappedObject.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/MappedObject.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/MappedObject.inl deleted file mode 100644 index 1cff7fbcd9f..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/MappedObject.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/statecontainer/MappedObject.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/MassType.h b/Sofa/Component/Compat/src/SofaBaseMechanics/MassType.h deleted file mode 100644 index fae1c591701..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/MassType.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mass/MassType.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/MechanicalObject.h b/Sofa/Component/Compat/src/SofaBaseMechanics/MechanicalObject.h deleted file mode 100644 index 2e81d5330cd..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/MechanicalObject.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/statecontainer/MechanicalObject.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/MechanicalObject.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/MechanicalObject.inl deleted file mode 100644 index 6e2d3921ada..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/MechanicalObject.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/statecontainer/MechanicalObject.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/SubsetMapping.h b/Sofa/Component/Compat/src/SofaBaseMechanics/SubsetMapping.h deleted file mode 100644 index fff92d779b9..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/SubsetMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/SubsetMapping.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/SubsetMapping.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/SubsetMapping.inl deleted file mode 100644 index 7c782efb8ca..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/SubsetMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/SubsetMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/UniformMass.h b/Sofa/Component/Compat/src/SofaBaseMechanics/UniformMass.h deleted file mode 100644 index 994daa4a57d..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/UniformMass.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mass/UniformMass.h") diff --git a/Sofa/Component/Compat/src/SofaBaseMechanics/UniformMass.inl b/Sofa/Component/Compat/src/SofaBaseMechanics/UniformMass.inl deleted file mode 100644 index f3343172437..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseMechanics/UniformMass.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mass/UniformMass.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/CommonAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/CommonAlgorithms.h deleted file mode 100644 index aa2c7ebe378..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/CommonAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/CommonAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetGeometryAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetGeometryAlgorithms.h deleted file mode 100644 index f4d5b2ba219..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetGeometryAlgorithms.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.h") - diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetGeometryAlgorithms.inl b/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetGeometryAlgorithms.inl deleted file mode 100644 index 02e2ea5d1bd..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetGeometryAlgorithms.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyAlgorithms.h deleted file mode 100644 index cd80bfe9ba6..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/EdgeSetTopologyAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyContainer.h b/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyContainer.h deleted file mode 100644 index ef167812811..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyContainer.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/EdgeSetTopologyContainer.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyModifier.h b/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyModifier.h deleted file mode 100644 index f7b81a808bd..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/EdgeSetTopologyModifier.h +++ /dev/null @@ -1,28 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/EdgeSetTopologyModifier.h") - -// some files are included in the original file -#include diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/GridTopology.h b/Sofa/Component/Compat/src/SofaBaseTopology/GridTopology.h deleted file mode 100644 index a8a84776772..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/GridTopology.h +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/grid/GridTopology.h") - -namespace sofa::component::topology -{ - - using GridTopology = sofa::component::topology::container::grid::GridTopology; - using Grid_dimension = sofa::component::topology::container::grid::Grid_dimension; - -} // namespace sofa::component::topology diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetGeometryAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetGeometryAlgorithms.h deleted file mode 100644 index d27287d8ac9..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetGeometryAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/HexahedronSetGeometryAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetGeometryAlgorithms.inl b/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetGeometryAlgorithms.inl deleted file mode 100644 index fdf344ed799..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetGeometryAlgorithms.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/HexahedronSetGeometryAlgorithms.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyAlgorithms.h deleted file mode 100644 index 1c6e2cd9368..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/HexahedronSetTopologyAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyContainer.h b/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyContainer.h deleted file mode 100644 index 0cf7bcbdb6c..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyContainer.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/HexahedronSetTopologyContainer.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyModifier.h b/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyModifier.h deleted file mode 100644 index 7674834e314..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/HexahedronSetTopologyModifier.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/HexahedronSetTopologyModifier.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/MeshTopology.h b/Sofa/Component/Compat/src/SofaBaseTopology/MeshTopology.h deleted file mode 100644 index bdc64dedfc5..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/MeshTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/constant/MeshTopology.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/NumericalIntegrationDescriptor.h b/Sofa/Component/Compat/src/SofaBaseTopology/NumericalIntegrationDescriptor.h deleted file mode 100644 index 1dc1b2067f8..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/NumericalIntegrationDescriptor.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/NumericalIntegrationDescriptor.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/NumericalIntegrationDescriptor.inl b/Sofa/Component/Compat/src/SofaBaseTopology/NumericalIntegrationDescriptor.inl deleted file mode 100644 index c6c9a0b9dfb..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/NumericalIntegrationDescriptor.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/NumericalIntegrationDescriptor.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/PointSetGeometryAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/PointSetGeometryAlgorithms.h deleted file mode 100644 index 9631c2e5e09..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/PointSetGeometryAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/PointSetGeometryAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/PointSetGeometryAlgorithms.inl b/Sofa/Component/Compat/src/SofaBaseTopology/PointSetGeometryAlgorithms.inl deleted file mode 100644 index 86c63758b2f..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/PointSetGeometryAlgorithms.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/PointSetGeometryAlgorithms.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyAlgorithms.h deleted file mode 100644 index c09aa55ddac..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/PointSetTopologyAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyContainer.h b/Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyContainer.h deleted file mode 100644 index 42e17095f10..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyContainer.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/PointSetTopologyContainer.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyModifier.h b/Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyModifier.h deleted file mode 100644 index b5e48781934..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/PointSetTopologyModifier.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/PointSetTopologyModifier.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetGeometryAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetGeometryAlgorithms.h deleted file mode 100644 index aeb874835ca..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetGeometryAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/QuadSetGeometryAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetGeometryAlgorithms.inl b/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetGeometryAlgorithms.inl deleted file mode 100644 index 5de89ab4803..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetGeometryAlgorithms.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/QuadSetGeometryAlgorithms.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyAlgorithms.h deleted file mode 100644 index 2c8d2bc45d1..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/QuadSetTopologyAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyContainer.h b/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyContainer.h deleted file mode 100644 index 5a77d8963dd..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyContainer.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/QuadSetTopologyContainer.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyModifier.h b/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyModifier.h deleted file mode 100644 index 2d7a5bfd2d1..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/QuadSetTopologyModifier.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/QuadSetTopologyModifier.h") - diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/RegularGridTopology.h b/Sofa/Component/Compat/src/SofaBaseTopology/RegularGridTopology.h deleted file mode 100644 index f58c8dd0549..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/RegularGridTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/grid/RegularGridTopology.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/SparseGridTopology.h b/Sofa/Component/Compat/src/SofaBaseTopology/SparseGridTopology.h deleted file mode 100644 index f2ab400e5a9..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/SparseGridTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/grid/SparseGridTopology.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetGeometryAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetGeometryAlgorithms.h deleted file mode 100644 index 0083ef30886..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetGeometryAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/TetrahedronSetGeometryAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetGeometryAlgorithms.inl b/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetGeometryAlgorithms.inl deleted file mode 100644 index 1f340d5b048..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetGeometryAlgorithms.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/TetrahedronSetGeometryAlgorithms.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyAlgorithms.h deleted file mode 100644 index c76194398c3..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/TetrahedronSetTopologyAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyContainer.h b/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyContainer.h deleted file mode 100644 index bf6f25755a5..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyContainer.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/TetrahedronSetTopologyContainer.h") - diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyModifier.h b/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyModifier.h deleted file mode 100644 index 902bda4e8a7..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/TetrahedronSetTopologyModifier.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/TetrahedronSetTopologyModifier.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetGeometryAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetGeometryAlgorithms.h deleted file mode 100644 index 1b0624808c7..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetGeometryAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/TriangleSetGeometryAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetGeometryAlgorithms.inl b/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetGeometryAlgorithms.inl deleted file mode 100644 index 754a2d7ea8c..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetGeometryAlgorithms.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/TriangleSetGeometryAlgorithms.inl") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyAlgorithms.h b/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyAlgorithms.h deleted file mode 100644 index 43b2de9f019..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/TriangleSetTopologyAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyContainer.h b/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyContainer.h deleted file mode 100644 index ad59d70f023..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyContainer.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/TriangleSetTopologyContainer.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyModifier.h b/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyModifier.h deleted file mode 100644 index a4c0aaf2518..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/TriangleSetTopologyModifier.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/TriangleSetTopologyModifier.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/fwd.h b/Sofa/Component/Compat/src/SofaBaseTopology/fwd.h deleted file mode 100644 index 4ed1b4618b7..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/fwd.h +++ /dev/null @@ -1,31 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include -#include -namespace sofa::component::topology::container::dynamic -{ -class TetrahedronSetTopologyContainer; -SOFA_COMPONENT_TOPOLOGY_CONTAINER_DYNAMIC_API std::ostream& operator<< (std::ostream& out, const TetrahedronSetTopologyContainer& t); -SOFA_COMPONENT_TOPOLOGY_CONTAINER_DYNAMIC_API std::istream& operator>>(std::istream& in, TetrahedronSetTopologyContainer& t); -} diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/polygon_cube_intersection/polygon_cube_intersection.h b/Sofa/Component/Compat/src/SofaBaseTopology/polygon_cube_intersection/polygon_cube_intersection.h deleted file mode 100644 index 6e4656bbb6e..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/polygon_cube_intersection/polygon_cube_intersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/grid/polygon_cube_intersection/polygon_cube_intersection.h") diff --git a/Sofa/Component/Compat/src/SofaBaseTopology/polygon_cube_intersection/vec.h b/Sofa/Component/Compat/src/SofaBaseTopology/polygon_cube_intersection/vec.h deleted file mode 100644 index c6c0293d2ca..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseTopology/polygon_cube_intersection/vec.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/grid/polygon_cube_intersection/vec.h") diff --git a/Sofa/Component/Compat/src/SofaBaseUtils/AddResourceRepository.h b/Sofa/Component/Compat/src/SofaBaseUtils/AddResourceRepository.h deleted file mode 100644 index 35d62c9f5f3..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseUtils/AddResourceRepository.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/sceneutility/AddResourceRepository.h") diff --git a/Sofa/Component/Compat/src/SofaBaseUtils/InfoComponent.h b/Sofa/Component/Compat/src/SofaBaseUtils/InfoComponent.h deleted file mode 100644 index dbfb0f859c4..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseUtils/InfoComponent.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/sceneutility/InfoComponent.h") diff --git a/Sofa/Component/Compat/src/SofaBaseUtils/MakeAliasComponent.h b/Sofa/Component/Compat/src/SofaBaseUtils/MakeAliasComponent.h deleted file mode 100644 index 19a9a3278de..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseUtils/MakeAliasComponent.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/sceneutility/MakeAliasComponent.h") diff --git a/Sofa/Component/Compat/src/SofaBaseUtils/MakeDataAliasComponent.h b/Sofa/Component/Compat/src/SofaBaseUtils/MakeDataAliasComponent.h deleted file mode 100644 index b716b3d0dd6..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseUtils/MakeDataAliasComponent.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/sceneutility/MakeDataAliasComponent.h") diff --git a/Sofa/Component/Compat/src/SofaBaseUtils/messageHandlerComponent.h b/Sofa/Component/Compat/src/SofaBaseUtils/messageHandlerComponent.h deleted file mode 100644 index 0ab6ee16ada..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseUtils/messageHandlerComponent.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/sceneutility/MessageHandlerComponent.h") diff --git a/Sofa/Component/Compat/src/SofaBaseVisual/BackgroundSetting.h b/Sofa/Component/Compat/src/SofaBaseVisual/BackgroundSetting.h deleted file mode 100644 index acfe57a2824..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseVisual/BackgroundSetting.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/setting/BackgroundSetting.h") diff --git a/Sofa/Component/Compat/src/SofaBaseVisual/BaseCamera.h b/Sofa/Component/Compat/src/SofaBaseVisual/BaseCamera.h deleted file mode 100644 index d3118c26eea..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseVisual/BaseCamera.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/visual/BaseCamera.h") diff --git a/Sofa/Component/Compat/src/SofaBaseVisual/Camera.h b/Sofa/Component/Compat/src/SofaBaseVisual/Camera.h deleted file mode 100644 index 3e51fbe6f49..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseVisual/Camera.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/visual/Camera.h") diff --git a/Sofa/Component/Compat/src/SofaBaseVisual/InteractiveCamera.h b/Sofa/Component/Compat/src/SofaBaseVisual/InteractiveCamera.h deleted file mode 100644 index 51d7154ea11..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseVisual/InteractiveCamera.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/visual/InteractiveCamera.h") diff --git a/Sofa/Component/Compat/src/SofaBaseVisual/VisualModelImpl.h b/Sofa/Component/Compat/src/SofaBaseVisual/VisualModelImpl.h deleted file mode 100644 index bc739d96529..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseVisual/VisualModelImpl.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/visual/VisualModelImpl.h") diff --git a/Sofa/Component/Compat/src/SofaBaseVisual/VisualStyle.h b/Sofa/Component/Compat/src/SofaBaseVisual/VisualStyle.h deleted file mode 100644 index 445130796be..00000000000 --- a/Sofa/Component/Compat/src/SofaBaseVisual/VisualStyle.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/visual/VisualStyle.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/AffineMovementConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/AffineMovementConstraint.h deleted file mode 100644 index 12b930b26ea..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/AffineMovementConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/AffineMovementConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/AffineMovementConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/AffineMovementConstraint.inl deleted file mode 100644 index 299d0094bb4..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/AffineMovementConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/AffineMovementConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ConicalForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/ConicalForceField.h deleted file mode 100644 index 98e5781463b..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ConicalForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/ConicalForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ConicalForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/ConicalForceField.inl deleted file mode 100644 index 4205a117ea2..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ConicalForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/ConicalForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ConstantForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/ConstantForceField.h deleted file mode 100644 index a7112d11a4b..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ConstantForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/ConstantForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ConstantForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/ConstantForceField.inl deleted file mode 100644 index 2abaf554630..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ConstantForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/ConstantForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/DiagonalVelocityDampingForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/DiagonalVelocityDampingForceField.h deleted file mode 100644 index 69d7d4bf828..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/DiagonalVelocityDampingForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/DiagonalVelocityDampingForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/DiagonalVelocityDampingForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/DiagonalVelocityDampingForceField.inl deleted file mode 100644 index 580707c2c11..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/DiagonalVelocityDampingForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/DiagonalVelocityDampingForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/EdgePressureForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/EdgePressureForceField.h deleted file mode 100644 index 8fee82e29c4..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/EdgePressureForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/EdgePressureForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/EdgePressureForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/EdgePressureForceField.inl deleted file mode 100644 index 30d40c82fbc..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/EdgePressureForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/EdgePressureForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/EllipsoidForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/EllipsoidForceField.h deleted file mode 100644 index cabd19ed4e5..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/EllipsoidForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/EllipsoidForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/EllipsoidForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/EllipsoidForceField.inl deleted file mode 100644 index 4216163b6ec..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/EllipsoidForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/EllipsoidForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedConstraint.h deleted file mode 100644 index 8bbf89a78d0..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/FixedConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedConstraint.inl deleted file mode 100644 index f0f476a53ce..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/FixedConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedPlaneConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedPlaneConstraint.h deleted file mode 100644 index 235577405ff..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedPlaneConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/FixedPlaneConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedPlaneConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedPlaneConstraint.inl deleted file mode 100644 index 10c3e105dd3..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedPlaneConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/FixedPlaneConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedRotationConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedRotationConstraint.h deleted file mode 100644 index be54f5f80cb..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedRotationConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/FixedRotationConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedRotationConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedRotationConstraint.inl deleted file mode 100644 index 68b55ee79be..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedRotationConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/FixedRotationConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedTranslationConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedTranslationConstraint.h deleted file mode 100644 index d53940b87ab..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedTranslationConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/FixedTranslationConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedTranslationConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedTranslationConstraint.inl deleted file mode 100644 index 1b8ede51dcb..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/FixedTranslationConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/FixedTranslationConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/HermiteSplineConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/HermiteSplineConstraint.h deleted file mode 100644 index 7831cbb8f17..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/HermiteSplineConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/HermiteSplineConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/HermiteSplineConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/HermiteSplineConstraint.inl deleted file mode 100644 index c0242a0ba74..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/HermiteSplineConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/HermiteSplineConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearForceField.h deleted file mode 100644 index 6d894061dbd..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/LinearForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearForceField.inl deleted file mode 100644 index e0bc9d72046..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/LinearForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearMovementConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearMovementConstraint.h deleted file mode 100644 index 6c83cc3d6f6..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearMovementConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/LinearMovementConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearMovementConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearMovementConstraint.inl deleted file mode 100644 index 385b6568294..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearMovementConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/LinearMovementConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearVelocityConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearVelocityConstraint.h deleted file mode 100644 index 922c5cf3fe4..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearVelocityConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/LinearVelocityConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearVelocityConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearVelocityConstraint.inl deleted file mode 100644 index fb0d7497e80..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/LinearVelocityConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/LinearVelocityConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatingTorsionPressureForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatingTorsionPressureForceField.h deleted file mode 100644 index 765327a36c9..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatingTorsionPressureForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/OscillatingTorsionPressureForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatingTorsionPressureForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatingTorsionPressureForceField.inl deleted file mode 100644 index b3fd272b1c6..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatingTorsionPressureForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/OscillatingTorsionPressureForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatorConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatorConstraint.h deleted file mode 100644 index 5211aee5494..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatorConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/OscillatorConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatorConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatorConstraint.inl deleted file mode 100644 index c168acd1bc4..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/OscillatorConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/OscillatorConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ParabolicConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/ParabolicConstraint.h deleted file mode 100644 index 0566de58466..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ParabolicConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/ParabolicConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ParabolicConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/ParabolicConstraint.inl deleted file mode 100644 index c315b4a16e6..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ParabolicConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/ParabolicConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialFixedConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialFixedConstraint.h deleted file mode 100644 index 4568de490e8..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialFixedConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/PartialFixedConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialFixedConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialFixedConstraint.inl deleted file mode 100644 index 9ed7f78f8e9..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialFixedConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/PartialFixedConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialLinearMovementConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialLinearMovementConstraint.h deleted file mode 100644 index c6546698ea3..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialLinearMovementConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/PartialLinearMovementConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialLinearMovementConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialLinearMovementConstraint.inl deleted file mode 100644 index b2b99d2698c..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/PartialLinearMovementConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/PartialLinearMovementConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/PatchTestMovementConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/PatchTestMovementConstraint.h deleted file mode 100644 index 2674a5e8a80..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/PatchTestMovementConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/PatchTestMovementConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/PatchTestMovementConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/PatchTestMovementConstraint.inl deleted file mode 100644 index 85991da4010..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/PatchTestMovementConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/PatchTestMovementConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/PlaneForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/PlaneForceField.h deleted file mode 100644 index 481629d295c..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/PlaneForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/PlaneForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/PlaneForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/PlaneForceField.inl deleted file mode 100644 index f5d7841d615..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/PlaneForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/PlaneForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/PositionBasedDynamicsConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/PositionBasedDynamicsConstraint.h deleted file mode 100644 index 1d96ed5f40d..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/PositionBasedDynamicsConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/PositionBasedDynamicsConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/PositionBasedDynamicsConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/PositionBasedDynamicsConstraint.inl deleted file mode 100644 index bcff80423d2..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/PositionBasedDynamicsConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/PositionBasedDynamicsConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectDirectionConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectDirectionConstraint.h deleted file mode 100644 index 647dbdf183e..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectDirectionConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/ProjectDirectionConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectDirectionConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectDirectionConstraint.inl deleted file mode 100644 index 3cef1478a4d..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectDirectionConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/ProjectDirectionConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToLineConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToLineConstraint.h deleted file mode 100644 index 2efd2fd33a3..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToLineConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/ProjectToLineConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToLineConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToLineConstraint.inl deleted file mode 100644 index f52e6417d4a..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToLineConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/ProjectToLineConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPlaneConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPlaneConstraint.h deleted file mode 100644 index f1579dc2975..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPlaneConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/ProjectToPlaneConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPlaneConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPlaneConstraint.inl deleted file mode 100644 index 1cdf5af014c..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPlaneConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/ProjectToPlaneConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPointConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPointConstraint.h deleted file mode 100644 index faff33bb0d5..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPointConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/ProjectToPointConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPointConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPointConstraint.inl deleted file mode 100644 index 3fba4ee4662..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/ProjectToPointConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/ProjectToPointConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/QuadPressureForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/QuadPressureForceField.h deleted file mode 100644 index 2db012066e8..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/QuadPressureForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/QuadPressureForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/QuadPressureForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/QuadPressureForceField.inl deleted file mode 100644 index 1f13e743be3..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/QuadPressureForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/QuadPressureForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/SkeletalMotionConstraint.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/SkeletalMotionConstraint.h deleted file mode 100644 index 48b944ac827..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/SkeletalMotionConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/SkeletalMotionConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/SkeletalMotionConstraint.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/SkeletalMotionConstraint.inl deleted file mode 100644 index 64bed144ab0..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/SkeletalMotionConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/SkeletalMotionConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/SphereForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/SphereForceField.h deleted file mode 100644 index 1b025764ae4..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/SphereForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/SphereForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/SphereForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/SphereForceField.inl deleted file mode 100644 index 79fc571ddff..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/SphereForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/SphereForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/SurfacePressureForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/SurfacePressureForceField.h deleted file mode 100644 index 3233d7f5b04..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/SurfacePressureForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/SurfacePressureForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/SurfacePressureForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/SurfacePressureForceField.inl deleted file mode 100644 index 72d72304bdf..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/SurfacePressureForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/SurfacePressureForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/TaitSurfacePressureForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/TaitSurfacePressureForceField.h deleted file mode 100644 index 3260d17ef23..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/TaitSurfacePressureForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/TaitSurfacePressureForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/TaitSurfacePressureForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/TaitSurfacePressureForceField.inl deleted file mode 100644 index a84c560e1d3..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/TaitSurfacePressureForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/TaitSurfacePressureForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/TorsionForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/TorsionForceField.h deleted file mode 100644 index 30f78b02d21..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/TorsionForceField.h +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/TorsionForceField.h") - -namespace sofa::component::forcefield -{ - template - using TorsionForceField = sofa::component::mechanicalload::TorsionForceField; - -} // namespace sofa::component::forcefield diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/TorsionForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/TorsionForceField.inl deleted file mode 100644 index 2eed645eb32..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/TorsionForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/TorsionForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/TrianglePressureForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/TrianglePressureForceField.h deleted file mode 100644 index eb819a1cb81..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/TrianglePressureForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/TrianglePressureForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/TrianglePressureForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/TrianglePressureForceField.inl deleted file mode 100644 index 43e5612b493..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/TrianglePressureForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/TrianglePressureForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/UniformVelocityDampingForceField.h b/Sofa/Component/Compat/src/SofaBoundaryCondition/UniformVelocityDampingForceField.h deleted file mode 100644 index db0a54f09f4..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/UniformVelocityDampingForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/UniformVelocityDampingForceField.h") diff --git a/Sofa/Component/Compat/src/SofaBoundaryCondition/UniformVelocityDampingForceField.inl b/Sofa/Component/Compat/src/SofaBoundaryCondition/UniformVelocityDampingForceField.inl deleted file mode 100644 index 043740e9db9..00000000000 --- a/Sofa/Component/Compat/src/SofaBoundaryCondition/UniformVelocityDampingForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/UniformVelocityDampingForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaConstraint/BilateralConstraintResolution.h b/Sofa/Component/Compat/src/SofaConstraint/BilateralConstraintResolution.h deleted file mode 100644 index 9e068c0295f..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/BilateralConstraintResolution.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/BilateralConstraintResolution.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/BilateralInteractionConstraint.h b/Sofa/Component/Compat/src/SofaConstraint/BilateralInteractionConstraint.h deleted file mode 100644 index dee006cf153..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/BilateralInteractionConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/BilateralInteractionConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/BilateralInteractionConstraint.inl b/Sofa/Component/Compat/src/SofaConstraint/BilateralInteractionConstraint.inl deleted file mode 100644 index 416705d2efd..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/BilateralInteractionConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/BilateralInteractionConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaConstraint/ConstraintAnimationLoop.h b/Sofa/Component/Compat/src/SofaConstraint/ConstraintAnimationLoop.h deleted file mode 100644 index 7647a5d7bb5..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/ConstraintAnimationLoop.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/animationloop/ConstraintAnimationLoop.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/ConstraintAttachBodyPerformer.h b/Sofa/Component/Compat/src/SofaConstraint/ConstraintAttachBodyPerformer.h deleted file mode 100644 index a3eb0c2f718..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/ConstraintAttachBodyPerformer.h +++ /dev/null @@ -1,49 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_CONSTRAINTATTACHBODYPERFORMER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/ConstraintAttachBodyPerformer.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif - - -#ifdef SOFA_GUI_COMPONENT_CONSTRAINTATTACHBODYPERFORMER - -namespace sofa::component::collision -{ - using ConstraintAttachBodyButtonSetting = sofa::component::userinteraction::ConstraintAttachBodyButtonSetting; - - template - using ConstraintAttachBodyPerformer = sofa::gui::component::performer::ConstraintAttachBodyPerformer; - -} // namespace sofa::component::collision - - -#endif // SOFA_GUI_COMPONENT_CONSTRAINTATTACHBODYPERFORMER diff --git a/Sofa/Component/Compat/src/SofaConstraint/ConstraintAttachBodyPerformer.inl b/Sofa/Component/Compat/src/SofaConstraint/ConstraintAttachBodyPerformer.inl deleted file mode 100644 index 7bfa49c68f1..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/ConstraintAttachBodyPerformer.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/userinteraction/performer/ConstraintAttachBodyPerformer.inl") diff --git a/Sofa/Component/Compat/src/SofaConstraint/ConstraintSolverImpl.h b/Sofa/Component/Compat/src/SofaConstraint/ConstraintSolverImpl.h deleted file mode 100644 index faceaac4390..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/ConstraintSolverImpl.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/solver/ConstraintSolverImpl.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/ConstraintStoreLambdaVisitor.h b/Sofa/Component/Compat/src/SofaConstraint/ConstraintStoreLambdaVisitor.h deleted file mode 100644 index 9a4a89e0774..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/ConstraintStoreLambdaVisitor.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/solver/ConstraintStoreLambdaVisitor.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/ContactIdentifier.h b/Sofa/Component/Compat/src/SofaConstraint/ContactIdentifier.h deleted file mode 100644 index 3f6ab35dedc..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/ContactIdentifier.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/ContactIdentifier.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/FreeMotionAnimationLoop.h b/Sofa/Component/Compat/src/SofaConstraint/FreeMotionAnimationLoop.h deleted file mode 100644 index 4686f6dccca..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/FreeMotionAnimationLoop.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/animationloop/FreeMotionAnimationLoop.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/FreeMotionTask.h b/Sofa/Component/Compat/src/SofaConstraint/FreeMotionTask.h deleted file mode 100644 index 49b4ac82d66..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/FreeMotionTask.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/animationloop/FreeMotionTask.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/FrictionContact.h b/Sofa/Component/Compat/src/SofaConstraint/FrictionContact.h deleted file mode 100644 index 15ee814dc60..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/FrictionContact.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/FrictionContact.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/FrictionContact.inl b/Sofa/Component/Compat/src/SofaConstraint/FrictionContact.inl deleted file mode 100644 index 9e80386ada0..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/FrictionContact.inl +++ /dev/null @@ -1,27 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/FrictionContact.inl") - -#include diff --git a/Sofa/Component/Compat/src/SofaConstraint/GenericConstraintCorrection.h b/Sofa/Component/Compat/src/SofaConstraint/GenericConstraintCorrection.h deleted file mode 100644 index f5e8290e026..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/GenericConstraintCorrection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/correction/ConstraintStoreLambdaVisitor.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/GenericConstraintSolver.h b/Sofa/Component/Compat/src/SofaConstraint/GenericConstraintSolver.h deleted file mode 100644 index aeed457635b..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/GenericConstraintSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/solver/GenericConstraintSolver.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/LCPConstraintSolver.h b/Sofa/Component/Compat/src/SofaConstraint/LCPConstraintSolver.h deleted file mode 100644 index 9a0ddc9029c..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/LCPConstraintSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/solver/LCPConstraintSolver.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/LinearSolverConstraintCorrection.h b/Sofa/Component/Compat/src/SofaConstraint/LinearSolverConstraintCorrection.h deleted file mode 100644 index 4dadbdf3977..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/LinearSolverConstraintCorrection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/correction/LinearSolverConstraintCorrection.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/LinearSolverConstraintCorrection.inl b/Sofa/Component/Compat/src/SofaConstraint/LinearSolverConstraintCorrection.inl deleted file mode 100644 index 138c230237b..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/LinearSolverConstraintCorrection.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/correction/LinearSolverConstraintCorrection.inl") diff --git a/Sofa/Component/Compat/src/SofaConstraint/LocalMinDistance.h b/Sofa/Component/Compat/src/SofaConstraint/LocalMinDistance.h deleted file mode 100644 index 45d9af61055..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/LocalMinDistance.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/LocalMinDistance.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/MappingGeometricStiffnessForceField.h b/Sofa/Component/Compat/src/SofaConstraint/MappingGeometricStiffnessForceField.h deleted file mode 100644 index 20cd630b467..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/MappingGeometricStiffnessForceField.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/mappedmatrix/MappingGeometricStiffnessForceField.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/MappingGeometricStiffnessForceField.inl b/Sofa/Component/Compat/src/SofaConstraint/MappingGeometricStiffnessForceField.inl deleted file mode 100644 index 28e92c6969b..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/MappingGeometricStiffnessForceField.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/mappedmatrix/MappingGeometricStiffnessForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaConstraint/PrecomputedConstraintCorrection.h b/Sofa/Component/Compat/src/SofaConstraint/PrecomputedConstraintCorrection.h deleted file mode 100644 index 37a4678617f..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/PrecomputedConstraintCorrection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/correction/PrecomputedConstraintCorrection.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/PrecomputedConstraintCorrection.inl b/Sofa/Component/Compat/src/SofaConstraint/PrecomputedConstraintCorrection.inl deleted file mode 100644 index 66719e92e69..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/PrecomputedConstraintCorrection.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/correction/PrecomputedConstraintCorrection.inl") diff --git a/Sofa/Component/Compat/src/SofaConstraint/SlidingConstraint.h b/Sofa/Component/Compat/src/SofaConstraint/SlidingConstraint.h deleted file mode 100644 index 312549cea9f..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/SlidingConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/SlidingConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/SlidingConstraint.inl b/Sofa/Component/Compat/src/SofaConstraint/SlidingConstraint.inl deleted file mode 100644 index 2925407e986..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/SlidingConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/SlidingConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaConstraint/StickContactConstraint.h b/Sofa/Component/Compat/src/SofaConstraint/StickContactConstraint.h deleted file mode 100644 index 5f476614344..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/StickContactConstraint.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/StickContactConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/StickContactConstraint.inl b/Sofa/Component/Compat/src/SofaConstraint/StickContactConstraint.inl deleted file mode 100644 index bd9607fae36..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/StickContactConstraint.inl +++ /dev/null @@ -1,27 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/StickContactConstraint.inl") - -#include diff --git a/Sofa/Component/Compat/src/SofaConstraint/StopperConstraint.h b/Sofa/Component/Compat/src/SofaConstraint/StopperConstraint.h deleted file mode 100644 index c539387f612..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/StopperConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/StoppingConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/StopperConstraint.inl b/Sofa/Component/Compat/src/SofaConstraint/StopperConstraint.inl deleted file mode 100644 index aaf54104e9c..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/StopperConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/StoppingConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaConstraint/UncoupledConstraintCorrection.h b/Sofa/Component/Compat/src/SofaConstraint/UncoupledConstraintCorrection.h deleted file mode 100644 index bb544f0fab6..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/UncoupledConstraintCorrection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/correction/UncoupledConstraintCorrection.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/UncoupledConstraintCorrection.inl b/Sofa/Component/Compat/src/SofaConstraint/UncoupledConstraintCorrection.inl deleted file mode 100644 index c3079d575d8..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/UncoupledConstraintCorrection.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/correction/UncoupledConstraintCorrection.inl") diff --git a/Sofa/Component/Compat/src/SofaConstraint/UniformConstraint.h b/Sofa/Component/Compat/src/SofaConstraint/UniformConstraint.h deleted file mode 100644 index 22f4c2269e2..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/UniformConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/UniformConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/UniformConstraint.inl b/Sofa/Component/Compat/src/SofaConstraint/UniformConstraint.inl deleted file mode 100644 index 5c82b5c6090..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/UniformConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/UniformConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaConstraint/UnilateralInteractionConstraint.h b/Sofa/Component/Compat/src/SofaConstraint/UnilateralInteractionConstraint.h deleted file mode 100644 index eb599916feb..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/UnilateralInteractionConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/UnilateralInteractionConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaConstraint/UnilateralInteractionConstraint.inl b/Sofa/Component/Compat/src/SofaConstraint/UnilateralInteractionConstraint.inl deleted file mode 100644 index 7afee4a4cd6..00000000000 --- a/Sofa/Component/Compat/src/SofaConstraint/UnilateralInteractionConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/lagrangian/model/UnilateralInteractionConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaDeformable/AngularSpringForceField.h b/Sofa/Component/Compat/src/SofaDeformable/AngularSpringForceField.h deleted file mode 100644 index 85e0219856d..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/AngularSpringForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/AngularSpringForceField.h") diff --git a/Sofa/Component/Compat/src/SofaDeformable/AngularSpringForceField.inl b/Sofa/Component/Compat/src/SofaDeformable/AngularSpringForceField.inl deleted file mode 100644 index 47d1d98d05d..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/AngularSpringForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/AngularSpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaDeformable/MeshSpringForceField.h b/Sofa/Component/Compat/src/SofaDeformable/MeshSpringForceField.h deleted file mode 100644 index 475db6c54de..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/MeshSpringForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/MeshSpringForceField.h") diff --git a/Sofa/Component/Compat/src/SofaDeformable/MeshSpringForceField.inl b/Sofa/Component/Compat/src/SofaDeformable/MeshSpringForceField.inl deleted file mode 100644 index 1396d8b953b..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/MeshSpringForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/MeshSpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaDeformable/PolynomialRestShapeSpringsForceField.h b/Sofa/Component/Compat/src/SofaDeformable/PolynomialRestShapeSpringsForceField.h deleted file mode 100644 index 90169a394b7..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/PolynomialRestShapeSpringsForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/PolynomialRestShapeSpringsForceField.h") diff --git a/Sofa/Component/Compat/src/SofaDeformable/PolynomialRestShapeSpringsForceField.inl b/Sofa/Component/Compat/src/SofaDeformable/PolynomialRestShapeSpringsForceField.inl deleted file mode 100644 index ffd8081d03e..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/PolynomialRestShapeSpringsForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/PolynomialRestShapeSpringsForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaDeformable/PolynomialSpringsForceField.h b/Sofa/Component/Compat/src/SofaDeformable/PolynomialSpringsForceField.h deleted file mode 100644 index 71b39c6709c..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/PolynomialSpringsForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/PolynomialSpringsForceField.h") diff --git a/Sofa/Component/Compat/src/SofaDeformable/PolynomialSpringsForceField.inl b/Sofa/Component/Compat/src/SofaDeformable/PolynomialSpringsForceField.inl deleted file mode 100644 index f7ed7b4c681..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/PolynomialSpringsForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/PolynomialSpringsForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaDeformable/RestShapeSpringsForceField.h b/Sofa/Component/Compat/src/SofaDeformable/RestShapeSpringsForceField.h deleted file mode 100644 index 40e4842b711..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/RestShapeSpringsForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/RestShapeSpringsForceField.h") diff --git a/Sofa/Component/Compat/src/SofaDeformable/RestShapeSpringsForceField.inl b/Sofa/Component/Compat/src/SofaDeformable/RestShapeSpringsForceField.inl deleted file mode 100644 index c4cfdfcc5a4..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/RestShapeSpringsForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/RestShapeSpringsForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaDeformable/SpringForceField.h b/Sofa/Component/Compat/src/SofaDeformable/SpringForceField.h deleted file mode 100644 index cc299fec271..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/SpringForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/SpringForceField.h") diff --git a/Sofa/Component/Compat/src/SofaDeformable/SpringForceField.inl b/Sofa/Component/Compat/src/SofaDeformable/SpringForceField.inl deleted file mode 100644 index 5eb4c1d1f5d..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/SpringForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/SpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaDeformable/StiffSpringForceField.h b/Sofa/Component/Compat/src/SofaDeformable/StiffSpringForceField.h deleted file mode 100644 index ca9a42503b6..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/StiffSpringForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/StiffSpringForceField.h") diff --git a/Sofa/Component/Compat/src/SofaDeformable/StiffSpringForceField.inl b/Sofa/Component/Compat/src/SofaDeformable/StiffSpringForceField.inl deleted file mode 100644 index 2fdac162d96..00000000000 --- a/Sofa/Component/Compat/src/SofaDeformable/StiffSpringForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/StiffSpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaDenseSolver/SVDLinearSolver.h b/Sofa/Component/Compat/src/SofaDenseSolver/SVDLinearSolver.h deleted file mode 100644 index 0e1c65d8a4f..00000000000 --- a/Sofa/Component/Compat/src/SofaDenseSolver/SVDLinearSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/direct/SVDLinearSolver.h") diff --git a/Sofa/Component/Compat/src/SofaEngine/BoxROI.h b/Sofa/Component/Compat/src/SofaEngine/BoxROI.h deleted file mode 100644 index 31ea26c2f4e..00000000000 --- a/Sofa/Component/Compat/src/SofaEngine/BoxROI.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/BoxROI.h") diff --git a/Sofa/Component/Compat/src/SofaEngine/BoxROI.inl b/Sofa/Component/Compat/src/SofaEngine/BoxROI.inl deleted file mode 100644 index 65bba8df26f..00000000000 --- a/Sofa/Component/Compat/src/SofaEngine/BoxROI.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/BoxROI.inl") diff --git a/Sofa/Component/Compat/src/SofaExplicitOdeSolver/EulerSolver.h b/Sofa/Component/Compat/src/SofaExplicitOdeSolver/EulerSolver.h deleted file mode 100644 index c9dd1e4b680..00000000000 --- a/Sofa/Component/Compat/src/SofaExplicitOdeSolver/EulerSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/odesolver/forward/EulerSolver.h") diff --git a/Sofa/Component/Compat/src/SofaExporter/BlenderExporter.h b/Sofa/Component/Compat/src/SofaExporter/BlenderExporter.h deleted file mode 100644 index 8accf05ff0b..00000000000 --- a/Sofa/Component/Compat/src/SofaExporter/BlenderExporter.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/BlenderExporter.h") diff --git a/Sofa/Component/Compat/src/SofaExporter/BlenderExporter.inl b/Sofa/Component/Compat/src/SofaExporter/BlenderExporter.inl deleted file mode 100644 index 3a66f85fd48..00000000000 --- a/Sofa/Component/Compat/src/SofaExporter/BlenderExporter.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/BlenderExporter.inl") diff --git a/Sofa/Component/Compat/src/SofaExporter/MeshExporter.h b/Sofa/Component/Compat/src/SofaExporter/MeshExporter.h deleted file mode 100644 index 4bb506d8410..00000000000 --- a/Sofa/Component/Compat/src/SofaExporter/MeshExporter.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/MeshExporter.h") diff --git a/Sofa/Component/Compat/src/SofaExporter/STLExporter.h b/Sofa/Component/Compat/src/SofaExporter/STLExporter.h deleted file mode 100644 index 6735dee44b7..00000000000 --- a/Sofa/Component/Compat/src/SofaExporter/STLExporter.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/STLExporter.h") diff --git a/Sofa/Component/Compat/src/SofaExporter/VTKExporter.h b/Sofa/Component/Compat/src/SofaExporter/VTKExporter.h deleted file mode 100644 index 9d520a84ea2..00000000000 --- a/Sofa/Component/Compat/src/SofaExporter/VTKExporter.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/VTKExporter.h") diff --git a/Sofa/Component/Compat/src/SofaExporter/VisualModelOBJExporter.h b/Sofa/Component/Compat/src/SofaExporter/VisualModelOBJExporter.h deleted file mode 100644 index 514d1fcb531..00000000000 --- a/Sofa/Component/Compat/src/SofaExporter/VisualModelOBJExporter.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/VisualModelOBJExporter.h") diff --git a/Sofa/Component/Compat/src/SofaExporter/WriteState.h b/Sofa/Component/Compat/src/SofaExporter/WriteState.h deleted file mode 100644 index 99f8ed85e7b..00000000000 --- a/Sofa/Component/Compat/src/SofaExporter/WriteState.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/WriteState.h") diff --git a/Sofa/Component/Compat/src/SofaExporter/WriteState.inl b/Sofa/Component/Compat/src/SofaExporter/WriteState.inl deleted file mode 100644 index f4719b81e2b..00000000000 --- a/Sofa/Component/Compat/src/SofaExporter/WriteState.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/WriteState.inl") diff --git a/Sofa/Component/Compat/src/SofaExporter/WriteTopology.h b/Sofa/Component/Compat/src/SofaExporter/WriteTopology.h deleted file mode 100644 index 4b44c67eb6d..00000000000 --- a/Sofa/Component/Compat/src/SofaExporter/WriteTopology.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/WriteTopology.h") diff --git a/Sofa/Component/Compat/src/SofaExporter/WriteTopology.inl b/Sofa/Component/Compat/src/SofaExporter/WriteTopology.inl deleted file mode 100644 index 1eb0af3ee1e..00000000000 --- a/Sofa/Component/Compat/src/SofaExporter/WriteTopology.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/WriteTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MechanicalMatrixMapper.h b/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MechanicalMatrixMapper.h deleted file mode 100644 index 085193a27f5..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MechanicalMatrixMapper.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/mappedmatrix/MechanicalMatrixMapper.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MechanicalMatrixMapper.inl b/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MechanicalMatrixMapper.inl deleted file mode 100644 index 7fb075bdbce..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MechanicalMatrixMapper.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/mappedmatrix/MechanicalMatrixMapper.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MultiStepAnimationLoop.h b/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MultiStepAnimationLoop.h deleted file mode 100644 index bca098f1798..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MultiStepAnimationLoop.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/animationloop/MultiStepAnimationLoop.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MultiTagAnimationLoop.h b/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MultiTagAnimationLoop.h deleted file mode 100644 index cbd27d27004..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralAnimationLoop/MultiTagAnimationLoop.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/animationloop/MultiTagAnimationLoop.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/FastTriangularBendingSprings.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/FastTriangularBendingSprings.h deleted file mode 100644 index b421b64cf14..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/FastTriangularBendingSprings.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/FastTriangularBendingSprings.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/FastTriangularBendingSprings.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/FastTriangularBendingSprings.inl deleted file mode 100644 index a60c49f23ca..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/FastTriangularBendingSprings.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/FastTriangularBendingSprings.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/FrameSpringForceField.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/FrameSpringForceField.h deleted file mode 100644 index 12981b434e1..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/FrameSpringForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/FrameSpringForceField.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/FrameSpringForceField.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/FrameSpringForceField.inl deleted file mode 100644 index bb24ac49967..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/FrameSpringForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/FrameSpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadBendingSprings.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadBendingSprings.h deleted file mode 100644 index a808df80f6d..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadBendingSprings.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/QuadBendingSprings.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadBendingSprings.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadBendingSprings.inl deleted file mode 100644 index ad6e3808c70..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadBendingSprings.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/QuadBendingSprings.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadularBendingSprings.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadularBendingSprings.h deleted file mode 100644 index ae3b0d8a243..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadularBendingSprings.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/QuadularBendingSprings.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadularBendingSprings.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadularBendingSprings.inl deleted file mode 100644 index 93d16e44711..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/QuadularBendingSprings.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/QuadularBendingSprings.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/RegularGridSpringForceField.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/RegularGridSpringForceField.h deleted file mode 100644 index ae55ca64ae7..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/RegularGridSpringForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/RegularGridSpringForceField.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/RegularGridSpringForceField.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/RegularGridSpringForceField.inl deleted file mode 100644 index 8e5416f7880..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/RegularGridSpringForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/RegularGridSpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangleBendingSprings.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangleBendingSprings.h deleted file mode 100644 index 46166232839..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangleBendingSprings.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/TriangleBendingSprings.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangleBendingSprings.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangleBendingSprings.inl deleted file mode 100644 index 46166232839..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangleBendingSprings.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/TriangleBendingSprings.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBendingSprings.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBendingSprings.h deleted file mode 100644 index fcd61988e79..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBendingSprings.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/TriangularBendingSprings.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBendingSprings.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBendingSprings.inl deleted file mode 100644 index f5b431a38a4..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBendingSprings.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/TriangularBendingSprings.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBiquadraticSpringsForceField.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBiquadraticSpringsForceField.h deleted file mode 100644 index 36b9db47271..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBiquadraticSpringsForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/TriangularBiquadraticSpringsForceField.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBiquadraticSpringsForceField.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBiquadraticSpringsForceField.inl deleted file mode 100644 index ff67085f5cc..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularBiquadraticSpringsForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/TriangularBiquadraticSpringsForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularQuadraticSpringsForceField.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularQuadraticSpringsForceField.h deleted file mode 100644 index a74243de4fb..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularQuadraticSpringsForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/TriangularQuadraticSpringsForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularQuadraticSpringsForceField.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularQuadraticSpringsForceField.inl deleted file mode 100644 index a74243de4fb..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularQuadraticSpringsForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/TriangularQuadraticSpringsForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularTensorMassForceField.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularTensorMassForceField.h deleted file mode 100644 index 447cd23cc21..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularTensorMassForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/tensormass/TriangularTensorMassForceField.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularTensorMassForceField.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularTensorMassForceField.inl deleted file mode 100644 index ce2c74791fc..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/TriangularTensorMassForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/tensormass/TriangularTensorMassForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/VectorSpringForceField.h b/Sofa/Component/Compat/src/SofaGeneralDeformable/VectorSpringForceField.h deleted file mode 100644 index 37ffdd0ec38..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/VectorSpringForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/VectorSpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralDeformable/VectorSpringForceField.inl b/Sofa/Component/Compat/src/SofaGeneralDeformable/VectorSpringForceField.inl deleted file mode 100644 index 37ffdd0ec38..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralDeformable/VectorSpringForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/VectorSpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/AverageCoord.h b/Sofa/Component/Compat/src/SofaGeneralEngine/AverageCoord.h deleted file mode 100644 index 761545037e6..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/AverageCoord.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/AverageCoord.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/AverageCoord.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/AverageCoord.inl deleted file mode 100644 index 10553df10ac..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/AverageCoord.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/AverageCoord.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ClusteringEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/ClusteringEngine.h deleted file mode 100644 index 0902304b60e..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ClusteringEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/ClusteringEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ClusteringEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/ClusteringEngine.inl deleted file mode 100644 index 2cd394809f3..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ClusteringEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/ClusteringEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ComplementaryROI.h b/Sofa/Component/Compat/src/SofaGeneralEngine/ComplementaryROI.h deleted file mode 100644 index 20013821206..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ComplementaryROI.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/ComplementaryROI.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ComplementaryROI.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/ComplementaryROI.inl deleted file mode 100644 index b5aa9bff250..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ComplementaryROI.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/ComplementaryROI.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/DifferenceEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/DifferenceEngine.h deleted file mode 100644 index 3aad373d6a4..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/DifferenceEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/DifferenceEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/DifferenceEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/DifferenceEngine.inl deleted file mode 100644 index 65618891fb9..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/DifferenceEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/DifferenceEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/DilateEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/DilateEngine.h deleted file mode 100644 index 7fe4fb57bec..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/DilateEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/DilateEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/DilateEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/DilateEngine.inl deleted file mode 100644 index 06524f86812..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/DilateEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/DilateEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeEdgesAndGenerateQuads.h b/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeEdgesAndGenerateQuads.h deleted file mode 100644 index b0e56319a70..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeEdgesAndGenerateQuads.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/ExtrudeEdgesAndGenerateQuads.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeEdgesAndGenerateQuads.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeEdgesAndGenerateQuads.inl deleted file mode 100644 index 70ca42c7cf6..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeEdgesAndGenerateQuads.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/ExtrudeEdgesAndGenerateQuads.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeQuadsAndGenerateHexas.h b/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeQuadsAndGenerateHexas.h deleted file mode 100644 index fb043c2a0b3..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeQuadsAndGenerateHexas.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/ExtrudeQuadsAndGenerateHexas.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeQuadsAndGenerateHexas.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeQuadsAndGenerateHexas.inl deleted file mode 100644 index 0a5d431fc93..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeQuadsAndGenerateHexas.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/ExtrudeQuadsAndGenerateHexas.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeSurface.h b/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeSurface.h deleted file mode 100644 index 1813adf320c..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeSurface.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/ExtrudeSurface.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeSurface.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeSurface.inl deleted file mode 100644 index 900e1c708ed..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ExtrudeSurface.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/ExtrudeSurface.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateCylinder.h b/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateCylinder.h deleted file mode 100644 index dcde183aef1..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateCylinder.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/GenerateCylinder.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateCylinder.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateCylinder.inl deleted file mode 100644 index a3c24639cd0..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateCylinder.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/GenerateCylinder.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateGrid.h b/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateGrid.h deleted file mode 100644 index bde361a18a8..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateGrid.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/GenerateGrid.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateGrid.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateGrid.inl deleted file mode 100644 index 76ee11fa822..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateGrid.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/GenerateGrid.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateRigidMass.h b/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateRigidMass.h deleted file mode 100644 index b5b138c33db..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateRigidMass.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/GenerateRigidMass.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateRigidMass.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateRigidMass.inl deleted file mode 100644 index c527ff62658..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateRigidMass.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/GenerateRigidMass.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateSphere.h b/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateSphere.h deleted file mode 100644 index 6199b664328..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateSphere.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/GenerateSphere.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateSphere.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateSphere.inl deleted file mode 100644 index ea5812499fd..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/GenerateSphere.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/GenerateSphere.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/GroupFilterYoungModulus.h b/Sofa/Component/Compat/src/SofaGeneralEngine/GroupFilterYoungModulus.h deleted file mode 100644 index 0321cec3262..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/GroupFilterYoungModulus.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/GroupFilterYoungModulus.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/GroupFilterYoungModulus.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/GroupFilterYoungModulus.inl deleted file mode 100644 index 4595e208492..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/GroupFilterYoungModulus.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/GroupFilterYoungModulus.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/HausdorffDistance.h b/Sofa/Component/Compat/src/SofaGeneralEngine/HausdorffDistance.h deleted file mode 100644 index 0aba86c462a..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/HausdorffDistance.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/HausdorffDistance.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/HausdorffDistance.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/HausdorffDistance.inl deleted file mode 100644 index 2ef8f543771..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/HausdorffDistance.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/HausdorffDistance.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/IndexValueMapper.h b/Sofa/Component/Compat/src/SofaGeneralEngine/IndexValueMapper.h deleted file mode 100644 index 026e3d0ddd5..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/IndexValueMapper.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/IndexValueMapper.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/IndexValueMapper.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/IndexValueMapper.inl deleted file mode 100644 index 4c7c96b2cd1..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/IndexValueMapper.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/IndexValueMapper.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/Indices2ValuesMapper.h b/Sofa/Component/Compat/src/SofaGeneralEngine/Indices2ValuesMapper.h deleted file mode 100644 index e62b445adac..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/Indices2ValuesMapper.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/Index2ValuesMapper.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/Indices2ValuesMapper.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/Indices2ValuesMapper.inl deleted file mode 100644 index e7a30fe5b21..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/Indices2ValuesMapper.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/Index2ValuesMapper.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/IndicesFromValues.h b/Sofa/Component/Compat/src/SofaGeneralEngine/IndicesFromValues.h deleted file mode 100644 index 2c480f671dc..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/IndicesFromValues.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/IndicesFromValues.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/IndicesFromValues.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/IndicesFromValues.inl deleted file mode 100644 index 10970d8e833..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/IndicesFromValues.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/IndicesFromValues.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/JoinPoints.h b/Sofa/Component/Compat/src/SofaGeneralEngine/JoinPoints.h deleted file mode 100644 index 0c21a2a95ce..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/JoinPoints.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/JoinPoints.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/JoinPoints.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/JoinPoints.inl deleted file mode 100644 index da4f0476555..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/JoinPoints.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/JoinPoints.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MapIndices.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MapIndices.h deleted file mode 100644 index 956b7b3327b..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MapIndices.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/MapIndices.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MapIndices.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MapIndices.inl deleted file mode 100644 index 4d052dc8204..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MapIndices.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/MapIndices.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MathOp.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MathOp.h deleted file mode 100644 index b0d06fab866..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MathOp.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/MathOp.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MathOp.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MathOp.inl deleted file mode 100644 index 27450c2f648..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MathOp.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/MathOp.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeMeshes.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MergeMeshes.h deleted file mode 100644 index 3e43238dc91..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeMeshes.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MergeMeshes.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeMeshes.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MergeMeshes.inl deleted file mode 100644 index fdb31e887c3..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeMeshes.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MergeMeshes.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MergePoints.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MergePoints.h deleted file mode 100644 index ac396fbf939..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MergePoints.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MergePoints.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MergePoints.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MergePoints.inl deleted file mode 100644 index 626ff580463..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MergePoints.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MergePoints.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeROIs.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MergeROIs.h deleted file mode 100644 index 66f0be0a756..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeROIs.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/MergeROIs.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeSets.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MergeSets.h deleted file mode 100644 index c62ac9a4b93..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeSets.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MergeSets.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeSets.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MergeSets.inl deleted file mode 100644 index 3c6757e5d86..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeSets.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MergeSets.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeVectors.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MergeVectors.h deleted file mode 100644 index fcaeb887383..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeVectors.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MergeVectors.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeVectors.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MergeVectors.inl deleted file mode 100644 index 0c3c88c063f..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MergeVectors.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MergeVectors.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshBarycentricMapperEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshBarycentricMapperEngine.h deleted file mode 100644 index 0f2d81134be..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshBarycentricMapperEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MeshBarycentricMapperEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshBarycentricMapperEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshBarycentricMapperEngine.inl deleted file mode 100644 index 6e6b8b0fc1d..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshBarycentricMapperEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MeshBarycentricMapperEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshBoundaryROI.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshBoundaryROI.h deleted file mode 100644 index 02eb344b715..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshBoundaryROI.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/MeshBoundaryROI.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshClosingEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshClosingEngine.h deleted file mode 100644 index c3211c5f50d..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshClosingEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MeshClosingEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshClosingEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshClosingEngine.inl deleted file mode 100644 index 3a9512d8d03..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshClosingEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MeshClosingEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshROI.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshROI.h deleted file mode 100644 index 31803e4ed27..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshROI.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/MeshROI.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshROI.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshROI.inl deleted file mode 100644 index 91b83ce99cd..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshROI.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/MeshROI.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSampler.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSampler.h deleted file mode 100644 index f995ac0bcf3..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSampler.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/MeshSampler.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSampler.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSampler.inl deleted file mode 100644 index 79a70b3d966..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSampler.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/MeshSampler.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSplittingEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSplittingEngine.h deleted file mode 100644 index 887495896a8..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSplittingEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/MeshSplittingEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSplittingEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSplittingEngine.inl deleted file mode 100644 index 3a7dd686162..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSplittingEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/MeshSplittingEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSubsetEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSubsetEngine.h deleted file mode 100644 index b4bdf7831cb..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSubsetEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/MeshSubsetEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSubsetEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSubsetEngine.inl deleted file mode 100644 index e9995d66af0..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/MeshSubsetEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/MeshSubsetEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/NearestPointROI.h b/Sofa/Component/Compat/src/SofaGeneralEngine/NearestPointROI.h deleted file mode 100644 index 13485890d5f..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/NearestPointROI.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/NearestPointROI.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/NearestPointROI.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/NearestPointROI.inl deleted file mode 100644 index 9d7faf527b8..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/NearestPointROI.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/NearestPointROI.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/NormEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/NormEngine.h deleted file mode 100644 index 402ad9621fe..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/NormEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/NormEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/NormEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/NormEngine.inl deleted file mode 100644 index 5b93641b28b..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/NormEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/NormEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/NormalsFromPoints.h b/Sofa/Component/Compat/src/SofaGeneralEngine/NormalsFromPoints.h deleted file mode 100644 index b6c34f5f735..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/NormalsFromPoints.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/NormalsFromPoints.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/NormalsFromPoints.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/NormalsFromPoints.inl deleted file mode 100644 index fbf3ecca43e..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/NormalsFromPoints.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/NormalsFromPoints.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/PairBoxRoi.h b/Sofa/Component/Compat/src/SofaGeneralEngine/PairBoxRoi.h deleted file mode 100644 index 31204b3f469..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/PairBoxRoi.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/PairBoxRoi.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/PairBoxRoi.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/PairBoxRoi.inl deleted file mode 100644 index 57b6c814997..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/PairBoxRoi.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/PairBoxRoi.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/PlaneROI.h b/Sofa/Component/Compat/src/SofaGeneralEngine/PlaneROI.h deleted file mode 100644 index 3eb1e737000..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/PlaneROI.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/PlaneROI.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/PlaneROI.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/PlaneROI.inl deleted file mode 100644 index 74f46616ac7..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/PlaneROI.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/PlaneROI.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/PointsFromIndices.h b/Sofa/Component/Compat/src/SofaGeneralEngine/PointsFromIndices.h deleted file mode 100644 index 3a664cf2aee..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/PointsFromIndices.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/PointsFromIndices.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/PointsFromIndices.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/PointsFromIndices.inl deleted file mode 100644 index 4bf9afc51fc..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/PointsFromIndices.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/PointsFromIndices.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ProximityROI.h b/Sofa/Component/Compat/src/SofaGeneralEngine/ProximityROI.h deleted file mode 100644 index 2ebbfc7e39f..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ProximityROI.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/ProximityROI.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ProximityROI.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/ProximityROI.inl deleted file mode 100644 index 8d3d35f3408..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ProximityROI.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/ProximityROI.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/QuatToRigidEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/QuatToRigidEngine.h deleted file mode 100644 index 5b774b84042..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/QuatToRigidEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/QuatToRigidEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/QuatToRigidEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/QuatToRigidEngine.inl deleted file mode 100644 index 81d665857ae..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/QuatToRigidEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/QuatToRigidEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ROIValueMapper.h b/Sofa/Component/Compat/src/SofaGeneralEngine/ROIValueMapper.h deleted file mode 100644 index 7cb202ce6a4..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ROIValueMapper.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/ROIValueMapper.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/RandomPointDistributionInSurface.h b/Sofa/Component/Compat/src/SofaGeneralEngine/RandomPointDistributionInSurface.h deleted file mode 100644 index 860db08b82d..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/RandomPointDistributionInSurface.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/RandomPointDistributionInSurface.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/RandomPointDistributionInSurface.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/RandomPointDistributionInSurface.inl deleted file mode 100644 index af87865ce24..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/RandomPointDistributionInSurface.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/RandomPointDistributionInSurface.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/RigidToQuatEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/RigidToQuatEngine.h deleted file mode 100644 index 281e81816cf..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/RigidToQuatEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/RigidToQuatEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/RigidToQuatEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/RigidToQuatEngine.inl deleted file mode 100644 index e1806114f7c..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/RigidToQuatEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/RigidToQuatEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/SelectConnectedLabelsROI.h b/Sofa/Component/Compat/src/SofaGeneralEngine/SelectConnectedLabelsROI.h deleted file mode 100644 index 3a7db51ad49..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/SelectConnectedLabelsROI.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/SelectConnectedLabelsROI.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/SelectLabelROI.h b/Sofa/Component/Compat/src/SofaGeneralEngine/SelectLabelROI.h deleted file mode 100644 index f8c36f39af9..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/SelectLabelROI.h +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/SelectLabelROI.h") - -namespace sofa::component::engine -{ - template - using SelectLabelROI = sofa::component::engine::select::SelectLabelROI<_T>; - -} // namespace sofa::component::engine diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ShapeMatching.h b/Sofa/Component/Compat/src/SofaGeneralEngine/ShapeMatching.h deleted file mode 100644 index 0432d3a6852..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ShapeMatching.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/ShapeMatching.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ShapeMatching.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/ShapeMatching.inl deleted file mode 100644 index 7fe4a220eed..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ShapeMatching.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/ShapeMatching.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/SmoothMeshEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/SmoothMeshEngine.h deleted file mode 100644 index fc6e3882b4d..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/SmoothMeshEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/SmoothMeshEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/SmoothMeshEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/SmoothMeshEngine.inl deleted file mode 100644 index cf9ba9f9638..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/SmoothMeshEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/SmoothMeshEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/SphereROI.h b/Sofa/Component/Compat/src/SofaGeneralEngine/SphereROI.h deleted file mode 100644 index a482291c6ef..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/SphereROI.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/SphereROI.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/SphereROI.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/SphereROI.inl deleted file mode 100644 index 854e1566896..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/SphereROI.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/SphereROI.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/Spiral.h b/Sofa/Component/Compat/src/SofaGeneralEngine/Spiral.h deleted file mode 100644 index 7b0d650194b..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/Spiral.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/Spiral.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/Spiral.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/Spiral.inl deleted file mode 100644 index a8fe88ded4e..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/Spiral.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/Spiral.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/SubsetTopology.h b/Sofa/Component/Compat/src/SofaGeneralEngine/SubsetTopology.h deleted file mode 100644 index ed99e808976..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/SubsetTopology.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/SubsetTopology.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/SubsetTopology.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/SubsetTopology.inl deleted file mode 100644 index 21544ea168b..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/SubsetTopology.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/SubsetTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/SumEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/SumEngine.h deleted file mode 100644 index 482f2c11444..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/SumEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/SumEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/SumEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/SumEngine.inl deleted file mode 100644 index 1221ca820dd..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/SumEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/SumEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/TextureInterpolation.h b/Sofa/Component/Compat/src/SofaGeneralEngine/TextureInterpolation.h deleted file mode 100644 index eb6ab70c8e7..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/TextureInterpolation.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/engine/TextureInterpolation.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/TextureInterpolation.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/TextureInterpolation.inl deleted file mode 100644 index 0bbebc7626e..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/TextureInterpolation.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/engine/TextureInterpolation.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/TransformEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/TransformEngine.h deleted file mode 100644 index 22a9a788caa..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/TransformEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/TransformEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/TransformEngine.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/TransformEngine.inl deleted file mode 100644 index ff81c8fc527..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/TransformEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/TransformEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/TransformMatrixEngine.h b/Sofa/Component/Compat/src/SofaGeneralEngine/TransformMatrixEngine.h deleted file mode 100644 index 469e87ff778..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/TransformMatrixEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/TransformMatrixEngine.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/TransformPosition.h b/Sofa/Component/Compat/src/SofaGeneralEngine/TransformPosition.h deleted file mode 100644 index 9ab6967dad1..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/TransformPosition.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/TransformPosition.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/TransformPosition.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/TransformPosition.inl deleted file mode 100644 index 6a54799dc9f..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/TransformPosition.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/TransformPosition.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromIndices.h b/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromIndices.h deleted file mode 100644 index fbb4e1469e1..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromIndices.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/ValuesFromIndices.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromIndices.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromIndices.inl deleted file mode 100644 index 4a663d643d7..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromIndices.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/ValuesFromIndices.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromPositions.h b/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromPositions.h deleted file mode 100644 index 2426d28f7c5..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromPositions.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/ValuesFromPositions.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromPositions.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromPositions.inl deleted file mode 100644 index 91bd6e35dff..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/ValuesFromPositions.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/select/ValuesFromPositions.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/Vertex2Frame.h b/Sofa/Component/Compat/src/SofaGeneralEngine/Vertex2Frame.h deleted file mode 100644 index 0bc99e4eb0a..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/Vertex2Frame.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/Vertex2Frame.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralEngine/Vertex2Frame.inl b/Sofa/Component/Compat/src/SofaGeneralEngine/Vertex2Frame.inl deleted file mode 100644 index c109cef56c6..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralEngine/Vertex2Frame.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/Vertex2Frame.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/CentralDifferenceSolver.h b/Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/CentralDifferenceSolver.h deleted file mode 100644 index 045e7a5531c..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/CentralDifferenceSolver.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/odesolver/forward/CentralDifferenceSolver.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/RungeKutta2Solver.h b/Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/RungeKutta2Solver.h deleted file mode 100644 index 147d8afb6e3..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/RungeKutta2Solver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/odesolver/forward/RungeKutta2Solver.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/RungeKutta4Solver.h b/Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/RungeKutta4Solver.h deleted file mode 100644 index 9b5f34f938d..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralExplicitOdeSolver/RungeKutta4Solver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/odesolver/forward/RungeKutta4Solver.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralImplicitOdeSolver/VariationalSymplecticSolver.h b/Sofa/Component/Compat/src/SofaGeneralImplicitOdeSolver/VariationalSymplecticSolver.h deleted file mode 100644 index 898d4e0c328..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralImplicitOdeSolver/VariationalSymplecticSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/odesolver/backward/VariationalSymplecticSolver.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/BTDLinearSolver.h b/Sofa/Component/Compat/src/SofaGeneralLinearSolver/BTDLinearSolver.h deleted file mode 100644 index efab788d114..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/BTDLinearSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/direct/BTDLinearSolver.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/BTDLinearSolver.inl b/Sofa/Component/Compat/src/SofaGeneralLinearSolver/BTDLinearSolver.inl deleted file mode 100644 index b096778053e..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/BTDLinearSolver.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/direct/BTDLinearSolver.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/CholeskySolver.h b/Sofa/Component/Compat/src/SofaGeneralLinearSolver/CholeskySolver.h deleted file mode 100644 index 64bc6a40b0a..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/CholeskySolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/direct/CholeskySolver.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/CholeskySolver.inl b/Sofa/Component/Compat/src/SofaGeneralLinearSolver/CholeskySolver.inl deleted file mode 100644 index 539ead90f1b..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/CholeskySolver.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/direct/CholeskySolver.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/MinResLinearSolver.h b/Sofa/Component/Compat/src/SofaGeneralLinearSolver/MinResLinearSolver.h deleted file mode 100644 index 868434084f0..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/MinResLinearSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/iterative/MinResLinearSolver.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/MinResLinearSolver.inl b/Sofa/Component/Compat/src/SofaGeneralLinearSolver/MinResLinearSolver.inl deleted file mode 100644 index c94a1b9b44a..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLinearSolver/MinResLinearSolver.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/iterative/MinResLinearSolver.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/GIDMeshLoader.h b/Sofa/Component/Compat/src/SofaGeneralLoader/GIDMeshLoader.h deleted file mode 100644 index 4c6ca035693..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/GIDMeshLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/GIDMeshLoader.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/GridMeshCreator.h b/Sofa/Component/Compat/src/SofaGeneralLoader/GridMeshCreator.h deleted file mode 100644 index 0f7ae24f2ca..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/GridMeshCreator.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/GridMeshCreator.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/InputEventReader.h b/Sofa/Component/Compat/src/SofaGeneralLoader/InputEventReader.h deleted file mode 100644 index aff563afb74..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/InputEventReader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/InputEventReader.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/MeshGmshLoader.h b/Sofa/Component/Compat/src/SofaGeneralLoader/MeshGmshLoader.h deleted file mode 100644 index 8ed94612712..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/MeshGmshLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/MeshGmshLoader.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/MeshOffLoader.h b/Sofa/Component/Compat/src/SofaGeneralLoader/MeshOffLoader.h deleted file mode 100644 index 17c82bc8240..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/MeshOffLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/MeshOffLoader.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/MeshSTLLoader.h b/Sofa/Component/Compat/src/SofaGeneralLoader/MeshSTLLoader.h deleted file mode 100644 index 6d58e1c7967..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/MeshSTLLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/MeshSTLLoader.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/MeshTrianLoader.h b/Sofa/Component/Compat/src/SofaGeneralLoader/MeshTrianLoader.h deleted file mode 100644 index b832c924ab2..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/MeshTrianLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/MeshTrianLoader.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/MeshXspLoader.h b/Sofa/Component/Compat/src/SofaGeneralLoader/MeshXspLoader.h deleted file mode 100644 index 3633c91d873..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/MeshXspLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/MeshXspLoader.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/OffSequenceLoader.h b/Sofa/Component/Compat/src/SofaGeneralLoader/OffSequenceLoader.h deleted file mode 100644 index 19c77757904..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/OffSequenceLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/OffSequenceLoader.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/ReadState.h b/Sofa/Component/Compat/src/SofaGeneralLoader/ReadState.h deleted file mode 100644 index 32c5ec0934a..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/ReadState.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/ReadState.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/ReadState.inl b/Sofa/Component/Compat/src/SofaGeneralLoader/ReadState.inl deleted file mode 100644 index 2a9c388759a..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/ReadState.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/ReadState.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/ReadTopology.h b/Sofa/Component/Compat/src/SofaGeneralLoader/ReadTopology.h deleted file mode 100644 index 4d06cb0b074..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/ReadTopology.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/ReadTopology.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/ReadTopology.inl b/Sofa/Component/Compat/src/SofaGeneralLoader/ReadTopology.inl deleted file mode 100644 index ef5ef7e5236..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/ReadTopology.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/ReadTopology.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/SphereLoader.h b/Sofa/Component/Compat/src/SofaGeneralLoader/SphereLoader.h deleted file mode 100644 index c468fcdd31e..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/SphereLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/SphereLoader.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/StringMeshCreator.h b/Sofa/Component/Compat/src/SofaGeneralLoader/StringMeshCreator.h deleted file mode 100644 index b380e537996..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/StringMeshCreator.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/StringMeshCreator.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralLoader/VoxelGridLoader.h b/Sofa/Component/Compat/src/SofaGeneralLoader/VoxelGridLoader.h deleted file mode 100644 index 0c43ce2c69a..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralLoader/VoxelGridLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/VoxelGridLoader.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/DSAPBox.h b/Sofa/Component/Compat/src/SofaGeneralMeshCollision/DSAPBox.h deleted file mode 100644 index f45466a6f7d..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/DSAPBox.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/DSAPBox.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/DirectSAP.h b/Sofa/Component/Compat/src/SofaGeneralMeshCollision/DirectSAP.h deleted file mode 100644 index f5a17b3a6cb..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/DirectSAP.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/DirectSAP.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/DirectSAPNarrowPhase.h b/Sofa/Component/Compat/src/SofaGeneralMeshCollision/DirectSAPNarrowPhase.h deleted file mode 100644 index a3dc0e2e076..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/DirectSAPNarrowPhase.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/DirectSAPNarrowPhase.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/IncrSAP.h b/Sofa/Component/Compat/src/SofaGeneralMeshCollision/IncrSAP.h deleted file mode 100644 index 90260c4af0f..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/IncrSAP.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/IncrSAP.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshDiscreteIntersection.h b/Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshDiscreteIntersection.h deleted file mode 100644 index 0113383c840..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshDiscreteIntersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/MeshDiscreteIntersection.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshDiscreteIntersection.inl b/Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshDiscreteIntersection.inl deleted file mode 100644 index 99c20c48d1e..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshDiscreteIntersection.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/MeshDiscreteIntersection.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshMinProximityIntersection.h b/Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshMinProximityIntersection.h deleted file mode 100644 index b04d4ba8c4e..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/MeshMinProximityIntersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/MeshMinProximityIntersection.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/RayTraceNarrowPhase.h b/Sofa/Component/Compat/src/SofaGeneralMeshCollision/RayTraceNarrowPhase.h deleted file mode 100644 index ecbe272eac6..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/RayTraceNarrowPhase.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/RayTraceNarrowPhase.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/TriangleOctree.h b/Sofa/Component/Compat/src/SofaGeneralMeshCollision/TriangleOctree.h deleted file mode 100644 index fafb6d76c4d..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/TriangleOctree.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/TriangleOctree.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/TriangleOctreeModel.h b/Sofa/Component/Compat/src/SofaGeneralMeshCollision/TriangleOctreeModel.h deleted file mode 100644 index e64e3d91772..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralMeshCollision/TriangleOctreeModel.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/TriangleOctreeModel.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/AttachConstraint.h b/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/AttachConstraint.h deleted file mode 100644 index 77a7941894b..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/AttachConstraint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/AttachConstraint.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/AttachConstraint.inl b/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/AttachConstraint.inl deleted file mode 100644 index d712b74a835..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/AttachConstraint.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/constraint/projective/AttachConstraint.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/InteractionEllipsoidForceField.h b/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/InteractionEllipsoidForceField.h deleted file mode 100644 index 86f0516300f..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/InteractionEllipsoidForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/InteractionEllipsoidForceField.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/InteractionEllipsoidForceField.inl b/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/InteractionEllipsoidForceField.inl deleted file mode 100644 index 089af67a3a7..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/InteractionEllipsoidForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mechanicalload/InteractionEllipsoidForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/RepulsiveSpringForceField.h b/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/RepulsiveSpringForceField.h deleted file mode 100644 index 78ac6a8e740..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/RepulsiveSpringForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/RepulsiveSpringForceField.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/RepulsiveSpringForceField.inl b/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/RepulsiveSpringForceField.inl deleted file mode 100644 index 513ab7977ea..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralObjectInteraction/RepulsiveSpringForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/RepulsiveSpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralRigid/LineSetSkinningMapping.h b/Sofa/Component/Compat/src/SofaGeneralRigid/LineSetSkinningMapping.h deleted file mode 100644 index 1797a32018c..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralRigid/LineSetSkinningMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/LineSetSkinningMapping.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralRigid/LineSetSkinningMapping.inl b/Sofa/Component/Compat/src/SofaGeneralRigid/LineSetSkinningMapping.inl deleted file mode 100644 index f534d13e0f0..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralRigid/LineSetSkinningMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/LineSetSkinningMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralRigid/SkinningMapping.h b/Sofa/Component/Compat/src/SofaGeneralRigid/SkinningMapping.h deleted file mode 100644 index afc847282e2..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralRigid/SkinningMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/SkinningMapping.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralRigid/SkinningMapping.inl b/Sofa/Component/Compat/src/SofaGeneralRigid/SkinningMapping.inl deleted file mode 100644 index a9db3ea1863..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralRigid/SkinningMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/SkinningMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/BeamFEMForceField.h b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/BeamFEMForceField.h deleted file mode 100644 index 46c3bc3c0a3..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/BeamFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/BeamFEMForceField.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/BeamFEMForceField.inl b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/BeamFEMForceField.inl deleted file mode 100644 index f32b10cadba..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/BeamFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/BeamFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceField.h b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceField.h deleted file mode 100644 index 61e9e898d7b..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/HexahedralFEMForceField.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceField.inl b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceField.inl deleted file mode 100644 index 48528f31530..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/HexahedralFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceFieldAndMass.h b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceFieldAndMass.h deleted file mode 100644 index 014cfcffebf..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceFieldAndMass.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/HexahedralFEMForceFieldAndMass.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceFieldAndMass.inl b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceFieldAndMass.inl deleted file mode 100644 index e5045c6c51e..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedralFEMForceFieldAndMass.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/HexahedralFEMForceFieldAndMass.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedronFEMForceFieldAndMass.h b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedronFEMForceFieldAndMass.h deleted file mode 100644 index f706ff06bb6..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedronFEMForceFieldAndMass.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/HexahedronFEMForceFieldAndMass.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedronFEMForceFieldAndMass.inl b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedronFEMForceFieldAndMass.inl deleted file mode 100644 index a26cca0c12a..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/HexahedronFEMForceFieldAndMass.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/HexahedronFEMForceFieldAndMass.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TetrahedralCorotationalFEMForceField.h b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TetrahedralCorotationalFEMForceField.h deleted file mode 100644 index 6f56cac75eb..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TetrahedralCorotationalFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TetrahedralCorotationalFEMForceField.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TetrahedralCorotationalFEMForceField.inl b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TetrahedralCorotationalFEMForceField.inl deleted file mode 100644 index 3fe1498fc7f..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TetrahedralCorotationalFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TetrahedralCorotationalFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TriangularFEMForceFieldOptim.h b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TriangularFEMForceFieldOptim.h deleted file mode 100644 index 1ccf1de0e5b..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TriangularFEMForceFieldOptim.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TriangularFEMForceFieldOptim.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TriangularFEMForceFieldOptim.inl b/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TriangularFEMForceFieldOptim.inl deleted file mode 100644 index f38c15a805f..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralSimpleFem/TriangularFEMForceFieldOptim.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TriangularFEMForceFieldOptim.inl") diff --git a/Sofa/Component/Compat/src/SofaGeneralTopology/CubeTopology.h b/Sofa/Component/Compat/src/SofaGeneralTopology/CubeTopology.h deleted file mode 100644 index 46d6a2bd773..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralTopology/CubeTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/constant/CubeTopology.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralTopology/CylinderGridTopology.h b/Sofa/Component/Compat/src/SofaGeneralTopology/CylinderGridTopology.h deleted file mode 100644 index 3fb3283b8a4..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralTopology/CylinderGridTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/grid/CylinderGridTopology.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralTopology/SphereGridTopology.h b/Sofa/Component/Compat/src/SofaGeneralTopology/SphereGridTopology.h deleted file mode 100644 index c3a7be3e423..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralTopology/SphereGridTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/grid/SphereGridTopology.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralTopology/SphereQuadTopology.h b/Sofa/Component/Compat/src/SofaGeneralTopology/SphereQuadTopology.h deleted file mode 100644 index 91ebd997e49..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralTopology/SphereQuadTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/constant/SphereQuadTopology.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralVisual/RecordedCamera.h b/Sofa/Component/Compat/src/SofaGeneralVisual/RecordedCamera.h deleted file mode 100644 index bc68c2bdcf3..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralVisual/RecordedCamera.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/visual/RecordedCamera.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralVisual/Visual3DText.h b/Sofa/Component/Compat/src/SofaGeneralVisual/Visual3DText.h deleted file mode 100644 index 0fb2dc39541..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralVisual/Visual3DText.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/visual/Visual3DText.h") diff --git a/Sofa/Component/Compat/src/SofaGeneralVisual/VisualTransform.h b/Sofa/Component/Compat/src/SofaGeneralVisual/VisualTransform.h deleted file mode 100644 index 9822688d283..00000000000 --- a/Sofa/Component/Compat/src/SofaGeneralVisual/VisualTransform.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/visual/VisualTransform.h") diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/APIVersion.h b/Sofa/Component/Compat/src/SofaGraphComponent/APIVersion.h deleted file mode 100644 index a1b1a0e7b7b..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/APIVersion.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/sceneutility/APIVersion.h") diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/AddFrameButtonSetting.h b/Sofa/Component/Compat/src/SofaGraphComponent/AddFrameButtonSetting.h deleted file mode 100644 index 4ad03269379..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/AddFrameButtonSetting.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_ADDFRAMEBUTTONSETTING - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/AddFrameButtonSetting.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/AddRecordedCameraButtonSetting.h b/Sofa/Component/Compat/src/SofaGraphComponent/AddRecordedCameraButtonSetting.h deleted file mode 100644 index 1b31865e977..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/AddRecordedCameraButtonSetting.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_ADDRECORDEDCAMERABUTTONSETTING - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/AddRecordedCameraButtonSetting.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/AttachBodyButtonSetting.h b/Sofa/Component/Compat/src/SofaGraphComponent/AttachBodyButtonSetting.h deleted file mode 100644 index 7f2f4aa1609..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/AttachBodyButtonSetting.h +++ /dev/null @@ -1,35 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_ATTACHBODYBUTTONSETTING - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/AttachBodyButtonSetting.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif - diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/FixPickedParticleButtonSetting.h b/Sofa/Component/Compat/src/SofaGraphComponent/FixPickedParticleButtonSetting.h deleted file mode 100644 index 6a8a04d65cc..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/FixPickedParticleButtonSetting.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_FIXPICKEDPARTICLEBUTTONSETTING - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/FixPickedParticleButtonSetting.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/MouseButtonSetting.h b/Sofa/Component/Compat/src/SofaGraphComponent/MouseButtonSetting.h deleted file mode 100644 index 2551acdf27d..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/MouseButtonSetting.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/setting/MouseButtonSetting.h") diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/PauseAnimation.h b/Sofa/Component/Compat/src/SofaGraphComponent/PauseAnimation.h deleted file mode 100644 index cf9d572e9a2..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/PauseAnimation.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/sceneutility/PauseAnimation.h") diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/PauseAnimationOnEvent.h b/Sofa/Component/Compat/src/SofaGraphComponent/PauseAnimationOnEvent.h deleted file mode 100644 index b9d284bf0a1..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/PauseAnimationOnEvent.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/sceneutility/PauseAnimationOnEvent.h") diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/SofaDefaultPathSetting.h b/Sofa/Component/Compat/src/SofaGraphComponent/SofaDefaultPathSetting.h deleted file mode 100644 index a6eb1a4a726..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/SofaDefaultPathSetting.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/setting/SofaDefaultPathSetting.h") diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/StatsSetting.h b/Sofa/Component/Compat/src/SofaGraphComponent/StatsSetting.h deleted file mode 100644 index b6b0e91cfdc..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/StatsSetting.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/setting/StatsSetting.h") diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/ViewerSetting.h b/Sofa/Component/Compat/src/SofaGraphComponent/ViewerSetting.h deleted file mode 100644 index 5c0090309d3..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/ViewerSetting.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/setting/ViewerSetting.h") diff --git a/Sofa/Component/Compat/src/SofaGraphComponent/init.h b/Sofa/Component/Compat/src/SofaGraphComponent/init.h deleted file mode 100644 index 342aae8cc39..00000000000 --- a/Sofa/Component/Compat/src/SofaGraphComponent/init.h +++ /dev/null @@ -1,29 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -namespace sofa::component::userinteraction::configurationsetting -{ - SOFA_COMPONENT_USERINTERACTION_CONFIGURATIONSETTING_API void init(); -} // namespace sofa::component::userinteraction::configurationsetting diff --git a/Sofa/Component/Compat/src/SofaHaptics/ForceFeedback.h b/Sofa/Component/Compat/src/SofaHaptics/ForceFeedback.h deleted file mode 100644 index 1840c181d4b..00000000000 --- a/Sofa/Component/Compat/src/SofaHaptics/ForceFeedback.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/haptics/ForceFeedback.h") diff --git a/Sofa/Component/Compat/src/SofaHaptics/LCPForceFeedback.h b/Sofa/Component/Compat/src/SofaHaptics/LCPForceFeedback.h deleted file mode 100644 index 310cc22739c..00000000000 --- a/Sofa/Component/Compat/src/SofaHaptics/LCPForceFeedback.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/haptics/LCPForceFeedback.h") diff --git a/Sofa/Component/Compat/src/SofaHaptics/LCPForceFeedback.inl b/Sofa/Component/Compat/src/SofaHaptics/LCPForceFeedback.inl deleted file mode 100644 index 062b19029c6..00000000000 --- a/Sofa/Component/Compat/src/SofaHaptics/LCPForceFeedback.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/haptics/LCPForceFeedback.inl") diff --git a/Sofa/Component/Compat/src/SofaHaptics/MechanicalStateForceFeedback.h b/Sofa/Component/Compat/src/SofaHaptics/MechanicalStateForceFeedback.h deleted file mode 100644 index 27d9d7bbb87..00000000000 --- a/Sofa/Component/Compat/src/SofaHaptics/MechanicalStateForceFeedback.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/haptics/MechanicalStateForceFeedback.h") diff --git a/Sofa/Component/Compat/src/SofaHaptics/NullForceFeedback.h b/Sofa/Component/Compat/src/SofaHaptics/NullForceFeedback.h deleted file mode 100644 index 0920e996b4f..00000000000 --- a/Sofa/Component/Compat/src/SofaHaptics/NullForceFeedback.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/haptics/NullForceFeedback.h") diff --git a/Sofa/Component/Compat/src/SofaHaptics/NullForceFeedbackT.h b/Sofa/Component/Compat/src/SofaHaptics/NullForceFeedbackT.h deleted file mode 100644 index 45f511ce383..00000000000 --- a/Sofa/Component/Compat/src/SofaHaptics/NullForceFeedbackT.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/haptics/NullForceFeedbackT.h") diff --git a/Sofa/Component/Compat/src/SofaImplicitOdeSolver/EulerImplicitSolver.h b/Sofa/Component/Compat/src/SofaImplicitOdeSolver/EulerImplicitSolver.h deleted file mode 100644 index f89fa90b9c5..00000000000 --- a/Sofa/Component/Compat/src/SofaImplicitOdeSolver/EulerImplicitSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/odesolver/backward/EulerImplicitSolver.h") diff --git a/Sofa/Component/Compat/src/SofaImplicitOdeSolver/StaticSolver.h b/Sofa/Component/Compat/src/SofaImplicitOdeSolver/StaticSolver.h deleted file mode 100644 index bbc4c671ede..00000000000 --- a/Sofa/Component/Compat/src/SofaImplicitOdeSolver/StaticSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/odesolver/backward/StaticSolver.h") diff --git a/Sofa/Component/Compat/src/SofaLoader/BaseVTKReader.h b/Sofa/Component/Compat/src/SofaLoader/BaseVTKReader.h deleted file mode 100644 index 0051ff13792..00000000000 --- a/Sofa/Component/Compat/src/SofaLoader/BaseVTKReader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/BaseVTKReader.h") diff --git a/Sofa/Component/Compat/src/SofaLoader/BaseVTKReader.inl b/Sofa/Component/Compat/src/SofaLoader/BaseVTKReader.inl deleted file mode 100644 index 2a1c7613e6a..00000000000 --- a/Sofa/Component/Compat/src/SofaLoader/BaseVTKReader.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/BaseVTKReader.inl") diff --git a/Sofa/Component/Compat/src/SofaLoader/MeshOBJLoader.h b/Sofa/Component/Compat/src/SofaLoader/MeshOBJLoader.h deleted file mode 100644 index 089e720eb54..00000000000 --- a/Sofa/Component/Compat/src/SofaLoader/MeshOBJLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/MeshOBJLoader.h") diff --git a/Sofa/Component/Compat/src/SofaLoader/MeshVTKLoader.h b/Sofa/Component/Compat/src/SofaLoader/MeshVTKLoader.h deleted file mode 100644 index e177546a0bc..00000000000 --- a/Sofa/Component/Compat/src/SofaLoader/MeshVTKLoader.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/io/mesh/MeshVTKLoader.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricContactMapper.h b/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricContactMapper.h deleted file mode 100644 index c3db8c98282..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricContactMapper.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/mapper/BarycentricContactMapper.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricContactMapper.inl b/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricContactMapper.inl deleted file mode 100644 index 02f18ac47ac..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricContactMapper.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/mapper/BarycentricContactMapper.inl") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricPenalityContact.h b/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricPenalityContact.h deleted file mode 100644 index 3255a8e919d..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricPenalityContact.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/BarycentricPenalityContact.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricPenalityContact.inl b/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricPenalityContact.inl deleted file mode 100644 index 83694acda98..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/BarycentricPenalityContact.inl +++ /dev/null @@ -1,28 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/BarycentricPenalityContact.inl") - -#include diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/CollisionPM.h b/Sofa/Component/Compat/src/SofaMeshCollision/CollisionPM.h deleted file mode 100644 index a253917f788..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/CollisionPM.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/CollisionPM.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/EndPoint.h b/Sofa/Component/Compat/src/SofaMeshCollision/EndPoint.h deleted file mode 100644 index 3cb90e5f6ac..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/EndPoint.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/EndPoint.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/IdentityContactMapper.h b/Sofa/Component/Compat/src/SofaMeshCollision/IdentityContactMapper.h deleted file mode 100644 index a63d21bd5ff..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/IdentityContactMapper.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/mapper/IdentityContactMapper.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/IdentityContactMapper.inl b/Sofa/Component/Compat/src/SofaMeshCollision/IdentityContactMapper.inl deleted file mode 100644 index 911df871be1..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/IdentityContactMapper.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/mapper/IdentityContactMapper.inl") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/LineModel.h b/Sofa/Component/Compat/src/SofaMeshCollision/LineModel.h deleted file mode 100644 index fe71d794d4c..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/LineModel.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/LineModel.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/LineModel.inl b/Sofa/Component/Compat/src/SofaMeshCollision/LineModel.inl deleted file mode 100644 index 5d6230bf30e..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/LineModel.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/LineModel.inl") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/MeshNewProximityIntersection.h b/Sofa/Component/Compat/src/SofaMeshCollision/MeshNewProximityIntersection.h deleted file mode 100644 index 4fd5a017939..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/MeshNewProximityIntersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/MeshNewProximityIntersection.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/MeshNewProximityIntersection.inl b/Sofa/Component/Compat/src/SofaMeshCollision/MeshNewProximityIntersection.inl deleted file mode 100644 index 9ecd064ab96..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/MeshNewProximityIntersection.inl +++ /dev/null @@ -1,28 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/MeshNewProximityIntersection.inl") - -#include diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/PointModel.h b/Sofa/Component/Compat/src/SofaMeshCollision/PointModel.h deleted file mode 100644 index c32bf65c157..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/PointModel.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/PointModel.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/PointModel.inl b/Sofa/Component/Compat/src/SofaMeshCollision/PointModel.inl deleted file mode 100644 index a79687ff55b..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/PointModel.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/PointModel.inl") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/RigidContactMapper.h b/Sofa/Component/Compat/src/SofaMeshCollision/RigidContactMapper.h deleted file mode 100644 index dad24adbd2f..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/RigidContactMapper.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/mapper/RigidContactMapper.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/RigidContactMapper.inl b/Sofa/Component/Compat/src/SofaMeshCollision/RigidContactMapper.inl deleted file mode 100644 index 1adacbc8145..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/RigidContactMapper.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/mapper/RigidContactMapper.inl") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/SubsetContactMapper.h b/Sofa/Component/Compat/src/SofaMeshCollision/SubsetContactMapper.h deleted file mode 100644 index e180bd04d60..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/SubsetContactMapper.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/mapper/SubsetContactMapper.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/SubsetContactMapper.inl b/Sofa/Component/Compat/src/SofaMeshCollision/SubsetContactMapper.inl deleted file mode 100644 index a2de8a4f0ba..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/SubsetContactMapper.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/mapper/SubsetContactMapper.inl") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/TriangleModel.h b/Sofa/Component/Compat/src/SofaMeshCollision/TriangleModel.h deleted file mode 100644 index d547421d25c..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/TriangleModel.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/TriangleModel.h") diff --git a/Sofa/Component/Compat/src/SofaMeshCollision/TriangleModel.inl b/Sofa/Component/Compat/src/SofaMeshCollision/TriangleModel.inl deleted file mode 100644 index c5f857feec7..00000000000 --- a/Sofa/Component/Compat/src/SofaMeshCollision/TriangleModel.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/TriangleModel.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscCollision/BarycentricStickContact.h b/Sofa/Component/Compat/src/SofaMiscCollision/BarycentricStickContact.h deleted file mode 100644 index 463a9606f5e..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscCollision/BarycentricStickContact.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/BarycentricStickContact.h") diff --git a/Sofa/Component/Compat/src/SofaMiscCollision/BarycentricStickContact.inl b/Sofa/Component/Compat/src/SofaMiscCollision/BarycentricStickContact.inl deleted file mode 100644 index ba5103bef64..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscCollision/BarycentricStickContact.inl +++ /dev/null @@ -1,28 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/BarycentricStickContact.inl") - -// some code include the inl only -#include diff --git a/Sofa/Component/Compat/src/SofaMiscCollision/RuleBasedContactManager.h b/Sofa/Component/Compat/src/SofaMiscCollision/RuleBasedContactManager.h deleted file mode 100644 index 54e6bfc87af..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscCollision/RuleBasedContactManager.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/RuleBasedContactManager.h") diff --git a/Sofa/Component/Compat/src/SofaMiscCollision/TetrahedronDiscreteIntersection.h b/Sofa/Component/Compat/src/SofaMiscCollision/TetrahedronDiscreteIntersection.h deleted file mode 100644 index 646d33692c9..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscCollision/TetrahedronDiscreteIntersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/TetrahedronDiscreteIntersection.h") diff --git a/Sofa/Component/Compat/src/SofaMiscCollision/TetrahedronModel.h b/Sofa/Component/Compat/src/SofaMiscCollision/TetrahedronModel.h deleted file mode 100644 index 5155e63965c..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscCollision/TetrahedronModel.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/TetrahedronModel.h") diff --git a/Sofa/Component/Compat/src/SofaMiscCollision/TriangleModelInRegularGrid.h b/Sofa/Component/Compat/src/SofaMiscCollision/TriangleModelInRegularGrid.h deleted file mode 100644 index 6621eea8728..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscCollision/TriangleModelInRegularGrid.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/TriangleModelInRegularGrid.h") diff --git a/Sofa/Component/Compat/src/SofaMiscEngine/DisplacementMatrixEngine.h b/Sofa/Component/Compat/src/SofaMiscEngine/DisplacementMatrixEngine.h deleted file mode 100644 index bfba3099e19..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscEngine/DisplacementMatrixEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/DisplacementMatrixEngine.h") diff --git a/Sofa/Component/Compat/src/SofaMiscEngine/DisplacementMatrixEngine.inl b/Sofa/Component/Compat/src/SofaMiscEngine/DisplacementMatrixEngine.inl deleted file mode 100644 index 64b47395697..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscEngine/DisplacementMatrixEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/DisplacementMatrixEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscEngine/Distances.h b/Sofa/Component/Compat/src/SofaMiscEngine/Distances.h deleted file mode 100644 index cbdd84ba301..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscEngine/Distances.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/Distances.h") diff --git a/Sofa/Component/Compat/src/SofaMiscEngine/Distances.inl b/Sofa/Component/Compat/src/SofaMiscEngine/Distances.inl deleted file mode 100644 index 645476d8cb2..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscEngine/Distances.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/analyze/Distances.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscEngine/ProjectiveTransformEngine.h b/Sofa/Component/Compat/src/SofaMiscEngine/ProjectiveTransformEngine.h deleted file mode 100644 index f577e10f90e..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscEngine/ProjectiveTransformEngine.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/ProjectiveTransformEngine.h") diff --git a/Sofa/Component/Compat/src/SofaMiscEngine/ProjectiveTransformEngine.inl b/Sofa/Component/Compat/src/SofaMiscEngine/ProjectiveTransformEngine.inl deleted file mode 100644 index cd7675a3928..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscEngine/ProjectiveTransformEngine.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/transform/ProjectiveTransformEngine.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscExtra/MeshTetraStuffing.h b/Sofa/Component/Compat/src/SofaMiscExtra/MeshTetraStuffing.h deleted file mode 100644 index ab846a9df5b..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscExtra/MeshTetraStuffing.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/engine/generate/MeshTetraStuffing.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/BaseMaterial.h b/Sofa/Component/Compat/src/SofaMiscFem/BaseMaterial.h deleted file mode 100644 index 88e0e55d145..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/BaseMaterial.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/material/BaseMaterial.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/BoyceAndArruda.h b/Sofa/Component/Compat/src/SofaMiscFem/BoyceAndArruda.h deleted file mode 100644 index cf384310198..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/BoyceAndArruda.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/material/BoyceAndArruda.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/Costa.h b/Sofa/Component/Compat/src/SofaMiscFem/Costa.h deleted file mode 100644 index 7d2884db6bc..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/Costa.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/material/Costa.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/FastTetrahedralCorotationalForceField.h b/Sofa/Component/Compat/src/SofaMiscFem/FastTetrahedralCorotationalForceField.h deleted file mode 100644 index 4b6f1b9c867..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/FastTetrahedralCorotationalForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/FastTetrahedralCorotationalForceField.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/FastTetrahedralCorotationalForceField.inl b/Sofa/Component/Compat/src/SofaMiscFem/FastTetrahedralCorotationalForceField.inl deleted file mode 100644 index 4bba4f6c1fc..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/FastTetrahedralCorotationalForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/FastTetrahedralCorotationalForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/HyperelasticMaterial.h b/Sofa/Component/Compat/src/SofaMiscFem/HyperelasticMaterial.h deleted file mode 100644 index 892c7741121..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/HyperelasticMaterial.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/material/HyperelasticMaterial.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/MooneyRivlin.h b/Sofa/Component/Compat/src/SofaMiscFem/MooneyRivlin.h deleted file mode 100644 index 4f6f8ebe587..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/MooneyRivlin.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/material/MooneyRivlin.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/NeoHookean.h b/Sofa/Component/Compat/src/SofaMiscFem/NeoHookean.h deleted file mode 100644 index dd7ce447742..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/NeoHookean.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/material/NeoHookean.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/Ogden.h b/Sofa/Component/Compat/src/SofaMiscFem/Ogden.h deleted file mode 100644 index 39469395720..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/Ogden.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/material/Ogden.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/PlasticMaterial.h b/Sofa/Component/Compat/src/SofaMiscFem/PlasticMaterial.h deleted file mode 100644 index 164613418a1..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/PlasticMaterial.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/material/PlasticMaterial.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/QuadBendingFEMForceField.h b/Sofa/Component/Compat/src/SofaMiscFem/QuadBendingFEMForceField.h deleted file mode 100644 index cd27a6fe049..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/QuadBendingFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/QuadBendingFEMForceField.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/QuadBendingFEMForceField.inl b/Sofa/Component/Compat/src/SofaMiscFem/QuadBendingFEMForceField.inl deleted file mode 100644 index a9d1ab3f49d..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/QuadBendingFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/QuadBendingFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/STVenantKirchhoff.h b/Sofa/Component/Compat/src/SofaMiscFem/STVenantKirchhoff.h deleted file mode 100644 index 9acfc32d05e..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/STVenantKirchhoff.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/material/STVenantKirchhoff.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/StandardTetrahedralFEMForceField.h b/Sofa/Component/Compat/src/SofaMiscFem/StandardTetrahedralFEMForceField.h deleted file mode 100644 index 17c23aafff1..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/StandardTetrahedralFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/StandardTetrahedralFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/StandardTetrahedralFEMForceField.inl b/Sofa/Component/Compat/src/SofaMiscFem/StandardTetrahedralFEMForceField.inl deleted file mode 100644 index 17c23aafff1..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/StandardTetrahedralFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/StandardTetrahedralFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/TetrahedralTensorMassForceField.h b/Sofa/Component/Compat/src/SofaMiscFem/TetrahedralTensorMassForceField.h deleted file mode 100644 index 8a148caabcc..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/TetrahedralTensorMassForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/tensormass/TetrahedralTensorMassForceField.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/TetrahedralTensorMassForceField.inl b/Sofa/Component/Compat/src/SofaMiscFem/TetrahedralTensorMassForceField.inl deleted file mode 100644 index 71f623d978c..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/TetrahedralTensorMassForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/tensormass/TetrahedralTensorMassForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/TetrahedronHyperelasticityFEMForceField.h b/Sofa/Component/Compat/src/SofaMiscFem/TetrahedronHyperelasticityFEMForceField.h deleted file mode 100644 index 19537ad23b0..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/TetrahedronHyperelasticityFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/TetrahedronHyperelasticityFEMForceField.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/TetrahedronHyperelasticityFEMForceField.inl b/Sofa/Component/Compat/src/SofaMiscFem/TetrahedronHyperelasticityFEMForceField.inl deleted file mode 100644 index e8a58cfd869..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/TetrahedronHyperelasticityFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/TetrahedronHyperelasticityFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/TriangleFEMForceField.h b/Sofa/Component/Compat/src/SofaMiscFem/TriangleFEMForceField.h deleted file mode 100644 index b212d0e447d..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/TriangleFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TriangleFEMForceField.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/TriangleFEMForceField.inl b/Sofa/Component/Compat/src/SofaMiscFem/TriangleFEMForceField.inl deleted file mode 100644 index ad90817362b..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/TriangleFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TriangleFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/TriangularAnisotropicFEMForceField.h b/Sofa/Component/Compat/src/SofaMiscFem/TriangularAnisotropicFEMForceField.h deleted file mode 100644 index 9945557d5cd..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/TriangularAnisotropicFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TriangularAnisotropicFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/TriangularAnisotropicFEMForceField.inl b/Sofa/Component/Compat/src/SofaMiscFem/TriangularAnisotropicFEMForceField.inl deleted file mode 100644 index 9945557d5cd..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/TriangularAnisotropicFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TriangularAnisotropicFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/TriangularFEMForceField.h b/Sofa/Component/Compat/src/SofaMiscFem/TriangularFEMForceField.h deleted file mode 100644 index db5c09c4753..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/TriangularFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TriangularFEMForceField.h") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/TriangularFEMForceField.inl b/Sofa/Component/Compat/src/SofaMiscFem/TriangularFEMForceField.inl deleted file mode 100644 index 5283bbf1b7f..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/TriangularFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TriangularFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscFem/VerondaWestman.h b/Sofa/Component/Compat/src/SofaMiscFem/VerondaWestman.h deleted file mode 100644 index aa9e7635b55..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscFem/VerondaWestman.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/hyperelastic/material/VerondaWestman.h") diff --git a/Sofa/Component/Compat/src/SofaMiscForceField/GearSpringForceField.h b/Sofa/Component/Compat/src/SofaMiscForceField/GearSpringForceField.h deleted file mode 100644 index 58b4e356665..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscForceField/GearSpringForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/GearSpringForceField.h") diff --git a/Sofa/Component/Compat/src/SofaMiscForceField/GearSpringForceField.inl b/Sofa/Component/Compat/src/SofaMiscForceField/GearSpringForceField.inl deleted file mode 100644 index edf306d523f..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscForceField/GearSpringForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/GearSpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscForceField/MeshMatrixMass.h b/Sofa/Component/Compat/src/SofaMiscForceField/MeshMatrixMass.h deleted file mode 100644 index c243ecd29e2..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscForceField/MeshMatrixMass.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mass/MeshMatrixMass.h") diff --git a/Sofa/Component/Compat/src/SofaMiscForceField/MeshMatrixMass.inl b/Sofa/Component/Compat/src/SofaMiscForceField/MeshMatrixMass.inl deleted file mode 100644 index a40c601099c..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscForceField/MeshMatrixMass.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mass/MeshMatrixMass.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/BarycentricMappingRigid.h b/Sofa/Component/Compat/src/SofaMiscMapping/BarycentricMappingRigid.h deleted file mode 100644 index 84a815eb712..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/BarycentricMappingRigid.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappingRigid.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/BarycentricMappingRigid.inl b/Sofa/Component/Compat/src/SofaMiscMapping/BarycentricMappingRigid.inl deleted file mode 100644 index 161f8b67cab..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/BarycentricMappingRigid.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BarycentricMappingRigid.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/BeamLinearMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/BeamLinearMapping.h deleted file mode 100644 index a6d41d03413..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/BeamLinearMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BeamLinearMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/BeamLinearMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/BeamLinearMapping.inl deleted file mode 100644 index fc312637c37..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/BeamLinearMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/BeamLinearMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMapping.h deleted file mode 100644 index 7e621dc2ddd..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/CenterOfMassMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMapping.inl deleted file mode 100644 index c94b7a8de29..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/CenterOfMassMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMappingOperation.h b/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMappingOperation.h deleted file mode 100644 index 4dbb9a84078..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMappingOperation.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/CenterOfMassMappingOperation.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMulti2Mapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMulti2Mapping.h deleted file mode 100644 index 8e53ee718e1..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMulti2Mapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/CenterOfMassMulti2Mapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMulti2Mapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMulti2Mapping.inl deleted file mode 100644 index 519bb5e70e6..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMulti2Mapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/CenterOfMassMulti2Mapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMultiMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMultiMapping.h deleted file mode 100644 index eb06a856453..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMultiMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/CenterOfMassMultiMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMultiMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMultiMapping.inl deleted file mode 100644 index eb06a856453..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/CenterOfMassMultiMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/CenterOfMassMultiMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/DeformableOnRigidFrameMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/DeformableOnRigidFrameMapping.h deleted file mode 100644 index 1cc951107e6..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/DeformableOnRigidFrameMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/DeformableOnRigidFrameMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/DeformableOnRigidFrameMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/DeformableOnRigidFrameMapping.inl deleted file mode 100644 index 867803fb5ab..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/DeformableOnRigidFrameMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/DeformableOnRigidFrameMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/DistanceFromTargetMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/DistanceFromTargetMapping.h deleted file mode 100644 index 72674239e30..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/DistanceFromTargetMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/nonlinear/DistanceFromTargetMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/DistanceFromTargetMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/DistanceFromTargetMapping.inl deleted file mode 100644 index 0ed0308bca7..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/DistanceFromTargetMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/nonlinear/DistanceFromTargetMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/DistanceMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/DistanceMapping.h deleted file mode 100644 index e7b691db109..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/DistanceMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/nonlinear/DistanceMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/DistanceMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/DistanceMapping.inl deleted file mode 100644 index 5a9637b5c91..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/DistanceMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/nonlinear/DistanceMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/IdentityMultiMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/IdentityMultiMapping.h deleted file mode 100644 index a6860e1a5ef..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/IdentityMultiMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/IdentityMultiMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/IdentityMultiMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/IdentityMultiMapping.inl deleted file mode 100644 index 120e566875d..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/IdentityMultiMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/IdentityMultiMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/SquareDistanceMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/SquareDistanceMapping.h deleted file mode 100644 index 0d9d84dacb8..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/SquareDistanceMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/nonlinear/SquareDistanceMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/SquareDistanceMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/SquareDistanceMapping.inl deleted file mode 100644 index 6704560326c..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/SquareDistanceMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/SquareDistanceMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/SquareMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/SquareMapping.h deleted file mode 100644 index 38973296cbd..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/SquareMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/nonlinear/SquareMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/SquareMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/SquareMapping.inl deleted file mode 100644 index ee0a03226b0..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/SquareMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/SquareMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/SubsetMultiMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/SubsetMultiMapping.h deleted file mode 100644 index 3f872481472..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/SubsetMultiMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/SubsetMultiMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/SubsetMultiMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/SubsetMultiMapping.inl deleted file mode 100644 index 372fb1f14e0..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/SubsetMultiMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/SubsetMultiMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/TubularMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/TubularMapping.h deleted file mode 100644 index 44a2938bd0a..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/TubularMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/TubularMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/TubularMapping.inl b/Sofa/Component/Compat/src/SofaMiscMapping/TubularMapping.inl deleted file mode 100644 index 4182c094794..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/TubularMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/TubularMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscMapping/VoidMapping.h b/Sofa/Component/Compat/src/SofaMiscMapping/VoidMapping.h deleted file mode 100644 index 04d5ab568c2..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscMapping/VoidMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/VoidMapping.h") diff --git a/Sofa/Component/Compat/src/SofaMiscSolver/DampVelocitySolver.h b/Sofa/Component/Compat/src/SofaMiscSolver/DampVelocitySolver.h deleted file mode 100644 index 15e0974dc0e..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscSolver/DampVelocitySolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/odesolver/forward/DampVelocitySolver.h") diff --git a/Sofa/Component/Compat/src/SofaMiscSolver/NewmarkImplicitSolver.h b/Sofa/Component/Compat/src/SofaMiscSolver/NewmarkImplicitSolver.h deleted file mode 100644 index 053a1430715..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscSolver/NewmarkImplicitSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/odesolver/backward/NewmarkImplicitSolver.h") diff --git a/Sofa/Component/Compat/src/SofaMiscTopology/TopologicalChangeProcessor.h b/Sofa/Component/Compat/src/SofaMiscTopology/TopologicalChangeProcessor.h deleted file mode 100644 index 49106e51812..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscTopology/TopologicalChangeProcessor.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/utility/TopologicalChangeProcessor.h") diff --git a/Sofa/Component/Compat/src/SofaMiscTopology/TopologyBoundingTrasher.h b/Sofa/Component/Compat/src/SofaMiscTopology/TopologyBoundingTrasher.h deleted file mode 100644 index 484af4ebfb7..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscTopology/TopologyBoundingTrasher.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/utility/TopologyBoundingTrasher.h") diff --git a/Sofa/Component/Compat/src/SofaMiscTopology/TopologyBoundingTrasher.inl b/Sofa/Component/Compat/src/SofaMiscTopology/TopologyBoundingTrasher.inl deleted file mode 100644 index 68fb1af3001..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscTopology/TopologyBoundingTrasher.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/utility/TopologyBoundingTrasher.inl") diff --git a/Sofa/Component/Compat/src/SofaMiscTopology/TopologyChecker.h b/Sofa/Component/Compat/src/SofaMiscTopology/TopologyChecker.h deleted file mode 100644 index 69973da3bba..00000000000 --- a/Sofa/Component/Compat/src/SofaMiscTopology/TopologyChecker.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/utility/TopologyChecker.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridGeometryAlgorithms.h b/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridGeometryAlgorithms.h deleted file mode 100644 index 502ce7efba3..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridGeometryAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/DynamicSparseGridGeometryAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridGeometryAlgorithms.inl b/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridGeometryAlgorithms.inl deleted file mode 100644 index 3da8291d758..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridGeometryAlgorithms.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/DynamicSparseGridGeometryAlgorithms.inl") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyAlgorithms.h b/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyAlgorithms.h deleted file mode 100644 index d137eae5075..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyAlgorithms.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/DynamicSparseGridTopologyAlgorithms.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyContainer.h b/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyContainer.h deleted file mode 100644 index 5e3118681a0..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyContainer.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/DynamicSparseGridTopologyContainer.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyModifier.h b/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyModifier.h deleted file mode 100644 index e21711e737a..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/DynamicSparseGridTopologyModifier.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/DynamicSparseGridTopologyModifier.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMForceFieldAndMass.h b/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMForceFieldAndMass.h deleted file mode 100644 index 410a3a397ff..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMForceFieldAndMass.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -// SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/nonuniform/HexahedronCompositeFEMForceFieldAndMass.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMForceFieldAndMass.inl b/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMForceFieldAndMass.inl deleted file mode 100644 index 3776123aedf..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMForceFieldAndMass.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -// SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/nonuniform/HexahedronCompositeFEMForceFieldAndMass.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMMapping.h b/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMMapping.h deleted file mode 100644 index e598168a041..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMMapping.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -// SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/nonuniform/HexahedronCompositeFEMMapping.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMMapping.inl b/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMMapping.inl deleted file mode 100644 index 2fabc7a438e..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/HexahedronCompositeFEMMapping.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -// SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/nonuniform/HexahedronCompositeFEMMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/MultilevelHexahedronSetTopologyContainer.h b/Sofa/Component/Compat/src/SofaNonUniformFem/MultilevelHexahedronSetTopologyContainer.h deleted file mode 100644 index 62c4c5be3f2..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/MultilevelHexahedronSetTopologyContainer.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/dynamic/MultilevelHexahedronSetTopologyContainer.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedralFEMForceFieldAndMass.h b/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedralFEMForceFieldAndMass.h deleted file mode 100644 index e62f5d76524..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedralFEMForceFieldAndMass.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -// SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/nonuniform/NonUniformHexahedralFEMForceFieldAndMass.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedralFEMForceFieldAndMass.inl b/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedralFEMForceFieldAndMass.inl deleted file mode 100644 index 67060cece23..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedralFEMForceFieldAndMass.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -// SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/nonuniform/NonUniformHexahedralFEMForceFieldAndMass.inl") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedronFEMForceFieldAndMass.h b/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedronFEMForceFieldAndMass.h deleted file mode 100644 index 75139a34a41..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedronFEMForceFieldAndMass.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -// SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/nonuniform/NonUniformHexahedronFEMForceFieldAndMass.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedronFEMForceFieldAndMass.inl b/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedronFEMForceFieldAndMass.inl deleted file mode 100644 index 67b9ac588c5..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/NonUniformHexahedronFEMForceFieldAndMass.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -// SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/nonuniform/NonUniformHexahedronFEMForceFieldAndMass.inl") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/SparseGridMultipleTopology.h b/Sofa/Component/Compat/src/SofaNonUniformFem/SparseGridMultipleTopology.h deleted file mode 100644 index ce3440f4e39..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/SparseGridMultipleTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/grid/SparseGridMultipleTopology.h") diff --git a/Sofa/Component/Compat/src/SofaNonUniformFem/SparseGridRamificationTopology.h b/Sofa/Component/Compat/src/SofaNonUniformFem/SparseGridRamificationTopology.h deleted file mode 100644 index 6121667ed67..00000000000 --- a/Sofa/Component/Compat/src/SofaNonUniformFem/SparseGridRamificationTopology.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/container/grid/SparseGridRamificationTopology.h") diff --git a/Sofa/Component/Compat/src/SofaObjectInteraction/PenalityContactForceField.h b/Sofa/Component/Compat/src/SofaObjectInteraction/PenalityContactForceField.h deleted file mode 100644 index fa38bdd8060..00000000000 --- a/Sofa/Component/Compat/src/SofaObjectInteraction/PenalityContactForceField.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/PenalityContactForceField.h") diff --git a/Sofa/Component/Compat/src/SofaObjectInteraction/PenalityContactForceField.inl b/Sofa/Component/Compat/src/SofaObjectInteraction/PenalityContactForceField.inl deleted file mode 100644 index 74e123b7cbb..00000000000 --- a/Sofa/Component/Compat/src/SofaObjectInteraction/PenalityContactForceField.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/PenalityContactForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/ClipPlane.h b/Sofa/Component/Compat/src/SofaOpenglVisual/ClipPlane.h deleted file mode 100644 index 79e37c182dd..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/ClipPlane.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_CLIPPLANE - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering3d/ClipPlane.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/CompositingVisualLoop.h b/Sofa/Component/Compat/src/SofaOpenglVisual/CompositingVisualLoop.h deleted file mode 100644 index 17fbcbc0c95..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/CompositingVisualLoop.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_COMPOSITINGVISUALLOOP - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/CompositingVisualLoop.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/DataDisplay.h b/Sofa/Component/Compat/src/SofaOpenglVisual/DataDisplay.h deleted file mode 100644 index f2f6e1c9988..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/DataDisplay.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_DATADISPLAY - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering3d/DataDisplay.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/Light.h b/Sofa/Component/Compat/src/SofaOpenglVisual/Light.h deleted file mode 100644 index 304081c0ccf..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/Light.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_LIGHT - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/Light.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/LightManager.h b/Sofa/Component/Compat/src/SofaOpenglVisual/LightManager.h deleted file mode 100644 index 5c1d81f26b6..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/LightManager.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_LIGHTMANAGER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/LightManager.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/MergeVisualModels.h b/Sofa/Component/Compat/src/SofaOpenglVisual/MergeVisualModels.h deleted file mode 100644 index a5c35142205..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/MergeVisualModels.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_MERGEVISUALMODELS - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering3d/MergeVisualModels.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglAttribute.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglAttribute.h deleted file mode 100644 index 4b5aa62f136..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglAttribute.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLATTRIBUTE - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglAttribute.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglAttribute.inl b/Sofa/Component/Compat/src/SofaOpenglVisual/OglAttribute.inl deleted file mode 100644 index f0a3c64b5fa..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglAttribute.inl +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglAttribute.inl") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglColorMap.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglColorMap.h deleted file mode 100644 index 9869433bf20..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglColorMap.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLCOLORMAP - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering2d/OglColorMap.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglCylinderModel.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglCylinderModel.h deleted file mode 100644 index 8599ae85108..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglCylinderModel.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLCYLINDERMODEL - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering3d/OglCylinderModel.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglGrid.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglGrid.h deleted file mode 100644 index db78553189d..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglGrid.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLGRID - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering3d/OglGrid.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglLabel.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglLabel.h deleted file mode 100644 index 2b06bd7f6be..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglLabel.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLLABEL - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering2d/OglLabel.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglLineAxis.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglLineAxis.h deleted file mode 100644 index 30d3bbca15e..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglLineAxis.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLLINEAXIS - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering3d/OglLineAxis.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglModel.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglModel.h deleted file mode 100644 index 3cf642ef91d..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglModel.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLMODEL - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering3d/OglModel.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglOITShader.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglOITShader.h deleted file mode 100644 index cad6e7fcabe..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglOITShader.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLOITSHADER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglOITShader.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglRenderingSRGB.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglRenderingSRGB.h deleted file mode 100644 index be7eafb2a72..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglRenderingSRGB.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLRENDERINGSRGB - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglRenderingSRGB.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglSceneFrame.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglSceneFrame.h deleted file mode 100644 index 7536352cefa..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglSceneFrame.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLSCENEFRAME - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering3d/OglSceneFrame.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglShader.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglShader.h deleted file mode 100644 index d50a64447e1..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglShader.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLSHADER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglShader.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglShaderMacro.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglShaderMacro.h deleted file mode 100644 index 2a7edad3fab..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglShaderMacro.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLSHADERMACRO - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglShaderMacro.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglShaderVisualModel.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglShaderVisualModel.h deleted file mode 100644 index 4afb557ada2..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglShaderVisualModel.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLSHADERVISUALMODEL - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglShaderVisualModel.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglShadowShader.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglShadowShader.h deleted file mode 100644 index 8f5e51c1aa6..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglShadowShader.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLSHADOWSHADER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglShadowShader.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglTexture.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglTexture.h deleted file mode 100644 index 70e0afdc5a1..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglTexture.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLTEXTURE - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglTexture.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglTexturePointer.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglTexturePointer.h deleted file mode 100644 index ec1c744d400..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglTexturePointer.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLTEXTUREPOINTER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglTexturePointer.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglVariable.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglVariable.h deleted file mode 100644 index 5b3e7d23d78..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglVariable.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLVARIABLE - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OglVariable.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglVariable.inl b/Sofa/Component/Compat/src/SofaOpenglVisual/OglVariable.inl deleted file mode 100644 index c53b1e6220f..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglVariable.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER_NOT_REPLACED("v22.06", "v23.06") diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OglViewport.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OglViewport.h deleted file mode 100644 index 84e95563d74..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OglViewport.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_OGLVIEWPORT - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering2d/OglViewport.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/OrderIndependentTransparencyManager.h b/Sofa/Component/Compat/src/SofaOpenglVisual/OrderIndependentTransparencyManager.h deleted file mode 100644 index 118d22acb5a..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/OrderIndependentTransparencyManager.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_ORDERINDEPENDENTTRANSPARENCYMANAGER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/OrderIndependentTransparencyManager.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/PointSplatModel.h b/Sofa/Component/Compat/src/SofaOpenglVisual/PointSplatModel.h deleted file mode 100644 index f3eb36ee374..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/PointSplatModel.h +++ /dev/null @@ -1,35 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_POINTSPLATMODEL - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering3d/PointSplatModel.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif - diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/PostProcessManager.h b/Sofa/Component/Compat/src/SofaOpenglVisual/PostProcessManager.h deleted file mode 100644 index 3d3cacc0e91..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/PostProcessManager.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_POSTPROCESSMANAGER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/PostProcessManager.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/SlicedVolumetricModel.h b/Sofa/Component/Compat/src/SofaOpenglVisual/SlicedVolumetricModel.h deleted file mode 100644 index 711f6cdedfb..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/SlicedVolumetricModel.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_SLICEDVOLUMETRICMODEL - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/rendering3d/SlicedVolumetricModel.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/VisualManagerPass.h b/Sofa/Component/Compat/src/SofaOpenglVisual/VisualManagerPass.h deleted file mode 100644 index b2c7d1c22da..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/VisualManagerPass.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_VISUALMANAGERPASS - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/VisualManagerPass.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaOpenglVisual/VisualManagerSecondaryPass.h b/Sofa/Component/Compat/src/SofaOpenglVisual/VisualManagerSecondaryPass.h deleted file mode 100644 index 3334248878a..00000000000 --- a/Sofa/Component/Compat/src/SofaOpenglVisual/VisualManagerSecondaryPass.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFAGL_COMPONENT_VISUALMANAGERSECONDARYPASS - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gl/component/shader/VisualManagerSecondaryPass.h") - -#else -#error "SofaOpenglVisual contents has been moved to Sofa.GL.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/BlockJacobiPreconditioner.h b/Sofa/Component/Compat/src/SofaPreconditioner/BlockJacobiPreconditioner.h deleted file mode 100644 index 32883593315..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/BlockJacobiPreconditioner.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/BlockJacobiPreconditioner.h") diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/BlockJacobiPreconditioner.inl b/Sofa/Component/Compat/src/SofaPreconditioner/BlockJacobiPreconditioner.inl deleted file mode 100644 index 78253c97759..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/BlockJacobiPreconditioner.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/BlockJacobiPreconditioner.inl") diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/JacobiPreconditioner.h b/Sofa/Component/Compat/src/SofaPreconditioner/JacobiPreconditioner.h deleted file mode 100644 index 279a5f13d62..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/JacobiPreconditioner.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/JacobiPreconditioner.h") diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/JacobiPreconditioner.inl b/Sofa/Component/Compat/src/SofaPreconditioner/JacobiPreconditioner.inl deleted file mode 100644 index e605a5c0bdc..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/JacobiPreconditioner.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/JacobiPreconditioner.inl") diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/PrecomputedWarpPreconditioner.h b/Sofa/Component/Compat/src/SofaPreconditioner/PrecomputedWarpPreconditioner.h deleted file mode 100644 index 921aff65c61..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/PrecomputedWarpPreconditioner.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.h") diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/PrecomputedWarpPreconditioner.inl b/Sofa/Component/Compat/src/SofaPreconditioner/PrecomputedWarpPreconditioner.inl deleted file mode 100644 index e0a30b4ee74..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/PrecomputedWarpPreconditioner.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.inl") diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/SSORPreconditioner.h b/Sofa/Component/Compat/src/SofaPreconditioner/SSORPreconditioner.h deleted file mode 100644 index c5e2ab68822..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/SSORPreconditioner.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/SSORPreconditioner.h") diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/SSORPreconditioner.inl b/Sofa/Component/Compat/src/SofaPreconditioner/SSORPreconditioner.inl deleted file mode 100644 index d51e90a75c7..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/SSORPreconditioner.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/SSORPreconditioner.inl") diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/ShewchukPCGLinearSolver.h b/Sofa/Component/Compat/src/SofaPreconditioner/ShewchukPCGLinearSolver.h deleted file mode 100644 index 27ba32edc76..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/ShewchukPCGLinearSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/ShewchukPCGLinearSolver.h") diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/WarpPreconditioner.h b/Sofa/Component/Compat/src/SofaPreconditioner/WarpPreconditioner.h deleted file mode 100644 index 652eb1fd9de..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/WarpPreconditioner.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/WarpPreconditioner.h") diff --git a/Sofa/Component/Compat/src/SofaPreconditioner/WarpPreconditioner.inl b/Sofa/Component/Compat/src/SofaPreconditioner/WarpPreconditioner.inl deleted file mode 100644 index 9119c9534aa..00000000000 --- a/Sofa/Component/Compat/src/SofaPreconditioner/WarpPreconditioner.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/preconditioner/WarpPreconditioner.inl") diff --git a/Sofa/Component/Compat/src/SofaRigid/JointSpring.h b/Sofa/Component/Compat/src/SofaRigid/JointSpring.h deleted file mode 100644 index 831e2d40a2d..00000000000 --- a/Sofa/Component/Compat/src/SofaRigid/JointSpring.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/JointSpring.h") diff --git a/Sofa/Component/Compat/src/SofaRigid/JointSpring.inl b/Sofa/Component/Compat/src/SofaRigid/JointSpring.inl deleted file mode 100644 index d1a8fbc489c..00000000000 --- a/Sofa/Component/Compat/src/SofaRigid/JointSpring.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/JointSpring.inl") diff --git a/Sofa/Component/Compat/src/SofaRigid/JointSpringForceField.h b/Sofa/Component/Compat/src/SofaRigid/JointSpringForceField.h deleted file mode 100644 index cc667cbda84..00000000000 --- a/Sofa/Component/Compat/src/SofaRigid/JointSpringForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/JointSpringForceField.h") diff --git a/Sofa/Component/Compat/src/SofaRigid/JointSpringForceField.inl b/Sofa/Component/Compat/src/SofaRigid/JointSpringForceField.inl deleted file mode 100644 index fd43ec06c2c..00000000000 --- a/Sofa/Component/Compat/src/SofaRigid/JointSpringForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/spring/JointSpringForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaRigid/RigidMapping.h b/Sofa/Component/Compat/src/SofaRigid/RigidMapping.h deleted file mode 100644 index 8727a6de8d1..00000000000 --- a/Sofa/Component/Compat/src/SofaRigid/RigidMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/nonlinear/RigidMapping.h") diff --git a/Sofa/Component/Compat/src/SofaRigid/RigidMapping.inl b/Sofa/Component/Compat/src/SofaRigid/RigidMapping.inl deleted file mode 100644 index 890dd3e9c8f..00000000000 --- a/Sofa/Component/Compat/src/SofaRigid/RigidMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/nonlinear/RigidMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaRigid/RigidRigidMapping.h b/Sofa/Component/Compat/src/SofaRigid/RigidRigidMapping.h deleted file mode 100644 index f42ce8ee07c..00000000000 --- a/Sofa/Component/Compat/src/SofaRigid/RigidRigidMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/nonlinear/RigidRigidMapping.h") diff --git a/Sofa/Component/Compat/src/SofaRigid/RigidRigidMapping.inl b/Sofa/Component/Compat/src/SofaRigid/RigidRigidMapping.inl deleted file mode 100644 index 1e07b266d27..00000000000 --- a/Sofa/Component/Compat/src/SofaRigid/RigidRigidMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/nonlinear/RigidRigidMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaSimpleFem/HexahedronFEMForceField.h b/Sofa/Component/Compat/src/SofaSimpleFem/HexahedronFEMForceField.h deleted file mode 100644 index 07419490d95..00000000000 --- a/Sofa/Component/Compat/src/SofaSimpleFem/HexahedronFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/HexahedronFEMForceField.h") diff --git a/Sofa/Component/Compat/src/SofaSimpleFem/HexahedronFEMForceField.inl b/Sofa/Component/Compat/src/SofaSimpleFem/HexahedronFEMForceField.inl deleted file mode 100644 index fd8093bf5f6..00000000000 --- a/Sofa/Component/Compat/src/SofaSimpleFem/HexahedronFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/HexahedronFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronDiffusionFEMForceField.h b/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronDiffusionFEMForceField.h deleted file mode 100644 index bba40d24929..00000000000 --- a/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronDiffusionFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/diffusion/TetrahedronDiffusionFEMForceField.h") diff --git a/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronDiffusionFEMForceField.inl b/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronDiffusionFEMForceField.inl deleted file mode 100644 index e20fcce4685..00000000000 --- a/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronDiffusionFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/diffusion/TetrahedronDiffusionFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronFEMForceField.h b/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronFEMForceField.h deleted file mode 100644 index d103e664346..00000000000 --- a/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronFEMForceField.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TetrahedronFEMForceField.h") diff --git a/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronFEMForceField.inl b/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronFEMForceField.inl deleted file mode 100644 index 6ec1304bb63..00000000000 --- a/Sofa/Component/Compat/src/SofaSimpleFem/TetrahedronFEMForceField.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/TetrahedronFEMForceField.inl") diff --git a/Sofa/Component/Compat/src/SofaSimpleFem/fwd.h b/Sofa/Component/Compat/src/SofaSimpleFem/fwd.h deleted file mode 100644 index 925952c7abe..00000000000 --- a/Sofa/Component/Compat/src/SofaSimpleFem/fwd.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/solidmechanics/fem/elastic/fwd.h") \ No newline at end of file diff --git a/Sofa/Component/Compat/src/SofaSparseSolver/FillReducingOrdering.h b/Sofa/Component/Compat/src/SofaSparseSolver/FillReducingOrdering.h deleted file mode 100644 index c6a7b5b15a7..00000000000 --- a/Sofa/Component/Compat/src/SofaSparseSolver/FillReducingOrdering.h +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include > - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "SofaMatrix/FillReducingOrdering.h") - -#else -#error "FillReducingOrdering component has been moved to SofaMatrix plugin." -#endif diff --git a/Sofa/Component/Compat/src/SofaSparseSolver/FillReducingOrdering.inl b/Sofa/Component/Compat/src/SofaSparseSolver/FillReducingOrdering.inl deleted file mode 100644 index 18559cc4d0d..00000000000 --- a/Sofa/Component/Compat/src/SofaSparseSolver/FillReducingOrdering.inl +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include > - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "SofaMatrix/FillReducingOrdering.inl") - -#else -#error "FillReducingOrdering component has been moved to SofaMatrix plugin." -#endif diff --git a/Sofa/Component/Compat/src/SofaSparseSolver/PrecomputedLinearSolver.h b/Sofa/Component/Compat/src/SofaSparseSolver/PrecomputedLinearSolver.h deleted file mode 100644 index 48fd677e2bc..00000000000 --- a/Sofa/Component/Compat/src/SofaSparseSolver/PrecomputedLinearSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/direct/PrecomputedLinearSolver.h") diff --git a/Sofa/Component/Compat/src/SofaSparseSolver/PrecomputedLinearSolver.inl b/Sofa/Component/Compat/src/SofaSparseSolver/PrecomputedLinearSolver.inl deleted file mode 100644 index 65d493ddf75..00000000000 --- a/Sofa/Component/Compat/src/SofaSparseSolver/PrecomputedLinearSolver.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/direct/PrecomputedLinearSolver.inl") diff --git a/Sofa/Component/Compat/src/SofaSparseSolver/SparseCholeskySolver.h b/Sofa/Component/Compat/src/SofaSparseSolver/SparseCholeskySolver.h deleted file mode 100644 index e08378ac130..00000000000 --- a/Sofa/Component/Compat/src/SofaSparseSolver/SparseCholeskySolver.h +++ /dev/null @@ -1,28 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_PRAGMA_ERROR( \ - "This header has been DISABLED since v23.12. " \ - "To fix this error you must use the CSparseSolvers plugins. " ) diff --git a/Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolver.h b/Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolver.h deleted file mode 100644 index aa0d0a4b8e8..00000000000 --- a/Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolver.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/direct/SparseLDLSolver.h") diff --git a/Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolver.inl b/Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolver.inl deleted file mode 100644 index d239baa3017..00000000000 --- a/Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolver.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/direct/SparseLDLSolver.inl") diff --git a/Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolverImpl.h b/Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolverImpl.h deleted file mode 100644 index b5c8efff282..00000000000 --- a/Sofa/Component/Compat/src/SofaSparseSolver/SparseLDLSolverImpl.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/linearsolver/direct/SparseLDLSolverImpl.h") diff --git a/Sofa/Component/Compat/src/SofaSparseSolver/SparseLUSolver.h b/Sofa/Component/Compat/src/SofaSparseSolver/SparseLUSolver.h deleted file mode 100644 index 4e21871483e..00000000000 --- a/Sofa/Component/Compat/src/SofaSparseSolver/SparseLUSolver.h +++ /dev/null @@ -1,28 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_PRAGMA_ERROR( \ - "This header has been DISABLED since v23.12. " \ - "To fix this error you must use the CSparseSolvers plugins. " ) diff --git a/Sofa/Component/Compat/src/SofaSparseSolver/SparseLUSolver.inl b/Sofa/Component/Compat/src/SofaSparseSolver/SparseLUSolver.inl deleted file mode 100644 index a50573db9b0..00000000000 --- a/Sofa/Component/Compat/src/SofaSparseSolver/SparseLUSolver.inl +++ /dev/null @@ -1,28 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_PRAGMA_ERROR( \ - "This header has been DISABLED since v23.12. " \ - "To fix this error you must use the CSparseSolvers plugins. " ) diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/CenterPointTopologicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/CenterPointTopologicalMapping.h deleted file mode 100644 index e94ea4e0004..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/CenterPointTopologicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/mapping/CenterPointTopologicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/Edge2QuadTopologicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/Edge2QuadTopologicalMapping.h deleted file mode 100644 index 685cc9e5db1..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/Edge2QuadTopologicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/mapping/Edge2QuadTopologicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/Hexa2QuadTopologicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/Hexa2QuadTopologicalMapping.h deleted file mode 100644 index 2ccf937561e..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/Hexa2QuadTopologicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/mapping/Hexa2QuadTopologicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/Hexa2TetraTopologicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/Hexa2TetraTopologicalMapping.h deleted file mode 100644 index 3e92373b6b4..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/Hexa2TetraTopologicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/mapping/Hexa2TetraTopologicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/IdentityTopologicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/IdentityTopologicalMapping.h deleted file mode 100644 index ec060d09393..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/IdentityTopologicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/mapping/IdentityTopologicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/Mesh2PointMechanicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/Mesh2PointMechanicalMapping.h deleted file mode 100644 index cb1a42bd924..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/Mesh2PointMechanicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/Mesh2PointMechanicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/Mesh2PointMechanicalMapping.inl b/Sofa/Component/Compat/src/SofaTopologyMapping/Mesh2PointMechanicalMapping.inl deleted file mode 100644 index 190f4902efb..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/Mesh2PointMechanicalMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/Mesh2PointMechanicalMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/Quad2TriangleTopologicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/Quad2TriangleTopologicalMapping.h deleted file mode 100644 index 62d82640c19..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/Quad2TriangleTopologicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/mapping/Quad2TriangleTopologicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/SimpleTesselatedTetraMechanicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/SimpleTesselatedTetraMechanicalMapping.h deleted file mode 100644 index 417bdaec892..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/SimpleTesselatedTetraMechanicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/SimpleTesselatedTetraMechanicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/SimpleTesselatedTetraMechanicalMapping.inl b/Sofa/Component/Compat/src/SofaTopologyMapping/SimpleTesselatedTetraMechanicalMapping.inl deleted file mode 100644 index 543b1093bc2..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/SimpleTesselatedTetraMechanicalMapping.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/mapping/linear/SimpleTesselatedTetraMechanicalMapping.inl") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/SubsetTopologicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/SubsetTopologicalMapping.h deleted file mode 100644 index e8d561bbc81..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/SubsetTopologicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/mapping/SubsetTopologicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/Tetra2TriangleTopologicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/Tetra2TriangleTopologicalMapping.h deleted file mode 100644 index 8da997a48df..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/Tetra2TriangleTopologicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/mapping/Tetra2TriangleTopologicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaTopologyMapping/Triangle2EdgeTopologicalMapping.h b/Sofa/Component/Compat/src/SofaTopologyMapping/Triangle2EdgeTopologicalMapping.h deleted file mode 100644 index e94ea4e0004..00000000000 --- a/Sofa/Component/Compat/src/SofaTopologyMapping/Triangle2EdgeTopologicalMapping.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/topology/mapping/CenterPointTopologicalMapping.h") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/AddRecordedCameraPerformer.h b/Sofa/Component/Compat/src/SofaUserInteraction/AddRecordedCameraPerformer.h deleted file mode 100644 index 8be8b3f78fe..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/AddRecordedCameraPerformer.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_ADDRECORDEDCAMERAPERFORMER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/AddRecordedCameraPerformer.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/AttachBodyPerformer.h b/Sofa/Component/Compat/src/SofaUserInteraction/AttachBodyPerformer.h deleted file mode 100644 index ceda9098da2..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/AttachBodyPerformer.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_ATTACHBODYPERFORMER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/AttachBodyPerformer.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/AttachBodyPerformer.inl b/Sofa/Component/Compat/src/SofaUserInteraction/AttachBodyPerformer.inl deleted file mode 100644 index f897c34a8ab..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/AttachBodyPerformer.inl +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/AttachBodyPerformer.inl") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/ComponentMouseInteraction.h b/Sofa/Component/Compat/src/SofaUserInteraction/ComponentMouseInteraction.h deleted file mode 100644 index 028e64302c0..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/ComponentMouseInteraction.h +++ /dev/null @@ -1,35 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_COMPONENTMOUSEINTERACTOR - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/ComponentMouseInteraction.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif - diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/ComponentMouseInteraction.inl b/Sofa/Component/Compat/src/SofaUserInteraction/ComponentMouseInteraction.inl deleted file mode 100644 index a191fc287da..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/ComponentMouseInteraction.inl +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/ComponentMouseInteraction.inl") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/Controller.h b/Sofa/Component/Compat/src/SofaUserInteraction/Controller.h deleted file mode 100644 index 622e45589fb..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/Controller.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/controller/Controller.h") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/FixParticlePerformer.h b/Sofa/Component/Compat/src/SofaUserInteraction/FixParticlePerformer.h deleted file mode 100644 index b521c852367..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/FixParticlePerformer.h +++ /dev/null @@ -1,35 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_FIXPARTICLEPERFORMER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/FixParticlePerformer.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif - diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/FixParticlePerformer.inl b/Sofa/Component/Compat/src/SofaUserInteraction/FixParticlePerformer.inl deleted file mode 100644 index 6a3a6d4fcb6..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/FixParticlePerformer.inl +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/FixParticlePerformer.inl") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/InciseAlongPathPerformer.h b/Sofa/Component/Compat/src/SofaUserInteraction/InciseAlongPathPerformer.h deleted file mode 100644 index c609b54c41c..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/InciseAlongPathPerformer.h +++ /dev/null @@ -1,35 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_FIXPARTICLEPERFORMER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/InciseAlongPathPerformer.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif - diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/InteractionPerformer.h b/Sofa/Component/Compat/src/SofaUserInteraction/InteractionPerformer.h deleted file mode 100644 index 25c665e59bb..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/InteractionPerformer.h +++ /dev/null @@ -1,35 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_INTERACTIONPERFORMER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/InteractionPerformer.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif - diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/MechanicalStateController.h b/Sofa/Component/Compat/src/SofaUserInteraction/MechanicalStateController.h deleted file mode 100644 index c87827b06fc..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/MechanicalStateController.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/controller/MechanicalStateController.h") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/MechanicalStateController.inl b/Sofa/Component/Compat/src/SofaUserInteraction/MechanicalStateController.inl deleted file mode 100644 index de9e8efe1f3..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/MechanicalStateController.inl +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/controller/MechanicalStateController.inl") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/MouseInteractor.h b/Sofa/Component/Compat/src/SofaUserInteraction/MouseInteractor.h deleted file mode 100644 index 081949b6137..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/MouseInteractor.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_MOUSEINTERACTOR - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/MouseInteractor.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/MouseInteractor.inl b/Sofa/Component/Compat/src/SofaUserInteraction/MouseInteractor.inl deleted file mode 100644 index 027cef382f2..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/MouseInteractor.inl +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/MouseInteractor.inl") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/Ray.h b/Sofa/Component/Compat/src/SofaUserInteraction/Ray.h deleted file mode 100644 index 8651b0f7f72..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/Ray.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/Ray.h") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/RayContact.h b/Sofa/Component/Compat/src/SofaUserInteraction/RayContact.h deleted file mode 100644 index 28062247998..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/RayContact.h +++ /dev/null @@ -1,25 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/response/contact/RayContact.h") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/RayDiscreteIntersection.h b/Sofa/Component/Compat/src/SofaUserInteraction/RayDiscreteIntersection.h deleted file mode 100644 index 8535de19c6b..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/RayDiscreteIntersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/RayDiscreteIntersection.h") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/RayDiscreteIntersection.inl b/Sofa/Component/Compat/src/SofaUserInteraction/RayDiscreteIntersection.inl deleted file mode 100644 index d09b17095fd..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/RayDiscreteIntersection.inl +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/RayDiscreteIntersection.inl") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/RayModel.h b/Sofa/Component/Compat/src/SofaUserInteraction/RayModel.h deleted file mode 100644 index cc96a2bf897..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/RayModel.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/geometry/RayModel.h") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/RayNewProximityIntersection.h b/Sofa/Component/Compat/src/SofaUserInteraction/RayNewProximityIntersection.h deleted file mode 100644 index e8bde46348b..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/RayNewProximityIntersection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/intersection/RayNewProximityIntersection.h") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/RayTraceDetection.h b/Sofa/Component/Compat/src/SofaUserInteraction/RayTraceDetection.h deleted file mode 100644 index 91939cf9dd7..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/RayTraceDetection.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/collision/detection/algorithm/RayTraceDetection.h") diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/RemovePrimitivePerformer.h b/Sofa/Component/Compat/src/SofaUserInteraction/RemovePrimitivePerformer.h deleted file mode 100644 index ab287fa017c..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/RemovePrimitivePerformer.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_REMOVEPRIMITIVEPERFORMERCONFIGURATION - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/RemovePrimitivePerformer.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/RemovePrimitivePerformer.inl b/Sofa/Component/Compat/src/SofaUserInteraction/RemovePrimitivePerformer.inl deleted file mode 100644 index 42c99d602c5..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/RemovePrimitivePerformer.inl +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/RemovePrimitivePerformer.inl") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/StartNavigationPerformer.h b/Sofa/Component/Compat/src/SofaUserInteraction/StartNavigationPerformer.h deleted file mode 100644 index 4eeb745101d..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/StartNavigationPerformer.h +++ /dev/null @@ -1,35 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_STARTNAVIGATIONPERFORMER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/StartNavigationPerformer.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif - diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/SuturePointPerformer.h b/Sofa/Component/Compat/src/SofaUserInteraction/SuturePointPerformer.h deleted file mode 100644 index 8bb96a25eb2..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/SuturePointPerformer.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_SUTUREPOINTPERFORMER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/SuturePointPerformer.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/SuturePointPerformer.inl b/Sofa/Component/Compat/src/SofaUserInteraction/SuturePointPerformer.inl deleted file mode 100644 index 47991b158f1..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/SuturePointPerformer.inl +++ /dev/null @@ -1,33 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/SuturePointPerformer.inl") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaUserInteraction/TopologicalChangeManager.h b/Sofa/Component/Compat/src/SofaUserInteraction/TopologicalChangeManager.h deleted file mode 100644 index a3c12cb02be..00000000000 --- a/Sofa/Component/Compat/src/SofaUserInteraction/TopologicalChangeManager.h +++ /dev/null @@ -1,34 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -#if __has_include() -#include -#define SOFA_GUI_COMPONENT_TOPOLOGICALCHANGEMANAGER - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/gui/component/performer/TopologicalChangeManager.h") - -#else -#error "This component has been moved to Sofa.GUI.Component. Include instead of this one." -#endif diff --git a/Sofa/Component/Compat/src/SofaValidation/CompareState.h b/Sofa/Component/Compat/src/SofaValidation/CompareState.h deleted file mode 100644 index 4dc0877df9a..00000000000 --- a/Sofa/Component/Compat/src/SofaValidation/CompareState.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/CompareState.h") diff --git a/Sofa/Component/Compat/src/SofaValidation/CompareTopology.h b/Sofa/Component/Compat/src/SofaValidation/CompareTopology.h deleted file mode 100644 index 5ba76cd048a..00000000000 --- a/Sofa/Component/Compat/src/SofaValidation/CompareTopology.h +++ /dev/null @@ -1,26 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#pragma once - -#include - -SOFA_DISABLED_HEADER("v22.06", "v23.06", "sofa/component/playback/CompareTopology.h") diff --git a/Sofa/Component/Compat/src/init.cpp b/Sofa/Component/Compat/src/init.cpp deleted file mode 100644 index b247007a94d..00000000000 --- a/Sofa/Component/Compat/src/init.cpp +++ /dev/null @@ -1,35 +0,0 @@ -/****************************************************************************** -* SOFA, Simulation Open-Framework Architecture * -* (c) 2006 INRIA, USTL, UJF, CNRS, MGH * -* * -* This program is free software; you can redistribute it and/or modify it * -* under the terms of the GNU Lesser General Public License as published by * -* the Free Software Foundation; either version 2.1 of the License, or (at * -* your option) any later version. * -* * -* This program is distributed in the hope that it will be useful, but WITHOUT * -* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * -* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License * -* for more details. * -* * -* You should have received a copy of the GNU Lesser General Public License * -* along with this program. If not, see . * -******************************************************************************* -* Authors: The SOFA Team and external contributors (see Authors.txt) * -* * -* Contact information: contact@sofa-framework.org * -******************************************************************************/ -#include - -namespace sofa -{ - -// Sofa.Component.Compat is supposed to be a header-only library -// But our current CMake framework does not support it (well) -// This init() forces MSVC to generate a .lib file. -// once Sofa.Compat becomes a header-only library, this can be deleted. -SOFA_EXPORT_DYNAMIC_LIBRARY void initSofaComponentCompat() -{ -} - -} // namespace sofa From 23e5d967c14b8403a12ab983c9184124c70b78dd Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Tue, 27 Feb 2024 10:20:18 +0100 Subject: [PATCH 09/18] Update last uses of type::Vector3 --- .../BulletCollisionDetection.h | 2 +- .../BulletConvexHullModel.h | 4 +-- .../Geomagic/src/Geomagic/GeomagicDriver.cpp | 6 ++--- .../PersistentContactBarycentricMapping.inl | 26 +++++++++---------- applications/plugins/Sensable/OmniDriver.cpp | 12 ++++----- .../SensableEmulation/OmniDriverEmu.cpp | 2 +- 6 files changed, 26 insertions(+), 26 deletions(-) diff --git a/applications/plugins/BulletCollisionDetection/src/BulletCollisionDetection/BulletCollisionDetection.h b/applications/plugins/BulletCollisionDetection/src/BulletCollisionDetection/BulletCollisionDetection.h index 997108bcda4..cfbc311c61f 100644 --- a/applications/plugins/BulletCollisionDetection/src/BulletCollisionDetection/BulletCollisionDetection.h +++ b/applications/plugins/BulletCollisionDetection/src/BulletCollisionDetection/BulletCollisionDetection.h @@ -176,7 +176,7 @@ class SOFA_BULLETCOLLISIONDETECTION_API BulletCollisionDetection : //Data useMultiSAP; //Data useBdvt; - Data< type::fixed_array > box; ///< box used if using sweep and prune + Data< type::fixed_array > box; ///< box used if using sweep and prune private: //sofa::set< > collisionModels; diff --git a/applications/plugins/BulletCollisionDetection/src/BulletCollisionDetection/BulletConvexHullModel.h b/applications/plugins/BulletCollisionDetection/src/BulletCollisionDetection/BulletConvexHullModel.h index 5c03a6ffa79..0919373525e 100644 --- a/applications/plugins/BulletCollisionDetection/src/BulletCollisionDetection/BulletConvexHullModel.h +++ b/applications/plugins/BulletCollisionDetection/src/BulletCollisionDetection/BulletConvexHullModel.h @@ -160,9 +160,9 @@ class TBulletConvexHullModel : public sofa::core::CollisionModel ,public BulletC sofa::core::topology::BaseMeshTopology* bmsh; - std::vector > _ch_deco_pts;//convex hull decomposition triangles, used only for drawing convex hulls + std::vector > _ch_deco_pts;//convex hull decomposition triangles, used only for drawing convex hulls std::vector > > _ch_deco_tri; - std::vector > _ch_deco_norms; + std::vector > _ch_deco_norms; std::vector > _ch_deco_colors; diff --git a/applications/plugins/Geomagic/src/Geomagic/GeomagicDriver.cpp b/applications/plugins/Geomagic/src/Geomagic/GeomagicDriver.cpp index c5909c4c0a8..44fe9582165 100644 --- a/applications/plugins/Geomagic/src/Geomagic/GeomagicDriver.cpp +++ b/applications/plugins/Geomagic/src/Geomagic/GeomagicDriver.cpp @@ -478,9 +478,9 @@ void GeomagicDriver::draw(const sofa::core::visual::VisualParams* vparams) const GeomagicDriver::Coord& posDevice = d_posDevice.getValue(); float glRadius = (float)d_scale.getValue()*0.1f; - vparams->drawTool()->drawArrow(posDevice.getCenter(), posDevice.getCenter() + posDevice.getOrientation().rotate(type::Vector3(2,0,0)*d_scale.getValue()), glRadius, sofa::type::RGBAColor::red() ); - vparams->drawTool()->drawArrow(posDevice.getCenter(), posDevice.getCenter() + posDevice.getOrientation().rotate(type::Vector3(0,2,0)*d_scale.getValue()), glRadius, sofa::type::RGBAColor::green() ); - vparams->drawTool()->drawArrow(posDevice.getCenter(), posDevice.getCenter() + posDevice.getOrientation().rotate(type::Vector3(0,0,2)*d_scale.getValue()), glRadius, sofa::type::RGBAColor::blue() ); + vparams->drawTool()->drawArrow(posDevice.getCenter(), posDevice.getCenter() + posDevice.getOrientation().rotate(type::Vec3(2,0,0)*d_scale.getValue()), glRadius, sofa::type::RGBAColor::red() ); + vparams->drawTool()->drawArrow(posDevice.getCenter(), posDevice.getCenter() + posDevice.getOrientation().rotate(type::Vec3(0,2,0)*d_scale.getValue()), glRadius, sofa::type::RGBAColor::green() ); + vparams->drawTool()->drawArrow(posDevice.getCenter(), posDevice.getCenter() + posDevice.getOrientation().rotate(type::Vec3(0,0,2)*d_scale.getValue()), glRadius, sofa::type::RGBAColor::blue() ); } if (d_omniVisu.getValue() && m_GeomagicVisualModel != nullptr) diff --git a/applications/plugins/PersistentContact/PersistentContactBarycentricMapping.inl b/applications/plugins/PersistentContact/PersistentContactBarycentricMapping.inl index e28c55f6f9f..b695c82fbeb 100644 --- a/applications/plugins/PersistentContact/PersistentContactBarycentricMapping.inl +++ b/applications/plugins/PersistentContact/PersistentContactBarycentricMapping.inl @@ -49,7 +49,7 @@ int PersistentContactBarycentricMapperMeshTopology::addContactPointFromI const sofa::core::topology::BaseMeshTopology::SeqQuads& quads = this->fromTopology->getQuads(); sofa::type::vector bases; - sofa::type::vector centers; + sofa::type::vector centers; if ( tetrahedra.empty() && cubes.empty() ) { @@ -62,14 +62,14 @@ int PersistentContactBarycentricMapperMeshTopology::addContactPointFromI return retValue; sofa::type::vector< SReal > lengthEdges; - sofa::type::vector< type::Vector3 > unitaryVectors; + sofa::type::vector< type::Vec3 > unitaryVectors; unsigned int e; for ( e=0; e::addContactPointFromI for ( e=0; e= 0 && coef <= 1 ) { retValue = this->addPointInLine ( e,&coef ); @@ -120,7 +120,7 @@ int PersistentContactBarycentricMapperMeshTopology::addContactPointFromI centers[c0+c] = ( in[quads[c][0]]+in[quads[c][1]]+in[quads[c][2]]+in[quads[c][3]] ) *0.25; } - type::Vector3 coefs; + type::Vec3 coefs; int index = -1; double distance = 1e10; @@ -174,13 +174,13 @@ int PersistentContactBarycentricMapperMeshTopology::addContactPointFromI centers[c0+c] = ( in[cubes[c][0]]+in[cubes[c][1]]+in[cubes[c][2]]+in[cubes[c][3]]+in[cubes[c][4]]+in[cubes[c][5]]+in[cubes[c][6]]+in[cubes[c][7]] ) *0.125; } - type::Vector3 coefs; + type::Vec3 coefs; int index = -1; double distance = 1e10; for ( unsigned int t = 0; t < tetrahedra.size(); t++ ) { - type::Vector3 v = bases[t] * ( _pos - in[tetrahedra[t][0]] ); + type::Vec3 v = bases[t] * ( _pos - in[tetrahedra[t][0]] ); double d = std::max ( std::max ( -v[0],-v[1] ),std::max ( -v[2],v[0]+v[1]+v[2]-1 ) ); if ( d>0 ) d = ( _pos-centers[t] ).norm2(); @@ -194,7 +194,7 @@ int PersistentContactBarycentricMapperMeshTopology::addContactPointFromI for ( unsigned int c = 0; c < cubes.size(); c++ ) { - type::Vector3 v = bases[c0+c] * ( _pos - in[cubes[c][0]] ); + type::Vec3 v = bases[c0+c] * ( _pos - in[cubes[c][0]] ); double d = std::max ( std::max ( -v[0],-v[1] ),std::max ( std::max ( -v[2],v[0]-1 ),std::max ( v[1]-1,v[2]-1 ) ) ); if ( d>0 ) d = ( _pos-centers[c0+c] ).norm2(); @@ -229,7 +229,7 @@ int PersistentContactBarycentricMapperSparseGridTopology::addContactPoin const sofa::core::topology::BaseMeshTopology::SeqHexahedra& cubes = this->fromTopology->getHexahedra(); sofa::type::vector bases; - sofa::type::vector centers; + sofa::type::vector centers; bases.resize ( cubes.size() ); centers.resize ( cubes.size() ); @@ -251,7 +251,7 @@ int PersistentContactBarycentricMapperSparseGridTopology::addContactPoin for ( unsigned int c = 0; c < cubes.size(); c++ ) { - type::Vector3 v = bases[c] * ( pos - in[cubes[c][0]] ); + type::Vec3 v = bases[c] * ( pos - in[cubes[c][0]] ); double d = std::max ( std::max ( -v[0],-v[1] ),std::max ( std::max ( -v[2],v[0]-1 ),std::max ( v[1]-1,v[2]-1 ) ) ); if (d > 0) d = (pos - centers[c]).norm2(); @@ -307,7 +307,7 @@ int PersistentContactBarycentricMapperTetrahedronSetTopology::addContact const sofa::type::vector& tetrahedra = this->fromTopology->getTetrahedra(); sofa::type::vector bases; - sofa::type::vector centers; + sofa::type::vector centers; bases.resize ( tetrahedra.size() ); centers.resize ( tetrahedra.size() ); @@ -322,7 +322,7 @@ int PersistentContactBarycentricMapperTetrahedronSetTopology::addContact centers[t] = ( in[tetrahedra[t][0]]+in[tetrahedra[t][1]]+in[tetrahedra[t][2]]+in[tetrahedra[t][3]] ) *0.25; } - type::Vector3 coefs; + type::Vec3 coefs; int index = -1; double distance = 1e10; for ( unsigned int t = 0; t < tetrahedra.size(); t++ ) diff --git a/applications/plugins/Sensable/OmniDriver.cpp b/applications/plugins/Sensable/OmniDriver.cpp index a1c7f4d2177..211d8a5a4a0 100644 --- a/applications/plugins/Sensable/OmniDriver.cpp +++ b/applications/plugins/Sensable/OmniDriver.cpp @@ -451,7 +451,7 @@ void OmniDriver::draw() visu_base = sofa::core::objectmodel::New(); visu_base->fileMesh.setValue("mesh/omni_test2.obj"); visu_base->name.setValue("BaseOmni"); - visu_base->m_scale.setValue(type::Vector3(scale.getValue(),scale.getValue(),scale.getValue())); + visu_base->m_scale.setValue(type::Vec3(scale.getValue(),scale.getValue(),scale.getValue())); visu_base->setColor(1.0f,1.0f,1.0f,1.0f); visu_base->init(); visu_base->initVisual(); @@ -462,7 +462,7 @@ void OmniDriver::draw() visu_end = sofa::core::objectmodel::New(); visu_end->fileMesh.setValue("mesh/stylus.obj"); visu_end->name.setValue("Stylus"); - visu_end->m_scale.setValue(type::Vector3(scale.getValue(),scale.getValue(),scale.getValue())); + visu_end->m_scale.setValue(type::Vec3(scale.getValue(),scale.getValue(),scale.getValue())); visu_end->setColor(1.0f,0.3f,0.0f,1.0f); visu_end->init(); visu_end->initVisual(); @@ -573,7 +573,7 @@ void OmniDriver::handleEvent(core::objectmodel::Event *event) unsigned char buttonState = 0; if(btn1) buttonState |= sofa::core::objectmodel::HapticDeviceEvent::Button1StateMask; if(!toolSelector.getValue() && btn2) buttonState |= sofa::core::objectmodel::HapticDeviceEvent::Button2StateMask; - Vector3 dummyVector; + Vec3 dummyVector; Quat dummyQuat; sofa::core::objectmodel::HapticDeviceEvent event(currentToolIndex,dummyVector,dummyQuat,buttonState); simulation::Node *groot = dynamic_cast(getContext()->getRootContext()); // access to current node @@ -634,7 +634,7 @@ void OmniDriver::handleEvent(core::objectmodel::Event *event) if (kpe->getKey()=='H' || kpe->getKey()=='h') { sout << "emulated button 1 pressed" << sendl; - Vector3 dummyVector; + Vec3 dummyVector; Quat dummyQuat; sofa::core::objectmodel::HapticDeviceEvent event(currentToolIndex,dummyVector,dummyQuat, sofa::core::objectmodel::HapticDeviceEvent::Button1StateMask); @@ -644,7 +644,7 @@ void OmniDriver::handleEvent(core::objectmodel::Event *event) if (kpe->getKey()=='J' || kpe->getKey()=='j') { sout << "emulated button 2 pressed" << sendl; - Vector3 dummyVector; + Vec3 dummyVector; Quat dummyQuat; sofa::core::objectmodel::HapticDeviceEvent event(currentToolIndex,dummyVector,dummyQuat, sofa::core::objectmodel::HapticDeviceEvent::Button2StateMask); @@ -662,7 +662,7 @@ void OmniDriver::handleEvent(core::objectmodel::Event *event) || kre->getKey()=='J' || kre->getKey()=='j') { sout << "emulated button released" << sendl; - Vector3 dummyVector; + Vec3 dummyVector; Quat dummyQuat; sofa::core::objectmodel::HapticDeviceEvent event(currentToolIndex,dummyVector,dummyQuat,0); simulation::Node *groot = dynamic_cast(getContext()->getRootContext()); // access to current node diff --git a/applications/plugins/SensableEmulation/OmniDriverEmu.cpp b/applications/plugins/SensableEmulation/OmniDriverEmu.cpp index ca672e397c9..444eb66a3c2 100644 --- a/applications/plugins/SensableEmulation/OmniDriverEmu.cpp +++ b/applications/plugins/SensableEmulation/OmniDriverEmu.cpp @@ -373,7 +373,7 @@ void OmniDriverEmu::draw(const core::visual::VisualParams *) visu_base = sofa::core::objectmodel::New(); visu_base->fileMesh.setValue("mesh/omni_test2.obj"); - visu_base->m_scale.setValue(type::Vector3(scale.getValue(),scale.getValue(),scale.getValue())); + visu_base->m_scale.setValue(type::Vec3(scale.getValue(),scale.getValue(),scale.getValue())); visu_base->setColor(1.0f,1.0f,1.0f,1.0f); visu_base->init(); visu_base->initVisual(); From 260886d15025985086e74f99ce7fe87c18a2ffc0 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Tue, 27 Feb 2024 10:36:09 +0100 Subject: [PATCH 10/18] missing change Vector3 in OmniDriverEmu.cpp --- applications/plugins/SensableEmulation/OmniDriverEmu.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/applications/plugins/SensableEmulation/OmniDriverEmu.cpp b/applications/plugins/SensableEmulation/OmniDriverEmu.cpp index 444eb66a3c2..8f2df25b5ad 100644 --- a/applications/plugins/SensableEmulation/OmniDriverEmu.cpp +++ b/applications/plugins/SensableEmulation/OmniDriverEmu.cpp @@ -383,7 +383,7 @@ void OmniDriverEmu::draw(const core::visual::VisualParams *) visu_end = sofa::core::objectmodel::New(); visu_end->fileMesh.setValue("mesh/stylus.obj"); - visu_end->m_scale.setValue(type::Vector3(scale.getValue(),scale.getValue(),scale.getValue())); + visu_end->m_scale.setValue(type::Vec3(scale.getValue(),scale.getValue(),scale.getValue())); visu_end->setColor(1.0f,0.3f,0.0f,1.0f); visu_end->init(); visu_end->initVisual(); @@ -542,7 +542,7 @@ void OmniDriverEmu::handleEvent(core::objectmodel::Event *event) if (kpe->getKey()=='H' || kpe->getKey()=='h') { msg_info() << "emulated button 1 pressed"; - Vector3 dummyVector; + Vec3 dummyVector; Quat dummyQuat; sofa::core::objectmodel::HapticDeviceEvent event(currentToolIndex,dummyVector,dummyQuat, sofa::core::objectmodel::HapticDeviceEvent::Button1StateMask); @@ -552,7 +552,7 @@ void OmniDriverEmu::handleEvent(core::objectmodel::Event *event) if (kpe->getKey()=='J' || kpe->getKey()=='j') { std::cout << "emulated button 2 pressed" << std::endl; - Vector3 dummyVector; + Vec3 dummyVector; Quat dummyQuat; sofa::core::objectmodel::HapticDeviceEvent event(currentToolIndex,dummyVector,dummyQuat, sofa::core::objectmodel::HapticDeviceEvent::Button2StateMask); @@ -569,7 +569,7 @@ void OmniDriverEmu::handleEvent(core::objectmodel::Event *event) || kre->getKey()=='J' || kre->getKey()=='j') { msg_info() << "emulated button released" ; - Vector3 dummyVector; + Vec3 dummyVector; Quat dummyQuat; sofa::core::objectmodel::HapticDeviceEvent event(currentToolIndex,dummyVector,dummyQuat,0); sofa::simulation::Node *groot = dynamic_cast(getContext()->getRootContext()); // access to current node From 0476a4a83832e41f7853696c87c24a5568ce99be Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Tue, 27 Feb 2024 10:52:50 +0100 Subject: [PATCH 11/18] Fix compilation GeomagicEmulator --- .../plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp b/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp index 61b02a95968..5c01995313a 100644 --- a/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp +++ b/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp @@ -49,8 +49,8 @@ GeomagicEmulatorTask::GeomagicEmulatorTask(GeomagicEmulator* ptr, CpuTask::Statu GeomagicEmulatorTask::MemoryAlloc GeomagicEmulatorTask::run() { - Vector3 currentForce; - Vector3 pos_in_world; + Vec3 currentForce; + Vec3 pos_in_world; m_driver->lockPosition.lock(); m_driver->m_simuData = m_driver->m_hapticData; From 43b2d1d576fff4a92beaada3695e839fdbe14b75 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Tue, 27 Feb 2024 12:05:49 +0100 Subject: [PATCH 12/18] Fix TaskScheduler --- .../plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp b/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp index 5c01995313a..3cc4197b142 100644 --- a/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp +++ b/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp @@ -97,8 +97,9 @@ void GeomagicEmulator::initDevice() { unsigned int mNbThread = 2; - _taskScheduler = sofa::simulation::TaskScheduler::getInstance(); - _taskScheduler->init(mNbThread); + _taskScheduler = simulation::MainTaskSchedulerFactory::createInRegistry(); + assert(_taskScheduler); + _taskScheduler->init(); _taskScheduler->addTask(new GeomagicEmulatorTask(this, &_simStepStatus)); double init_jointAngles[3] = { 0.0, 0.26889, -0.370813 }; From e65c16425101cb3622a83560b20cd7f9f5af5a87 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Tue, 27 Feb 2024 12:11:17 +0100 Subject: [PATCH 13/18] mising fixes --- .../plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp b/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp index 3cc4197b142..71288338cab 100644 --- a/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp +++ b/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp @@ -33,6 +33,8 @@ #include #include +#include + #include #include @@ -58,7 +60,7 @@ GeomagicEmulatorTask::MemoryAlloc GeomagicEmulatorTask::run() if (m_driver->m_terminate == false) { - TaskScheduler::getInstance()->addTask(new GeomagicEmulatorTask(m_driver, &m_driver->_simStepStatus)); + _taskScheduler->addTask(new GeomagicEmulatorTask(m_driver, &m_driver->_simStepStatus)); std::this_thread::sleep_for(std::chrono::milliseconds(100)); } From 2c4ba56338f4afb84ad07c3a2dc68ca089592f8d Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Tue, 27 Feb 2024 12:22:36 +0100 Subject: [PATCH 14/18] fix reference to driver --- .../plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp b/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp index 71288338cab..9c9f9575df9 100644 --- a/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp +++ b/applications/plugins/Geomagic/src/Geomagic/GeomagicEmulator.cpp @@ -60,7 +60,7 @@ GeomagicEmulatorTask::MemoryAlloc GeomagicEmulatorTask::run() if (m_driver->m_terminate == false) { - _taskScheduler->addTask(new GeomagicEmulatorTask(m_driver, &m_driver->_simStepStatus)); + m_driver->_taskScheduler->addTask(new GeomagicEmulatorTask(m_driver, &m_driver->_simStepStatus)); std::this_thread::sleep_for(std::chrono::milliseconds(100)); } @@ -97,8 +97,6 @@ void GeomagicEmulator::clearDevice() void GeomagicEmulator::initDevice() { - unsigned int mNbThread = 2; - _taskScheduler = simulation::MainTaskSchedulerFactory::createInRegistry(); assert(_taskScheduler); _taskScheduler->init(); From d09f02ef94598951bcfb2161a7b962dce9efa028 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Tue, 27 Feb 2024 12:41:24 +0100 Subject: [PATCH 15/18] Fix warning in VariationalSymplecticSolver example scene --- .../ODESolver/Backward/VariationalSymplecticSolver.scn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Component/ODESolver/Backward/VariationalSymplecticSolver.scn b/examples/Component/ODESolver/Backward/VariationalSymplecticSolver.scn index ea118addb4d..9e058ca457e 100644 --- a/examples/Component/ODESolver/Backward/VariationalSymplecticSolver.scn +++ b/examples/Component/ODESolver/Backward/VariationalSymplecticSolver.scn @@ -12,7 +12,7 @@ - + From 98bc74b3dd5887cc8daabf02e6a16ca63cee947c Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Wed, 28 Feb 2024 11:05:27 +0100 Subject: [PATCH 16/18] Remove symbol in fwd.h for Win compilation --- Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h b/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h index a5e7d96e96d..76b84b89446 100644 --- a/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h +++ b/Sofa/framework/Simulation/Core/src/sofa/simulation/fwd.h @@ -37,7 +37,6 @@ namespace sofa::simulation typedef sofa::core::sptr SimulationSPtr; /// Set the (unique) simulation which controls the scene - SOFA_SIMULATION_CORE_API SOFA_ATTRIBUTE_DISABLED_SETSIMULATIONRAWPOINTER() void setSimulation(Simulation* s) = delete; From 7b9718a3cded79013e12aec9b541d80cff2c3911 Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Wed, 28 Feb 2024 21:02:16 +0100 Subject: [PATCH 17/18] Remove symbol in DAGSimulation for Win compilation --- .../Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h b/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h index 35ffbaaa462..60acb4c2a6c 100644 --- a/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h +++ b/Sofa/framework/Simulation/Graph/src/sofa/simulation/graph/DAGSimulation.h @@ -53,7 +53,6 @@ class SOFA_SIMULATION_GRAPH_API DAGSimulation: public Simulation /** Get the (unique) simulation which controls the scene. Automatically creates one if no Simulation has been set. */ -SOFA_SIMULATION_GRAPH_API SOFA_ATTRIBUTE_DISABLED_DAGSIMULATION_GETSIMULATION() Simulation* getSimulation() = delete; } // namespace sofa::simulation::graph From 62b2daf44fd53ed172b88e59c18b032278b9fa0d Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Wed, 28 Feb 2024 21:46:28 +0100 Subject: [PATCH 18/18] Remove symbol in LCPcal and ColourPickingVisitor for Win compilation --- .../Common/src/sofa/gui/common/ColourPickingVisitor.h | 6 +++--- Sofa/framework/Helper/src/sofa/helper/LCPcalc.h | 11 +++++------ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h b/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h index 0fc5f5daa2b..7327bbec0d7 100644 --- a/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h +++ b/Sofa/GUI/Common/src/sofa/gui/common/ColourPickingVisitor.h @@ -37,12 +37,12 @@ void SOFA_GUI_COMMON_API decodePosition( sofa::gui::component::performer::BodyPi // compat SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() -void SOFA_GUI_COMMON_API decodeCollisionElement( const sofa::type::Vec4f& colour, sofa::gui::component::performer::BodyPicked& body ) = delete; +void decodeCollisionElement( const sofa::type::Vec4f& colour, sofa::gui::component::performer::BodyPicked& body ) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() -void SOFA_GUI_COMMON_API decodePosition( sofa::gui::component::performer::BodyPicked& body, const sofa::type::Vec4f& colour, const sofa::component::collision::geometry::TriangleCollisionModel* model, +void decodePosition( sofa::gui::component::performer::BodyPicked& body, const sofa::type::Vec4f& colour, const sofa::component::collision::geometry::TriangleCollisionModel* model, const unsigned int index) = delete; SOFA_ATTRIBUTE_DISABLED__RGBACOLOR_AS_FIXEDARRAY() -void SOFA_GUI_COMMON_API decodePosition( sofa::gui::component::performer::BodyPicked& body, const sofa::type::Vec4f& colour, const sofa::component::collision::geometry::SphereCollisionModel* model, +void decodePosition( sofa::gui::component::performer::BodyPicked& body, const sofa::type::Vec4f& colour, const sofa::component::collision::geometry::SphereCollisionModel* model, const unsigned int index) = delete; diff --git a/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h b/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h index 7ba275feb08..529feaf6163 100644 --- a/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h +++ b/Sofa/framework/Helper/src/sofa/helper/LCPcalc.h @@ -96,13 +96,12 @@ inline SOFA_HELPER_API SReal absError(SReal f1x, SReal f1y, SReal f1z, SReal f2x {return sqrt ((f2x-f1x)*(f2x-f1x) + (f2y-f1y)*(f2y-f1y) + (f2z-f1z)*(f2z-f1z));} -SOFA_HELPER_API SOFA_LCPCALC_RESOUDRELCP_DISABLED() int resoudreLCP(int, SReal *, SReal **, SReal *) = delete; -SOFA_HELPER_API int solveLCP(int, SReal *, SReal **, SReal *); - +SOFA_LCPCALC_RESOUDRELCP_DISABLED() int resoudreLCP(int, SReal *, SReal **, SReal *) = delete; +SOFA_LCPCALC_AFFICHESYST_DISABLED() void afficheSyst(SReal *q,SReal **M, int *base, SReal **mat, int dim) = delete; +SOFA_LCPCALC_AFFICHELCP_DISABLED() void afficheLCP(SReal *q, SReal **M, int dim) = delete; +SOFA_LCPCALC_AFFICHELCP_DISABLED() void afficheLCP(SReal *q, SReal **M, SReal *f, int dim) = delete; -SOFA_HELPER_API SOFA_LCPCALC_AFFICHESYST_DISABLED() void afficheSyst(SReal *q,SReal **M, int *base, SReal **mat, int dim) = delete; -SOFA_HELPER_API SOFA_LCPCALC_AFFICHELCP_DISABLED() void afficheLCP(SReal *q, SReal **M, int dim) = delete; -SOFA_HELPER_API SOFA_LCPCALC_AFFICHELCP_DISABLED() void afficheLCP(SReal *q, SReal **M, SReal *f, int dim) = delete; +SOFA_HELPER_API int solveLCP(int, SReal *, SReal **, SReal *); SOFA_HELPER_API void printSyst(SReal* q, SReal** M, int* base, SReal** mat, int dim); SOFA_HELPER_API void printLCP(SReal* q, SReal** M, int dim); SOFA_HELPER_API void printLCP(SReal* q, SReal** M, SReal* f, int dim);