Skip to content

Commit

Permalink
doc: small addition to examples titles for easier understanding of wh…
Browse files Browse the repository at this point in the history
…at is shown
  • Loading branch information
clemens-fricke committed Oct 30, 2024
1 parent 9ff7bcb commit d6ceb0a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/show_faces.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,11 @@
tri.vertices.shape
)
mesh.show_options(arrow_data="coords")
gus.show(["triangles", tri], ["quads", quad])
gus.show(["triangles with arrows", tri], ["quads with arrows", quad])

# point data to origin
for mesh in [tri, quad]:
mesh.show_options(arrow_data_to_origin=True)
gus.show(["triangles", tri], ["quads", quad])
gus.show(
["triangles arrows to origin", tri], ["quads arrows to origin", quad]
)

0 comments on commit d6ceb0a

Please sign in to comment.