| 175 | |
| 176 | template <class T1, class... Args> |
| 177 | auto fplot(NotAxesHandle<T1> x, Args&&... args) { |
| 178 | return gca()->fplot(x, std::forward<Args>(args)...); |
| 179 | } |
| 180 | |
| 181 | template <class... Args> auto fplot(axes_handle ax, Args&&... args) { |
| 182 | return ax->fplot(std::forward<Args>(args)...); |