Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103446744
grid.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Mar 2, 03:05
Size
669 B
Mime Type
text/x-c++
Expires
Tue, Mar 4, 03:05 (2 d)
Engine
blob
Format
Raw Data
Handle
24542863
Attached To
R7871 phys-743-exercises
grid.hh
View Options
#ifndef GRID_HH
#define GRID_HH
/* -------------------------------------------------------------------------- */
#include <vector>
/* -------------------------------------------------------------------------- */
class Grid {
public:
Grid(int m = 0, int n = 0);
/// access the value [i][j] of the grid
inline float & operator()(int i, int j) { return m_storage[i * m_n + j]; }
inline const float & operator()(int i, int j) const {
return m_storage[i * m_n + j];
}
void resize(int m, int n);
/// set the grid to 0
void clear();
int m() const;
int n() const;
private:
int m_m, m_n;
std::vector<float> m_storage;
};
#endif /* GRID_HH */
Event Timeline
Log In to Comment