| 193 | |
| 194 | template <class T1, class... Args> |
| 195 | auto fplot3(NotAxesHandle<T1> x, Args&&... args) { |
| 196 | return gca()->fplot3(x, std::forward<Args>(args)...); |
| 197 | } |
| 198 | |
| 199 | template <class... Args> auto fplot3(axes_handle ax, Args&&... args) { |
| 200 | return ax->fplot3(std::forward<Args>(args)...); |