| 363 | |
| 364 | template <class T1, class... Args> |
| 365 | auto geodensityplot(NotAxesHandle<T1> x, Args&&... args) { |
| 366 | return gca()->geodensityplot(x, std::forward<Args>(args)...); |
| 367 | } |
| 368 | |
| 369 | template <class... Args> auto geodensityplot(axes_handle ax, Args&&... args) { |
| 370 | return ax->geodensityplot(std::forward<Args>(args)...); |
nothing calls this directly
no test coverage detected