We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1775ce commit 9f1c9fbCopy full SHA for 9f1c9fb
source/matplot/core/figure_registry.cpp
@@ -79,4 +79,10 @@ namespace matplot {
79
return h;
80
}
81
82
+ figure_handle gcf(bool quiet) {
83
+ figure_handle h = gcf();
84
+ h->quiet_mode(quiet);
85
+ return h;
86
+ }
87
+
88
} // namespace matplot
source/matplot/core/figure_registry.h
@@ -37,6 +37,10 @@ namespace matplot {
37
38
/// \brief Get the current figure
39
figure_handle gcf();
40
41
+ /// \brief Get current figure in quiet mode
42
+ figure_handle gcf(bool quiet);
43
44
45
46
#endif // MATPLOTPLUSPLUS_FIGURE_REGISTRY_H
0 commit comments