You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//! Two vector structures that contains the coords for this grid. v_x is a vector of the x coordinates
morph::vvec<C> v_x;
//! v_y is a vector of the y coordinates
morph::vvec<C> v_y;
Instead consider
morph::vvec<morph::vec<C, 2>> v_coords;
The text was updated successfully, but these errors were encountered:
sebjameswml
changed the title
Consider morph::vvec<morph::vec<I, 2>> as container in morph::Grid
Consider morph::vvec<morph::vec<C, 2>> as container in morph::Grid
Oct 7, 2024
Rather than using
Instead consider
morph::vvec<morph::vec<C, 2>> v_coords;
The text was updated successfully, but these errors were encountered: