16 lines
183 B
Awk
Executable File
16 lines
183 B
Awk
Executable File
#!/usr/bin/awk -f
|
|
|
|
BEGIN {
|
|
print "#declare Bubules = object"
|
|
print "{ \nunion { "
|
|
}
|
|
|
|
{
|
|
printf(" sphere { <%f, %f, %f>, %f }\n", \
|
|
$1, $2, $3, $4 )
|
|
}
|
|
|
|
END {
|
|
|
|
}
|