From ce0402f1cd07572ab59acd9656f5a7e349ac66bb Mon Sep 17 00:00:00 2001 From: afernand Date: Fri, 29 Nov 2024 10:45:22 +0100 Subject: [PATCH] fix: Example 10 error --- examples/gallery/10_wheel_ground_contact_patch.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/examples/gallery/10_wheel_ground_contact_patch.py b/examples/gallery/10_wheel_ground_contact_patch.py index 246657197c..7b725c4361 100644 --- a/examples/gallery/10_wheel_ground_contact_patch.py +++ b/examples/gallery/10_wheel_ground_contact_patch.py @@ -97,6 +97,16 @@ mesh_util.read(wheel_ground_file) + +################### +# Visualize results +# ================= +# .. code-block:: python +# +# display = PrimePlotter() +# display.plot(model, scope=prime.ScopeDefinition(model, label_expression="ground, wheel")) +# display.show() + display = PrimePlotter() display.plot(model, scope=prime.ScopeDefinition(model, label_expression="ground, wheel")) display.show()