Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91213183
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
Sat, Nov 9, 01:01
Size
631 B
Mime Type
text/x-c++
Expires
Mon, Nov 11, 01:01 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22221586
Attached To
R7871 phys-743-exercises
grid.hh
View Options
#ifndef GRID_HH
#define GRID_HH
/* -------------------------------------------------------------------------- */
#include <vector>
/* -------------------------------------------------------------------------- */
class Grid {
public:
Grid(int m, int n);
/// 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];
}
/// 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