Skip to content
Snippets Groups Projects
Commit ca978cab authored by Kilian Weishaupt's avatar Kilian Weishaupt Committed by Timo Koch
Browse files

[python][gridGeometry] Add bBoxMax and bBoxMin

parent a2edfae1
No related branches found
No related tags found
1 merge request!2681Feature/python main file
......@@ -132,6 +132,8 @@ void registerGridGeometry(pybind11::handle scope, pybind11::class_<GG, Options..
cls.def("numDofs", &GG::numDofs);
cls.def("numScv", &GG::numScv);
cls.def("numScvf", &GG::numScvf);
cls.def("bBoxMax", &GG::bBoxMax);
cls.def("bBoxMin", &GG::bBoxMin);
using SubControlVolume = typename GG::SubControlVolume;
Impl::registerSubControlVolume<SubControlVolume>(scope);
......
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