logo
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@190 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
parent
1a30829f03
commit
9fd499e8dd
3 changed files with 71 additions and 0 deletions
BIN
logo.png
Normal file
BIN
logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.5 KiB |
68
tools/logo.pov
Normal file
68
tools/logo.pov
Normal file
|
|
@ -0,0 +1,68 @@
|
||||||
|
// $Id$
|
||||||
|
#include "shapes.inc"
|
||||||
|
#include "colors.inc"
|
||||||
|
|
||||||
|
object {
|
||||||
|
Cube
|
||||||
|
translate <-1, 0, 1>
|
||||||
|
pigment {
|
||||||
|
color Red
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
object {
|
||||||
|
Cube
|
||||||
|
translate <1, 0, 1>
|
||||||
|
pigment {
|
||||||
|
color Green
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
object {
|
||||||
|
Cube
|
||||||
|
translate <-1, 0, -1>
|
||||||
|
pigment {
|
||||||
|
color Blue
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
object {
|
||||||
|
Cube
|
||||||
|
translate <1, 0, -1>
|
||||||
|
pigment {
|
||||||
|
color Cyan
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
object {
|
||||||
|
Cube
|
||||||
|
translate <0, 2, 0>
|
||||||
|
pigment {
|
||||||
|
color Red
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
plane {
|
||||||
|
y, -1
|
||||||
|
pigment {
|
||||||
|
checker Red Gray
|
||||||
|
}
|
||||||
|
finish {
|
||||||
|
phong 1
|
||||||
|
reflection 0.5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
light_source {
|
||||||
|
<-250, 250, -500>
|
||||||
|
color White
|
||||||
|
parallel point_at <0, 0, 0>
|
||||||
|
}
|
||||||
|
|
||||||
|
camera {
|
||||||
|
location <1.5, 2.5, -10>
|
||||||
|
look_at <0, 0.75, 0>
|
||||||
|
angle 35
|
||||||
|
up <0, 1, 0>
|
||||||
|
right <1, 0, 0>
|
||||||
|
}
|
||||||
3
tools/logo.sh
Executable file
3
tools/logo.sh
Executable file
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# $Id$
|
||||||
|
povray +W256 +H256 +Ologo.png tools/logo.pov
|
||||||
Loading…
Add table
Add a link
Reference in a new issue