the caturday's really big commit

This commit is contained in:
tTh
2024-09-28 20:25:02 +02:00
parent dfede4a816
commit a1c0fddd17
38 changed files with 603 additions and 265 deletions

1
code/POV/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.png

3
code/POV/Makefile Normal file
View File

@@ -0,0 +1,3 @@
hello.png: hello.pov Makefile
povray -I$< -o$@ -W640 -H0 -Q0

0
code/POV/README.md Normal file
View File

8
code/POV/hello.pov Normal file
View File

@@ -0,0 +1,8 @@
/* HELLO.POV */
#version 3.7;
global_settings { assumed_gamma 1.0 }
#include "colors.inc"
plane { y, 0 }
sphere { <0, 0.50, 0>, 0.333 }
light_source { <-210, 350, -530> color rgb <1, 1, 1>}