Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
2k views

Generating triangular/hexagonal coordinates (xyz)

I'm trying to come up with an iterative function that generates xyz coordinates for a hexagonal grid. Maths has never been easy for me (I'm just not very clever!) and this problem has me stumped. With ...
9
votes
9answers
4k views

Covering Earth with Hexagonal Map Tiles

Many strategy games use hexagonal tiles. One of the main advantages is that the distance between the center of any tile and all its neighboring tiles is the same. I was wondering if anyone has any ...
4
votes
2answers
369 views

Finding adjacent neighbors on a hexagonal grid

EDIT: Wrapped the example map in a code block so the formatting is correct. Ok, I'm trying to write an extremely simple A* algorithm over a hexagonal grid. I understand, and can do the A* portion. In ...
4
votes
1answer
343 views

Hexagonal Tiles and finding their adjacent neighbourghs

I'm developing a simple 2D board game using hexagonal tile maps, I've read several articles (including the gamedev one's, which are linked every time there's a question on hexagonal tiles) on how to ...
3
votes
1answer
619 views

Creating grid of hexagons

I have to do a "grid" like this: Harmonic table I'm trying to create a ListView with ItemsSource="List<Note>" where every odd note in the list is moved on the bottom... Is the ListView the ...
2
votes
2answers
357 views

Increasing drawing performance with a hexagon grid

I'm working on my very first openGL game, inspired by the game "Greed Corp" on the playstation network. It's a turn based strategy game that is based on a hex grid. Each hexagon tile has it's own ...
1
vote
2answers
339 views

How to draw/manage a hexagon grid?

I've read this article: generating/creating hexagon grid in C . But look like both the author and answerer have already abandoned it. √(hexagonSide - hexagonWidth * hexagonWidth): What's hexagonSide ...
1
vote
1answer
364 views

Is it possible to make a polygon bounding box?

(first off, just to be sure, a hexagon is a polygon with 6 points, think honey-comb or Civilisation 5) I'm making a game that uses a hexagonal grid, but I can't seem to get the bounding box right, ...
0
votes
1answer
114 views

Hexagonal Grids, how do you find which hexagon a point is in?

I have a map made up of rows and columns of hexagons This isn't an actual image of the hex-map I am using, but uses the same size and shape hexagons I need to be able to tell which one the mouse is ...
0
votes
1answer
65 views

How to store vertices positions of a hexgrid in a 2D Array?

Im facing this issue. I want to create an hexgrid and be able to create in this fashion: //grid extents int numCols,numRows; for (int i=0; i<numCols; ++i){ for (int j=0; j<numRows; ++j){ //x ...
0
votes
1answer
201 views

Mapping a texture on a hexagon

I'm trying to map a texture onto a hexagon, but I can't figure out the texture coordinates. These are my vertices: private float vertices[] = { 0.0f, 0.0f, 0.0f, //center ...
-1
votes
2answers
153 views

How can I work out the size of each hexagon to fit a row in a box

When doing this exercise with squares the result was easy. If I want 4 boxes in a screen 20 pixels wide, then each box must be 20 / 4 = 5px wide With hexagons the result is not so simple, as the ...