From c3cfa4f8aa085a38e6ea2e572efb8454bc2ee7ab Mon Sep 17 00:00:00 2001 From: Hugo Talbot Date: Tue, 27 Feb 2024 16:15:47 +0100 Subject: [PATCH] Fix scenes using resolutionMethod data --- examples/python3/Cochlear-Implant-Insertion/Scene_Cochlea.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python3/Cochlear-Implant-Insertion/Scene_Cochlea.py b/examples/python3/Cochlear-Implant-Insertion/Scene_Cochlea.py index 3bfc94fb9..146416c22 100644 --- a/examples/python3/Cochlear-Implant-Insertion/Scene_Cochlea.py +++ b/examples/python3/Cochlear-Implant-Insertion/Scene_Cochlea.py @@ -15,7 +15,7 @@ def createScene(rootNode): rootNode.addObject('DefaultVisualManagerLoop') rootNode.addObject('FreeMotionAnimationLoop') - rootNode.addObject('GenericConstraintSolver', tolerance="1e-3", maxIterations="5000", unbuilt="false") + rootNode.addObject('GenericConstraintSolver', tolerance="1e-3", maxIterations="5000", resolutionMethod="UnbuiltGaussSeidel") rootNode.addObject('CollisionPipeline', depth="6", verbose="0", draw="1") rootNode.addObject('BruteForceBroadPhase', name='N2') rootNode.addObject('BVHNarrowPhase')