git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@709 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-14 13:17:17 +00:00
parent f3dbd3ebcc
commit 77c73e4f01
7 changed files with 20 additions and 3 deletions

View File

@@ -75,12 +75,20 @@ light_source {
parallel point_at <0, 0, 0>
}
#ifndef(FAR)
#declare FAR = 1;
#end
#ifndef(Y)
#declare Y = 0;
#end
#ifndef(BASE)
camera {
location <1.5, 2.5, -10>
look_at <0, 0.75, 0>
location <1.5 * FAR, 2.5 + Y, -10 * FAR>
look_at <0, 0.75 + Y, 0>
angle 35
up <0, 1, 0>
right <1, 0, 0>
right image_width / image_height * x
}
#end