Hexagon Grids

Post those lines of code you feel like sharing or find what you require for your project here; or simply use them as tutorials.
Post Reply
monkeycracks
Posts: 1029
Joined: Thu Apr 06, 2006 12:45 am
Location: Tennesee, USA
Contact:

Hexagon Grids

Post by monkeycracks »

Here you can find my Hexagon Grid project. It doesn't currently have any plans to be used by me, but it was a fun learning process. I based the code from an article that I found at http://www.codeproject.com/KB/graphics/ ... part1.aspx.

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;
}
Looks easy enough, right?

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:

Image

I might have a 3d implementation up soon.
Last edited by monkeycracks on Sun May 24, 2009 9:37 pm, edited 1 time in total.
Dorth
Posts: 931
Joined: Sat May 26, 2007 11:03 pm

Post by Dorth »

Cloudef
Posts: 123
Joined: Wed Dec 03, 2008 9:02 pm
Location: Finland

Post by Cloudef »

I used this kind of hexagonial grid in one of my Nintendo DS Projects. Its really useful for Touchscreen keyboards :)
monkeycracks
Posts: 1029
Joined: Thu Apr 06, 2006 12:45 am
Location: Tennesee, USA
Contact:

Post by monkeycracks »

Dorth wrote:http://www.codeproject.com/KB/graphics/ ... part1.aspx
and
http://www.deliciousjesus.com/wp-conten ... 20Grid.rar

Thanks for sharing, but mind the links, it's not that hard ^^
I'd been up for far too long and couldn't remember how to do that. Thanks!
I used this kind of hexagonial grid in one of my Nintendo DS Projects. Its really useful for Touchscreen keyboards
Sounds interesting. All that DS stuff is beyond me, but hopefully it'll help anyone looking to get into it.
devsh
Competition winner
Posts: 2049
Joined: Tue Dec 09, 2008 6:00 pm
Location: UK
Contact:

Post by devsh »

well if it was 3d or faked 3d it would remind me of this

Image
monkeycracks
Posts: 1029
Joined: Thu Apr 06, 2006 12:45 am
Location: Tennesee, USA
Contact:

Post by monkeycracks »

I remember that game. Used to be one of my favorites, but I forgot it used hexagon grids for that sort of thing. Maybe this'll get more application than I'm expecting.
Post Reply