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

« back to all changes in this revision

Viewing changes to datasrc/pics/cuyopov.inc

  • 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
 
#ifndef(Eigene_Kamera)
20
 
 
21
 
  camera {
22
 
    orthographic
23
 
    location -100*z
24
 
    direction z
25
 
    right Breite*x
26
 
    up Hoehe*y
27
 
  }
28
 
 
29
 
#end
30
 
 
31
 
 
32
 
 
33
 
#ifdef(Nur_Umriss)
34
 
 
35
 
  #macro Textur(T)
36
 
    texture {pigment {rgb 1} finish {ambient 1}}
37
 
  #end
38
 
 
39
 
#else
40
 
 
41
 
  background {rgb Hintergrund}
42
 
 
43
 
  #ifdef(Dreifachlicht)
44
 
    light_source {<-1,1,-1>*10000 1 parallel point_at 0}
45
 
    light_source {<0,-1,-1>*10000 1/3 parallel point_at 0}
46
 
    light_source {<1,0,-1>*10000 1/3 parallel point_at 0}
47
 
  #else
48
 
    #ifndef(Eigenes_Licht)
49
 
      light_source {<-1,2,-3>*10000 1 parallel point_at 0}
50
 
    #end
51
 
  #end
52
 
 
53
 
  #macro Textur(T)
54
 
    texture{T}
55
 
  #end
56
 
 
57
 
#end
58