kabasset / Linx

Extensible ND image laboratory
Apache License 2.0
3 stars 0 forks source link

Add operator* to create grids from lines #25

Open kabasset opened 7 months ago

kabasset commented 7 months ago

More specifically:

Grid<std::max(N, M)> operator*(Line<I, M>, Line<J, N>);
Grid<std::max(N, M)> operator*(Grid<M>, Line<I, N>);
Grid<std::max(N, M)> operator*(Line<I, M>, Grid<N>);