~ubuntu-branches/ubuntu/quantal/python-demgengeo/quantal

« back to all changes in this revision

Viewing changes to Python/HexAggregateShapePy.cc

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2011-11-18 21:47:18 UTC
  • Revision ID: package-import@ubuntu.com-20111118214718-4ysqm3dhpqwdd7gd
Tags: upstream-0.99~bzr106
ImportĀ upstreamĀ versionĀ 0.99~bzr106

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////
 
2
//                                                         //
 
3
// Copyright (c) 2007-2011 by The University of Queensland //
 
4
// Earth Systems Science Computational Centre (ESSCC)      //
 
5
// http://www.uq.edu.au/esscc                              //
 
6
//                                                         //
 
7
// Primary Business: Brisbane, Queensland, Australia       //
 
8
// Licensed under the Open Software License version 3.0    //
 
9
// http://www.opensource.org/licenses/osl-3.0.php          //
 
10
//                                                         //
 
11
/////////////////////////////////////////////////////////////
 
12
 
 
13
#include <boost/version.hpp>
 
14
#include "HexAggregateShapePy.h"
 
15
 
 
16
using namespace boost::python;
 
17
 
 
18
void exportHexAggregateShape ()
 
19
{
 
20
  // Check that Boost 1.34.0 or higher is being used.
 
21
  // If so, disable auto-generation of C++ signatures for Epydoc
 
22
  // (which stumbles over indentation in the auto-generated strings).
 
23
  #if ((BOOST_VERSION / 100000 >= 1) \
 
24
      && (BOOST_VERSION / 100 % 1000 >= 34)) \
 
25
      || (BOOST_VERSION / 100000 >= 2)
 
26
    boost::python::docstring_options no_autogen(true,false);
 
27
  #endif
 
28
 
 
29
      class_<HexAggregateShape>(
 
30
        "HexAggregateShape",
 
31
        "A hexahedral aggregate shape, to be inserted into a packing via a L{ShapeList}\n",
 
32
        init<>()
 
33
      )
 
34
      .def(
 
35
        "setBias",
 
36
        &HexAggregateShape::bias,
 
37
        ( arg("i") ),
 
38
        "Sets the bias of the shape (how often it should occur)\n"
 
39
        "@type i: int\n"
 
40
        "@kwarg i: the bias as any integer\n"
 
41
      )
 
42
      ;
 
43
}