Skip to content
Snippets Groups Projects
Commit 0e4c3de4 authored by valerio's avatar valerio
Browse files

Added missing exports

git-svn-id: https://dng.biozentrum.unibas.ch/svn/openstructure/trunk@2674 5a81b35b-ba03-0410-adc8-b2c5c5119f08
parent 96b3e2ee
No related branches found
No related tags found
No related merge requests found
......@@ -95,6 +95,8 @@ void export_Chain()
.add_property("bounds", &ChainHandle::GetBounds)
.def("GetGeometricStart", geom_start<ChainHandle>)
.def("GetGeometricEnd", geom_end<ChainHandle>)
.def(self==self)
.def(self!=self)
;
class_<ChainHandleList>("ChainHandleList", no_init)
......
......@@ -104,6 +104,8 @@ void export_ChainView()
.def("GetGeometricEnd", geom_end<ChainView>)
.def("GetBounds", &ChainView::GetBounds)
.add_property("bounds", &ChainView::GetBounds)
.def(self==self)
.def(self!=self)
;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment