Skip to content

Commit

Permalink
script folder
Browse files Browse the repository at this point in the history
  • Loading branch information
markus-stoll committed Dec 5, 2023
1 parent 9594db7 commit 653e1d1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/gemerate_test_data.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""script code to generate test data"""
import math

if __name__ == "__main__":
for i in range(15):
sq_i = math.sqrt(i)
print(f"vtx{i:02d}, {(i % 2) == 0}, {(i % 3) == 0}, {i * i}, {sq_i}")

0 comments on commit 653e1d1

Please sign in to comment.