-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcGrid.cpp
More file actions
55 lines (49 loc) · 790 Bytes
/
cGrid.cpp
File metadata and controls
55 lines (49 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include "cGrid.hh"
/**
* @brief Construct a new cGrid::cGrid object
*
* @param t_w width of the grid
* @param t_h height of the grid
*/
cGrid::cGrid(int t_w, int t_h)
{
m_width = t_w;
m_height = t_h;
m_bMinX = 0;
m_bMinY = 0;
m_bMaxX = m_width;
m_bMaxY = m_height;
int size = m_width * m_height;
m_grid = new int[size];
// zero out the grid
for (int i = 0; i < size; i++)
{
m_grid[i] = 0;
}
}
/**
* @brief Destroy the cGrid::cGrid object
*
*/
cGrid::~cGrid()
{
delete[] m_grid;
}
/**
* @brief get the current width of the grid
*
* @return int
*/
int cGrid::getWidth()
{
return m_width;
}
/**
* @brief get the current height of the grid
*
* @return int
*/
int cGrid::getHeight()
{
return m_height;
}