Make new logo a tad brighter

svn-origin-rev: 15373
This commit is contained in:
Ole Schütt 2015-06-01 20:35:14 +00:00
parent 1036740548
commit 73942e86d3
5 changed files with 3 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 40 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

After

Width:  |  Height:  |  Size: 85 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 186 KiB

After

Width:  |  Height:  |  Size: 174 KiB

Before After
Before After

View file

@ -50,10 +50,10 @@ def gen_povray():
output += '}\n'
for c in coords:
output += "sphere {<%f, %f, %f>, 0.73 \n"%c
output += "sphere { <%f, %f, %f>, 0.73 \n"%c
output += " texture {\n"
output += " finish {Shiny}\n"
output += " pigment {color rgb <1, 0.2, 0>}\n"
output += " finish { Shiny ambient 0.3 }\n"
output += " pigment { color rgb <1, 0.2, 0> }\n"
output += " }\n"
output += "}\n"
@ -64,5 +64,4 @@ def gen_povray():
#-------------------------------------------------------------------------------
main()
#EOF