bricolages...

This commit is contained in:
tTh
2023-02-11 12:19:00 +01:00
parent 43202ab62e
commit a47c1f6d7a
10 changed files with 89 additions and 22 deletions

15
code/awk/mkunion.awk Normal file → Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/awk -f
BEGIN {
print "#declare Bubules = object"
print "{ \nunion { "
}
{
printf(" sphere { <%f, %f, %f>, %f }\n", \
$1, $2, $3, $4 )
}
END {
}