~ubuntu-branches/ubuntu/saucy/cuyo/saucy

« back to all changes in this revision

Viewing changes to datasrc/pics/mbUnbunt.pov

  • Committer: Bazaar Package Importer
  • Author(s): Angel Abad
  • Date: 2010-07-19 09:54:44 UTC
  • mfrom: (4.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20100719095444-ecoegzo1vvvdwra9
Tags: 2.~-1.1.brl3-1ubuntu1
* Merge from debian unstable (LP: #607106). Remaining changes:
  - Don't register MimeType=application/x-executable in
    the .desktop file.
  - Remove UTF-8 in the .desktop file
  - 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
    Copyright 2005 by Mark Weyer
3
 
 
4
 
    This program is free software; you can redistribute it and/or modify
5
 
    it under the terms of the GNU General Public License as published by
6
 
    the Free Software Foundation; either version 2 of the License, or
7
 
    (at your option) any later version.
8
 
 
9
 
    This program is distributed in the hope that it will be useful,
10
 
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
    GNU General Public License for more details.
13
 
 
14
 
    You should have received a copy of the GNU General Public License
15
 
    along with this program; if not, write to the Free Software
16
 
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
*/
18
 
 
19
 
#declare Breite1 = 2;
20
 
#declare Hoehe1 = 0;
21
 
#declare Breite0 = 2;
22
 
#declare Hoehe0 = 2;
23
 
 
24
 
#include "bunt.inc"
25
 
 
26
 
 
27
 
#local I=0;
28
 
#while (I<Farben)
29
 
  object {
30
 
    Bunt(I,I,2)
31
 
    translate (2*I-Farben)*x
32
 
  }
33
 
  #local I=I+1;
34
 
#end
35
 
 
36
 
sphere {
37
 
  Farben*x Rad_klein
38
 
  no_shadow
39
 
  Textur(texture {
40
 
    pigment {rgb 1/2}
41
 
    finish {specular 1/3 ambient 1/3}
42
 
  })
43
 
}
44