finished the first awk example

This commit is contained in:
tTh
2024-09-16 03:21:41 +02:00
parent 0ee9005885
commit 28933d542c
2 changed files with 51 additions and 5 deletions

View File

@@ -1,15 +1,18 @@
#!/usr/bin/awk -f
# create the sdl object: an union of sphere
BEGIN {
print "#declare Bubules = object"
print "{ \nunion { "
}
# active portion of the code
{
printf(" sphere { <%f, %f, %f>, %f }\n", \
$1, $2, $3, $4 )
}
# closing sdl structure
END {
print " }\n}\n"
}