2025-10-07 07:38:24 +00:00
|
|
|
#declare BASE = 1;
|
2025-11-02 00:07:28 +00:00
|
|
|
#include "resource/logo/logo.pov"
|
2025-10-07 07:38:24 +00:00
|
|
|
|
2026-04-27 13:00:35 +09:00
|
|
|
#ifdef(VERSION)
|
2026-04-27 12:59:01 +09:00
|
|
|
object {
|
|
|
|
|
text {
|
|
|
|
|
ttf "resource/font/IBMPlexSerif.ttf",
|
2026-04-27 13:00:35 +09:00
|
|
|
VERSION,
|
2026-04-27 12:59:01 +09:00
|
|
|
1, 0
|
|
|
|
|
}
|
|
|
|
|
scale 5
|
2026-04-27 13:07:56 +09:00
|
|
|
translate <7.5, 0, 1>
|
2026-04-27 12:59:01 +09:00
|
|
|
pigment {
|
|
|
|
|
color Red
|
|
|
|
|
}
|
|
|
|
|
finish {
|
|
|
|
|
phong 1
|
|
|
|
|
reflection 0.3
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#end
|
|
|
|
|
|
2025-10-07 07:38:24 +00:00
|
|
|
object {
|
|
|
|
|
text {
|
2025-11-02 00:04:39 +00:00
|
|
|
ttf "resource/font/IBMPlexSerif.ttf",
|
2026-04-19 06:17:13 +09:00
|
|
|
#ifdef(NODEJS)
|
|
|
|
|
"for Node.JS",
|
|
|
|
|
#else
|
2025-10-07 07:38:24 +00:00
|
|
|
"Milsko Toolkit",
|
2026-04-19 06:17:13 +09:00
|
|
|
#end
|
2025-10-07 07:38:24 +00:00
|
|
|
1, 0
|
|
|
|
|
}
|
|
|
|
|
scale 2
|
2026-04-19 06:17:13 +09:00
|
|
|
#ifdef(NODEJS)
|
|
|
|
|
translate <5, -1, -1>
|
|
|
|
|
#else
|
2025-10-07 07:38:24 +00:00
|
|
|
translate <2.5, -1, -1>
|
2026-04-19 06:17:13 +09:00
|
|
|
#end
|
2025-10-07 07:38:24 +00:00
|
|
|
pigment {
|
|
|
|
|
color White
|
|
|
|
|
}
|
|
|
|
|
finish {
|
|
|
|
|
phong 1
|
|
|
|
|
reflection 0.3
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
camera {
|
2025-10-23 18:33:06 +00:00
|
|
|
location <8+5, 2.5, -37.5>
|
2025-10-23 18:28:10 +00:00
|
|
|
look_at <7, 0.75, 0>
|
2025-10-07 07:38:24 +00:00
|
|
|
angle 35
|
|
|
|
|
up <0, 1, 0>
|
2025-10-22 10:09:24 +00:00
|
|
|
right image_width / image_height * x
|
2025-10-07 07:38:24 +00:00
|
|
|
}
|