Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cosseratObject.py #139

Merged
merged 1 commit into from
Nov 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions examples/python3/cosserat/cosseratObject.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,7 @@ def createScene(rootNode):
rootNode.addObject(
"RequiredPlugin",
name="plugins",
pluginName=[
pluginList,
["SofaEngine", "SofaLoader", "SofaSimpleFem", "SofaExporter"],
],
pluginName=pluginList,
)
rootNode.addObject(
"VisualStyle",
Expand All @@ -376,13 +373,11 @@ def createScene(rootNode):
)
solverNode.addObject("GenericConstraintCorrection")

cosserat = solverNode.addChild(
Cosserat(
parent=solverNode,
cosseratGeometry=cosserat_config,
name="cosserat",
radius=0.15,
)
cosserat = Cosserat(
parent=solverNode,
cosseratGeometry=cosserat_config,
name="cosserat",
radius=0.15,
)

# use this to add the collision if the beam will interact with another object
Expand Down
Loading