matplotlibcpp17
mplot3d.h
1
5#pragma once
6
7#include <pybind11/pybind11.h>
8
9namespace matplotlibcpp17::mplot3d {
10
11pybind11::object import() {
12 return pybind11::module::import("mpl_toolkits.mplot3d").attr("Axes3D");
13}
14
15} // namespace matplotlibcpp17::mplot3d