Skip to content

Instantly share code, notes, and snippets.

@gavrielstate
Created December 3, 2020 18:40
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save gavrielstate/a4b8910787c15fffbd4970c0ba862d60 to your computer and use it in GitHub Desktop.
Save gavrielstate/a4b8910787c15fffbd4970c0ba862d60 to your computer and use it in GitHub Desktop.
Tet file generation example for Isaac Gym Soft Body meshes using fTetWild
"""
Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
NVIDIA CORPORATION and its licensors retain all intellectual property
and proprietary rights in and to this software, related documentation
and any modifications thereto. Any use, reproduction, disclosure or
distribution of this software and related documentation without an express
license agreement from NVIDIA CORPORATION is strictly prohibited.
Tet file generation example for Isaac Gym Soft Body meshes using fTetWild
"""
mesh_file = open("hollow_flask.mesh", "r")
tet_output = open("hollow_flask.stl.tet", "w")
mesh_lines = list(mesh_file)
mesh_lines = [line.strip('\n') for line in mesh_lines]
vertices_start = mesh_lines.index('Vertices')
num_vertices = mesh_lines[vertices_start + 1]
vertices = mesh_lines[vertices_start + 2: vertices_start + 2 + int(num_vertices)]
tetrahedra_start = mesh_lines.index('Tetrahedra')
num_tetrahedra = mesh_lines[tetrahedra_start + 1]
tetrahedra = mesh_lines[tetrahedra_start + 2 : tetrahedra_start + 2 + int(num_tetrahedra)]
print(num_vertices, num_tetrahedra)
# Write to tet output
tet_output.write("# Tetrahedral mesh generated using\n\n")
tet_output.write("# " + num_vertices + " vertices\n")
for v in vertices:
tet_output.write("v " + v + "\n")
tet_output.write("\n")
tet_output.write("# " + num_tetrahedra + " tetrahedra\n")
for t in tetrahedra:
l = t.split(' 0')[0]
l = l.split(" ")
l = [str(int(k) - 1) for k in l]
l_text = ' '.join(l)
tet_output.write("t " + l_text + "\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment