~ubuntu-branches/ubuntu/wily/pygts/wily

« back to all changes in this revision

Viewing changes to .pc/fix_examples.patch/examples/polyhedrons.py

  • Committer: Package Import Robot
  • Author(s): Anton Gladky, Václav Šmilauer
  • Date: 2013-01-26 21:22:37 UTC
  • Revision ID: package-import@ubuntu.com-20130126212237-5l783abxeg1k9iuh
Tags: 0.3.1-1
[ Václav Šmilauer ]
Initial debian package. (Closes: #691799)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
 
 
3
"""polyhedrons.py - plots some polyhedrons
 
4
 
 
5
  Copyright (C) 2009 Thomas J. Duck
 
6
  All rights reserved.
 
7
 
 
8
  Thomas J. Duck <tom.duck@dal.ca>
 
9
  Department of Physics and Atmospheric Science,
 
10
  Dalhousie University, Halifax, Nova Scotia, Canada, B3H 3J5
 
11
 
 
12
NOTICE
 
13
 
 
14
  This library is free software; you can redistribute it and/or
 
15
  modify it under the terms of the GNU Library General Public
 
16
  License as published by the Free Software Foundation; either
 
17
  version 2 of the License, or (at your option) any later version.
 
18
 
 
19
  This library is distributed in the hope that it will be useful,
 
20
  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
21
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
22
  Library General Public License for more details.
 
23
 
 
24
  You should have received a copy of the GNU Library General Public
 
25
  License along with this library; if not, write to the
 
26
  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
27
  Boston, MA 02111-1307, USA.
 
28
"""
 
29
 
 
30
import gts
 
31
from enthought.mayavi import mlab
 
32
 
 
33
s1 = gts.tetrahedron()
 
34
 
 
35
s2 = gts.cube()
 
36
s2.translate(3)
 
37
 
 
38
s3 = gts.sphere(3)
 
39
s3.translate(-3)
 
40
 
 
41
# Plot the surfaces
 
42
 
 
43
def plot_surface(s):
 
44
    x,y,z,t = gts.get_coords_and_face_indices(s,True)
 
45
    mlab.triangular_mesh(x,y,z,t,color=(0.8,0.8,0.8))
 
46
    mlab.triangular_mesh(x,y,z,t,color=(0,0,1),representation='fancymesh',
 
47
                         scale_factor=0.1)
 
48
 
 
49
plot_surface(s1)
 
50
plot_surface(s2)
 
51
plot_surface(s3)
 
52
 
 
53
mlab.show()