~jtaylor/ubuntu/oneiric/soya/fix-780305

« back to all changes in this revision

Viewing changes to _soya.pyx

  • Committer: Bazaar Package Importer
  • Author(s): Marc Dequènes (Duck)
  • Date: 2005-01-30 09:55:06 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050130095506-f21p6v6cgaobhn5j
Tags: 0.9.2-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Soya 3D
 
2
# Copyright (C) 2003 Jean-Baptiste LAMY -- jiba@tuxfamily.org
 
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
# Import base C lib
 
19
include "c.pxd"
 
20
include "python.pxd"
 
21
#include "c_opengl.pxd"
 
22
#include "sdl.pxd"
 
23
 
 
24
# Still in C :-(
 
25
#include "chunk.pxd"
 
26
 
 
27
# Pyrex base module
 
28
include "base.pyx"
 
29
 
 
30
# Still in C :-(
 
31
#include "matrix.pxd"
 
32
 
 
33
# Pyrex modules
 
34
include "init.pyx"
 
35
include "math3d.pyx"
 
36
include "renderer.pyx"
 
37
include "idler.pyx"
 
38
 
 
39
include "soya3d/atmosphere.pyx"
 
40
include "soya3d/raypick.pyx"
 
41
include "soya3d/coordsyst.pyx"
 
42
include "soya3d/volume.pyx"
 
43
include "soya3d/world.pyx"
 
44
include "soya3d/light.pyx"
 
45
include "soya3d/camera.pyx"
 
46
include "soya3d/portal.pyx"
 
47
include "soya3d/traveling_camera.pyx"
 
48
 
 
49
include "model/image.pyx"
 
50
include "model/material.pyx"
 
51
include "model/face.pyx"
 
52
include "model/shape.pyx"
 
53
include "model/cellshading.pyx"
 
54
include "model/tree.pyx"
 
55
include "model/sprite.pyx"
 
56
include "model/particle.pyx"
 
57
include "model/land.pyx"
 
58
include "model/watercube.pyx"
 
59
include "model/shapifier.pyx"
 
60
 
 
61
# Cal3D stuff
 
62
#include "cal3d/cal3d.pxd"
 
63
include "cal3d/shape.pyx"
 
64
include "cal3d/volume.pyx"
 
65
 
 
66
# Text stuff
 
67
#include "text/freetype.pxd"
 
68
include "text/text.pyx"