| 72 | |
| 73 | template<typename M, typename T> |
| 74 | void append(const M& vertices, std::list<T>& flattened) { |
| 75 | const size_t rows = vertices.rows(); |
| 76 | const size_t cols = vertices.cols(); |
| 77 | for (size_t i=0; i<rows; i++) { |
| 78 | for (size_t j=0; j<cols; j++) { |
| 79 | flattened.push_back(vertices.coeff(i,j)); |
| 80 | } |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | using namespace PeriodicInflator2DHelper; |
no outgoing calls
no test coverage detected