It's fairly easy to use, with the code being:
Code: Select all
#include "Main.h"
#include "Hexagon.h"
#include "Grid.h"
#pragma comment(lib, "irrlicht.lib")
int main()
{
IrrlichtDevice* dvc = createDevice(EDT_OPENGL, dimension2d<s32>(800, 600), 32, false, true, true, 0);
IVideoDriver* drv = dvc->getVideoDriver();
dvc->setWindowCaption(L"Hexagon Grid");
Grid grid;
grid.create(7, 7, 35); // 7x7 grid - side of hexagon is 35 units. 7 is max, see grid.h for why. I'd like suggestions here
while(dvc->run())
{
drv->beginScene(true, true, SColor(255, 0, 0, 0));
grid.draw(drv);
drv->endScene();
}
dvc->drop();
return 0;
}
http://www.deliciousjesus.com/wp-conten ... 20Grid.rar (be sure to get the whole thing, the forums broke the link) to download the source and executable. Keep in mind that I don't comment my code very well, but if you have any questions feel free to ask!
Screenshot:

I might have a 3d implementation up soon.