~ubuntu-branches/ubuntu/vivid/regina-normal/vivid

« back to all changes in this revision

Viewing changes to python/surfaces/nnormalsurface.cpp

  • Committer: Package Import Robot
  • Author(s): Ben Burton
  • Date: 2014-08-29 17:37:46 UTC
  • mfrom: (19.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20140829173746-igmqc9b67y366a7u
Tags: 4.96-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 *  Regina - A Normal Surface Theory Calculator                           *
5
5
 *  Python Interface                                                      *
6
6
 *                                                                        *
7
 
 *  Copyright (c) 1999-2013, Ben Burton                                   *
 
7
 *  Copyright (c) 1999-2014, Ben Burton                                   *
8
8
 *  For further details contact Ben Burton (bab@debian.org).              *
9
9
 *                                                                        *
10
10
 *  This program is free software; you can redistribute it and/or         *
160
160
        .def("writeRawVector", writeRawVector_stdio)
161
161
        .def("isEmpty", &NNormalSurface::isEmpty)
162
162
        .def("isCompact", &NNormalSurface::isCompact)
 
163
        .def("getEulerChar", &NNormalSurface::getEulerChar)
163
164
        .def("getEulerCharacteristic", &NNormalSurface::getEulerCharacteristic)
164
165
        .def("isOrientable", &NNormalSurface::isOrientable)
165
166
        .def("isTwoSided", &NNormalSurface::isTwoSided)
182
183
        .def("locallyCompatible", &NNormalSurface::locallyCompatible)
183
184
        .def("disjoint", &NNormalSurface::disjoint)
184
185
#ifndef EXCLUDE_NORMALIZ
185
 
        .def("boundarySlopes", &NNormalSurface::boundarySlopes,
 
186
        .def("boundaryIntersections", &NNormalSurface::boundaryIntersections,
186
187
            return_value_policy<manage_new_object>())
187
188
#endif
188
189
        .def("findNonTrivialSphere", &NNormalSurface::findNonTrivialSphere,