Skip to content

Commit

Permalink
add show back to CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedh committed Sep 27, 2024
1 parent ba0afbd commit fec34f9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions trimesh/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,21 @@ def main():
else:
scene = load(args.file_name)

summary(scene)

if args.export is not None:
scene.export(args.export)

if args.interact:
return interactive(scene)

scene.show()


def summary(geom):
""" """
print(geom)


def interactive(scene):
"""
Expand Down

0 comments on commit fec34f9

Please sign in to comment.