#include <boost/python.hpp>
#include "G4BooleanSolid.hh"
Go to the source code of this file.
void export_G4BooleanSolid |
( |
| ) |
|
Definition at line 39 of file pyG4BooleanSolid.cc.
Referenced by BOOST_PYTHON_MODULE().
41 class_<G4BooleanSolid, G4BooleanSolid*, bases<G4VSolid>, boost::noncopyable>
42 (
"G4BooleanSolid",
"boolean solid class", no_init)
44 .def(
"GetCubVolStatistics", &G4BooleanSolid::GetCubVolStatistics)
45 .def(
"GetCubVolEpsilon", &G4BooleanSolid::GetCubVolEpsilon)
46 .def(
"SetCubVolStatistics", &G4BooleanSolid::SetCubVolStatistics)
47 .def(
"SetCubVolEpsilon", &G4BooleanSolid::SetCubVolEpsilon)
48 .def(
"GetAreaStatistics", &G4BooleanSolid::GetAreaStatistics)
49 .def(
"GetAreaAccuracy", &G4BooleanSolid::GetAreaAccuracy)
50 .def(
"SetAreaStatistics", &G4BooleanSolid::SetAreaStatistics)
51 .def(
"SetAreaAccuracy", &G4BooleanSolid::SetAreaAccuracy)
52 .def(
"GetPointOnSurface", &G4BooleanSolid::GetPointOnSurface)