Skip to content
Snippets Groups Projects
Commit 9c397070 authored by soblin's avatar soblin
Browse files

trying doxygen-awesome-tool

parent 4ec133d5
Branches
No related tags found
No related merge requests found
*.png
doc/html
\ No newline at end of file
[submodule "doc/doxygen-awesome-css"]
path = doc/doxygen-awesome-css
url = https://github.com/jothepro/doxygen-awesome-css.git
This diff is collapsed.
Subproject commit e5d9fd7d4c77cd5343e4de53b93dac433698012d
/**
* @file axes.h
* @brief corresponding header for matplotlib.axes
**/
#ifndef MATPLOTLIBCPP17_AXES_H
#define MATPLOTLIBCPP17_AXES_H
......@@ -15,6 +20,9 @@
namespace matplotlibcpp17::axes {
/**
* @brief A wrapper class for matplotlib.axes.Axes
**/
struct DECL_STRUCT_ATTR Axes {
Axes(pybind11::object axes) {
self = axes;
......@@ -58,13 +66,20 @@ struct DECL_STRUCT_ATTR Axes {
}
pybind11::object self;
// for passing as python object
/**
* @fn unwrap()
* @brief return python object for passing this wrapper class to plotting function
**/
pybind11::object unwrap() { return self; }
// add_artist
/**
* @fn add_artist(*args, **kwargs)
**/
pybind11::object add_artist;
// add_collection
/**
* @fn add_collection(*args, **kwargs)
**/
pybind11::object add_collection;
// add_patch
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment