Skip to content
Failed

Changes

Summary

  1. [SofaImplicitField] Add getHessian and getGradient to the python binding (#5655) (details)
  2. [GUI.Common] Fix crash when selecting a MechanicalObject<Rigid> (#5699) (details)
  3. [all] Matrix: replace all calls to [i][j] with a single call (i,j) (#5650) (details)
  4. [Examples] Fix MultiStepAnimationLoop scene (#5700) (details)
  5. [GL] DrawToolGL: faster rendering for Frame (#5689) (details)
  6. [Type] Vec: Phase out ctor/assignment from pointers and Vec of different sizes/types (#5675) (details)
  7. [all] Fix out-of-bounds warnings (#5677) (details)
  8. [Examples] Fix RayTraceCollision scene (#5708) (details)
  9. [BaseViewer] Change drawing default value and add a way to deactivate drawing (#5710) (details)
Commit 366f3243645a7afb5f34645d6414794ad29bdc0f by noreply
[SofaImplicitField] Add getHessian and getGradient to the python binding (#5655)

* Add binding for hessian & gradient.

* Add getHessian, getGradient and getValue with an unified API to Binding_ScalarField

I unified the interface so it is conformant with the one from sofa expect for getHessian.

* Update applications/plugins/SofaImplicitField/python/src/Binding_ScalarField.cpp
The file was modified applications/plugins/SofaImplicitField/python/src/Binding_ScalarField.cpp
The file was modified applications/plugins/SofaImplicitField/examples/python/python-scalarfield.py
Commit 034d3d7ed019d606d091928c7c13e61cbde86b5a by noreply
[GUI.Common] Fix crash when selecting a MechanicalObject<Rigid> (#5699)

fix crash when selecting
The file was modified Sofa/GUI/Common/src/sofa/gui/common/BaseViewer.cpp
Commit b0886d2087687f3dd1829a2a740e03e129c07689 by noreply
[all] Matrix: replace all calls to [i][j] with a single call (i,j) (#5650)

* replace in animation loop

* replace in collision

* replace in constraint

* debug: add assertion ;; replace in type

* replace in helper

* replace in linearalgebra

* replace in defaulttype

* replace in core

* compile AnimationLoop

* compile Mapping

* compile LinearSolver

* compile FEM.HyperE

* compile FEM.Elastic

* compile FEM.NonUni

* compile Spring

* compile MechaLoad

* compile Engine

* compile Collision

* compile MT

* compile full Mat

* compile gl

* restore operator []

* restore [] for lines

* Update Sofa/Component/Mapping/Linear/src/sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperMeshTopology.inl

Co-authored-by: Themis Skamagkis <70031729+th-skam@users.noreply.github.com>

* fix typo (from copy paste...)

* forgotten case

* fix tests compilation

* fix bad copy paste

Co-authored-by: Paul Baksic <30337881+bakpaul@users.noreply.github.com>

---------

Co-authored-by: Themis Skamagkis <70031729+th-skam@users.noreply.github.com>
Co-authored-by: Paul Baksic <30337881+bakpaul@users.noreply.github.com>
The file was modified Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/DistanceMultiMapping.inl
The file was modified Sofa/framework/Type/src/sofa/type/Mat.h
The file was modified Sofa/Component/Collision/Detection/Intersection/src/sofa/component/collision/detection/intersection/MeshMinProximityIntersection.h
The file was modified Sofa/Component/Constraint/Projective/tests/FixedPlaneProjectiveConstraint_test.cpp
The file was modified Sofa/Component/SolidMechanics/FEM/HyperElastic/src/sofa/component/solidmechanics/fem/hyperelastic/material/Ogden.h
The file was modified Sofa/framework/LinearAlgebra/src/sofa/linearalgebra/BlockFullMatrix.inl
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/TriangleFEMForceField.inl
The file was modified Sofa/Component/SolidMechanics/FEM/NonUniform/src/sofa/component/solidmechanics/fem/nonuniform/HexahedronCompositeFEMMapping.inl
The file was modified Sofa/Component/MechanicalLoad/src/sofa/component/mechanicalload/InteractionEllipsoidForceField.inl
The file was modified Sofa/framework/Type/src/sofa/type/SpatialVector.inl
The file was modified Sofa/framework/Type/src/sofa/type/Frame.h
The file was modified Sofa/framework/LinearAlgebra/src/sofa/linearalgebra/BTDMatrix.inl
The file was modified Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/DistanceFromTargetMapping.inl
The file was modified Sofa/Component/SolidMechanics/FEM/HyperElastic/src/sofa/component/solidmechanics/fem/hyperelastic/TetrahedronHyperelasticityFEMForceField.inl
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/TriangularFEMForceField.inl
The file was modified Sofa/Component/Mapping/Linear/src/sofa/component/mapping/linear/SkinningMapping.inl
The file was modified Sofa/framework/Type/src/sofa/type/Quat.h
The file was modified Sofa/Component/Constraint/Lagrangian/Solver/src/sofa/component/constraint/lagrangian/solver/GenericConstraintProblem.cpp
The file was modified Sofa/Component/SolidMechanics/FEM/HyperElastic/src/sofa/component/solidmechanics/fem/hyperelastic/material/VerondaWestman.h
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/QuadBendingFEMForceField.inl
The file was modified Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/DistanceMapping.inl
The file was modified Sofa/Component/Engine/Transform/src/sofa/component/engine/transform/TransformPosition.inl
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/DirectionProjectiveConstraint.inl
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/LineProjectiveConstraint.inl
The file was modified Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/SSORPreconditioner.cpp
The file was modified Sofa/Component/Mapping/Linear/src/sofa/component/mapping/linear/BarycentricMappers/BarycentricMapper.inl
The file was modified Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/RigidMapping.inl
The file was modified Sofa/framework/LinearAlgebra/src/sofa/linearalgebra/BaseMatrix.cpp
The file was modified Sofa/Component/Collision/Detection/Intersection/src/sofa/component/collision/detection/intersection/MeshDiscreteIntersection.cpp
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/FastTriangularBendingSprings.inl
The file was modified Sofa/Component/SolidMechanics/FEM/NonUniform/src/sofa/component/solidmechanics/fem/nonuniform/NonUniformHexahedronFEMForceFieldAndMass.inl
The file was modified Sofa/Component/Engine/Transform/src/sofa/component/engine/transform/DisplacementMatrixEngine.inl
The file was modified Sofa/Component/SolidMechanics/FEM/NonUniform/src/sofa/component/solidmechanics/fem/nonuniform/HexahedronCompositeFEMForceFieldAndMass.inl
The file was modified Sofa/framework/Core/src/sofa/core/behavior/ForceField.h
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/GearSpringForceField.h
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/TriangleFEMUtils.inl
The file was modified Sofa/Component/Visual/src/sofa/component/visual/BaseCamera.cpp
The file was modified Sofa/framework/Helper/src/sofa/helper/MatEigen.h
The file was modified Sofa/framework/LinearAlgebra/src/sofa/linearalgebra/EigenSparseMatrix.h
The file was modified Sofa/Component/Collision/Detection/Intersection/src/sofa/component/collision/detection/intersection/MeshNewProximityIntersection.inl
The file was modified Sofa/Component/MechanicalLoad/src/sofa/component/mechanicalload/TaitSurfacePressureForceField.inl
The file was modified Sofa/framework/Type/src/sofa/type/Frame.cpp
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/PartialFixedProjectiveConstraint.inl
The file was modified Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/AugmentedLagrangianResolution.h
The file was modified Sofa/Component/MechanicalLoad/src/sofa/component/mechanicalload/EllipsoidForceField.inl
The file was modified Sofa/framework/Type/src/sofa/type/Mat_solve_LCP.h
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/QuadularBendingSprings.inl
The file was modified Sofa/framework/LinearAlgebra/src/sofa/linearalgebra/BTDMatrix.h
The file was modified Sofa/Component/SolidMechanics/TensorMass/src/sofa/component/solidmechanics/tensormass/TetrahedralTensorMassForceField.inl
The file was modified Sofa/Component/Engine/Generate/src/sofa/component/engine/generate/GenerateRigidMass.inl
The file was modified Sofa/Component/SolidMechanics/FEM/HyperElastic/tests/Material_test.cpp
The file was modified Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/AreaMapping.inl
The file was modified Sofa/Component/Mapping/Linear/src/sofa/component/mapping/linear/BarycentricMappingRigid.inl
The file was modified Sofa/framework/Type/src/sofa/type/DualQuat.h
The file was modified Sofa/Component/Mass/src/sofa/component/mass/DiagonalMass.cpp
The file was modified Sofa/Component/MechanicalLoad/src/sofa/component/mechanicalload/SurfacePressureForceField.inl
The file was modified Sofa/Component/Collision/Detection/Intersection/src/sofa/component/collision/detection/intersection/RayDiscreteIntersection.cpp
The file was modified Sofa/Component/Engine/Transform/src/sofa/component/engine/transform/ProjectiveTransformEngine.inl
The file was modified Sofa/Component/SolidMechanics/FEM/HyperElastic/src/sofa/component/solidmechanics/fem/hyperelastic/material/MooneyRivlin.h
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/SpringForceField.inl
The file was modified Sofa/Component/Collision/Geometry/src/sofa/component/collision/geometry/TetrahedronModel.cpp
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/RepulsiveSpringForceField.inl
The file was modified Sofa/framework/DefaultType/src/sofa/defaulttype/RigidCoord.h
The file was modified Sofa/framework/Type/src/sofa/type/DualQuat.inl
The file was modified Sofa/Component/MechanicalLoad/src/sofa/component/mechanicalload/SurfacePressureForceField.cpp
The file was modified Sofa/framework/Geometry/src/sofa/geometry/proximity/SegmentTriangle.h
The file was modified Sofa/Component/Collision/Detection/Intersection/src/sofa/component/collision/detection/intersection/LocalMinDistance.cpp
The file was modified Sofa/framework/Type/src/sofa/type/Quat.inl
The file was modified Sofa/Component/SolidMechanics/FEM/HyperElastic/src/sofa/component/solidmechanics/fem/hyperelastic/material/BoyceAndArruda.h
The file was modified Sofa/framework/Type/src/sofa/type/MatSym.h
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/TriangularBendingSprings.inl
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/PolynomialSpringsForceField.inl
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/FastTetrahedralCorotationalForceField.inl
The file was modified Sofa/framework/Helper/src/sofa/helper/decompose.inl
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/HexahedronFEMForceFieldAndMass.inl
The file was modified Sofa/framework/DefaultType/src/sofa/defaulttype/SolidTypes.inl
The file was modified Sofa/Component/SolidMechanics/FEM/HyperElastic/src/sofa/component/solidmechanics/fem/hyperelastic/material/StableNeoHookean.h
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/BeamFEMForceField.inl
The file was modified Sofa/Component/SolidMechanics/FEM/HyperElastic/src/sofa/component/solidmechanics/fem/hyperelastic/StandardTetrahedralFEMForceField.inl
The file was modified Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.inl
The file was modified Sofa/Component/SolidMechanics/FEM/HyperElastic/src/sofa/component/solidmechanics/fem/hyperelastic/material/NeoHookean.h
The file was modified Sofa/framework/Core/src/sofa/core/MatrixAccumulator.cpp
The file was modified Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/UnilateralConstraintResolution.h
The file was modified Sofa/Component/Mapping/Linear/src/sofa/component/mapping/linear/BarycentricMappers/BarycentricMapperMeshTopology.inl
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/HexahedralFEMForceField.inl
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/JointSpringForceField.inl
The file was modified Sofa/framework/Core/src/sofa/core/behavior/BlocMatrixWriter.h
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/TetrahedronFEMForceField.inl
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/GearSpringForceField.inl
The file was modified Sofa/framework/Helper/src/sofa/helper/GenerateRigid.h
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/TriangularAnisotropicFEMForceField.inl
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/TetrahedralCorotationalFEMForceField.inl
The file was modified Sofa/framework/Type/src/sofa/type/Transform.inl
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/PlaneProjectiveConstraint.inl
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/HexahedralFEMForceFieldAndMass.inl
The file was modified applications/plugins/MultiThreading/src/MultiThreading/component/solidmechanics/fem/elastic/ParallelTetrahedronFEMForceField.inl
The file was modified Sofa/Component/AnimationLoop/src/sofa/component/animationloop/ConstraintAnimationLoop.cpp
The file was modified Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/PrecomputedConstraintCorrection.inl
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/HexahedronFEMForceField.inl
The file was modified Sofa/Component/SolidMechanics/FEM/Elastic/src/sofa/component/solidmechanics/fem/elastic/TriangularFEMForceFieldOptim.inl
The file was modified Sofa/Component/Mapping/Linear/src/sofa/component/mapping/linear/BeamLinearMapping.inl
The file was modified Sofa/Component/Constraint/Lagrangian/Correction/src/sofa/component/constraint/lagrangian/correction/UncoupledConstraintCorrection.cpp
The file was modified Sofa/Component/Mass/src/sofa/component/mass/UniformMass.cpp
The file was modified Sofa/Component/SolidMechanics/FEM/NonUniform/src/sofa/component/solidmechanics/fem/nonuniform/NonUniformHexahedralFEMForceFieldAndMass.inl
The file was modified Sofa/framework/LinearAlgebra/src/sofa/linearalgebra/matrix_bloc_traits.h
The file was modified Sofa/Component/Collision/Detection/Intersection/src/sofa/component/collision/detection/intersection/MeshMinProximityIntersection.cpp
The file was modified Sofa/framework/Type/src/sofa/type/Mat_solve_Cholesky.h
The file was modified Sofa/Component/SolidMechanics/FEM/HyperElastic/src/sofa/component/solidmechanics/fem/hyperelastic/material/Costa.h
The file was modified Sofa/GL/Component/Shader/src/sofa/gl/component/shader/OglVariable.cpp
The file was modified Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.inl
The file was modified Sofa/Component/Constraint/Lagrangian/Model/src/sofa/component/constraint/lagrangian/model/BilateralConstraintResolution.h
Commit 5007b6dc27661cddbcb3becee9de3874f9ab8180 by noreply
[Examples] Fix MultiStepAnimationLoop scene (#5700)

make the multistepanimationloop scene work again

Co-authored-by: Paul Baksic <30337881+bakpaul@users.noreply.github.com>
The file was modified examples/Component/AnimationLoop/MultiStepAnimationLoop.scn
Commit f79f8aef428e6307856cbbab78ebf91f0bc53ff4 by noreply
[GL] DrawToolGL: faster rendering for Frame (#5689)

* faster way to render a frame in legacy opengl

* clean and use buffers

* add example rendering lots of frames

* rename

* correct lengths

* Apply suggestions from code review

Co-authored-by: Paul Baksic <30337881+bakpaul@users.noreply.github.com>

* fix compilation for clang

* use fast approx version of cos/sin

* restore unrelated files

---------

Co-authored-by: Paul Baksic <30337881+bakpaul@users.noreply.github.com>
The file was addedexamples/Benchmark/Render/ManyFrames.scn
The file was modified Sofa/GL/src/sofa/gl/DrawToolGL.cpp
The file was modified Sofa/GL/CMakeLists.txt
The file was addedSofa/GL/src/sofa/gl/Frame.cpp
The file was addedSofa/GL/src/sofa/gl/Frame.h
Commit 7d7fef7eb467fedd17359db63236677b3c0d3150 by noreply
[Type] Vec: Phase out ctor/assignment from pointers and Vec of different sizes/types (#5675)

* wip

* wip

* wip

* explicit conversion for vec3 (draw usually)

* explicit conversion for other cases of assignments

* ctors too

* use dedicated macros

* fix stl binary read

* change toVecN signature, and add an other convenience function taking the output type as template

* add unit tests

* add the possibility to fill with something else than 0

* put the filler as arg, not template ; as older clangs dont support non-type template parameters of floating-point types
The file was modified Sofa/framework/Geometry/test/Triangle_test.cpp
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/PointProjectiveConstraint.inl
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/SpringForceField.inl
The file was modified Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/HexahedronSetGeometryAlgorithms.inl
The file was modified Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/EdgeSetGeometryAlgorithms.inl
The file was modified Sofa/Component/Visual/src/sofa/component/visual/Visual3DText.h
The file was modified Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/RigidMapping.inl
The file was modified Sofa/GL/Component/Rendering3D/src/sofa/gl/component/rendering3d/DataDisplay.h
The file was modified Sofa/Component/Mapping/Linear/src/sofa/component/mapping/linear/CenterOfMassMapping.inl
The file was modified Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/QuadSetGeometryAlgorithms.inl
The file was modified Sofa/Component/Visual/src/sofa/component/visual/Visual3DText.cpp
The file was modified Sofa/Component/Engine/Transform/src/sofa/component/engine/transform/TransformPosition.inl
The file was modified Sofa/Component/Mass/src/sofa/component/mass/DiagonalMass.inl
The file was modified Sofa/Component/Mass/src/sofa/component/mass/UniformMass.inl
The file was modified Sofa/framework/Type/src/sofa/type/Vec.h
The file was modified Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/PointSetGeometryAlgorithms.inl
The file was modified Sofa/framework/Type/src/sofa/type/config.h.in
The file was modified Sofa/Component/Mapping/NonLinear/src/sofa/component/mapping/nonlinear/DistanceFromTargetMapping.inl
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/RegularGridSpringForceField.inl
The file was modified Sofa/framework/Type/test/VecTypes_test.cpp
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/PartialLinearMovementProjectiveConstraint.inl
The file was modified Sofa/GL/Component/Rendering2D/src/sofa/gl/component/rendering2d/OglViewport.h
The file was modified Sofa/GL/Component/Shader/src/sofa/gl/component/shader/OglShaderVisualModel.cpp
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/DirectionProjectiveConstraint.inl
The file was modified Sofa/Component/SolidMechanics/FEM/NonUniform/src/sofa/component/solidmechanics/fem/nonuniform/HexahedronCompositeFEMMapping.h
The file was modified Sofa/Component/StateContainer/src/sofa/component/statecontainer/MechanicalObject.cpp
The file was modified Sofa/Component/Visual/src/sofa/component/visual/VisualGrid.cpp
The file was modified Sofa/Component/LinearSystem/src/sofa/component/linearsystem/matrixaccumulators/BaseAssemblingMatrixAccumulator.h
The file was modified Sofa/framework/DefaultType/src/sofa/defaulttype/RigidDeriv.h
The file was modified Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/TriangleSetGeometryAlgorithms.inl
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/PlaneProjectiveConstraint.inl
The file was modified Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/TetrahedronSetGeometryAlgorithms.inl
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/LinearMovementProjectiveConstraint.inl
The file was modified Sofa/Component/IO/Mesh/src/sofa/component/io/mesh/MeshVTKLoader.cpp
The file was modified Sofa/Component/Mass/src/sofa/component/mass/UniformMass.cpp
The file was modified Sofa/Component/Visual/src/sofa/component/visual/VisualModelImpl.cpp
The file was modified Sofa/Component/Mass/src/sofa/component/mass/DiagonalMass.cpp
The file was modified Sofa/GL/src/sofa/gl/glText.inl
The file was modified Sofa/GL/Component/Rendering2D/src/sofa/gl/component/rendering2d/OglViewport.cpp
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/LineProjectiveConstraint.inl
The file was modified Sofa/framework/Core/src/sofa/core/MappingHelper.h
The file was modified Sofa/GL/Component/Rendering3D/src/sofa/gl/component/rendering3d/DataDisplay.cpp
The file was modified Sofa/Component/MechanicalLoad/src/sofa/component/mechanicalload/PlaneForceField.inl
The file was modified Sofa/Component/Visual/src/sofa/component/visual/VisualPointCloud.inl
The file was modified Sofa/Component/IO/Mesh/src/sofa/component/io/mesh/MeshSTLLoader.cpp
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/FixedProjectiveConstraint.inl
The file was modified Sofa/Component/Constraint/Projective/src/sofa/component/constraint/projective/SkeletalMotionProjectiveConstraint.inl
The file was modified Sofa/Component/SolidMechanics/FEM/NonUniform/src/sofa/component/solidmechanics/fem/nonuniform/HexahedronCompositeFEMMapping.inl
The file was modified Sofa/Component/LinearSolver/Preconditioner/src/sofa/component/linearsolver/preconditioner/PrecomputedWarpPreconditioner.inl
Commit a91f7adbefdf397cd99f2392c228390dab3c5172 by noreply
[all] Fix out-of-bounds warnings (#5677)

fix potential out-of-bounds accesses
The file was modified Sofa/Component/Engine/Select/src/sofa/component/engine/select/NearestPointROI.inl
The file was modified Sofa/Component/Topology/Container/Dynamic/tests/TriangleSubdividiers_test.cpp
The file was modified Sofa/Component/SolidMechanics/Spring/src/sofa/component/solidmechanics/spring/RestShapeSpringsForceField.inl
The file was modified Sofa/Component/Topology/Container/Dynamic/src/sofa/component/topology/container/dynamic/TriangleSetGeometryAlgorithms.inl
Commit cdcf84ad8b92183c7ae43283db3b713f8ef614db by noreply
 [Examples] Fix RayTraceCollision scene (#5708)

fix rayintersection scene by decreasing dt

Co-authored-by: erik pernod <erik.pernod@gmail.com>
The file was modified examples/Component/Collision/Detection/RayTraceCollision.scn
Commit 9787ccf2a69bf8d1f9e0d5ee5e791e5d8a73bf6c by noreply
[BaseViewer] Change drawing default value and add a way to deactivate drawing (#5710)

Change drawing default value and add a way to deactivate drawing

Co-authored-by: Hugo <hugo.talbot@sofa-framework.org>
The file was modified Sofa/GUI/Common/src/sofa/gui/common/BaseViewer.cpp
The file was modified Sofa/GUI/Common/src/sofa/gui/common/BaseViewer.h