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