/** * @file mplot3d.h * @brief header file for mplot3d **/ #pragma once #include namespace matplotlibcpp17::mplot3d { pybind11::object import() { return pybind11::module::import("mpl_toolkits.mplot3d").attr("Axes3D"); } } // namespace matplotlibcpp17::mplot3d