What is a rhombille grid?

A rhombille grid is a tessellation of the plain in identical rhombi. (The term was coined by John Conway in his book The Symmetries of Things. He also created The Game of Life.)

One of the earliest games that used an isometric view, Q*bert (1982), used a grid like this to simulate a limited 3D environment. Indeed, with appropriate shading, the tiling resemble a stack of 3D cubes. At the time, the game was praised for its innovative graphics.

qbert

Another game that uses a rhombille grid is Rhomboid Slitherlinks, a set of puzzles created by Jim Bumgardner, using tilings supplied by Lars Huttar (Edit: I previously only credited Jim. Lars explains in a comment below how the puzzles came about. I apologize for the omission.). A Slitherlink is a puzzle where the goal is to draw in edges of a grid so that they form a single, continuous line that does not cross itself. Some cells have numbers; these indicate the number of edges of that cell that are part of the solution line.

slitherlink_rhomb

The rombille grid has another feature that makes them useful for games. Rhombille grids are the edge-grids of hexagonal and triangular grids. In other words, if we are interested in the edges of these types of grids, we could consider them the faces of appropriate rhombille grids. For instance, if we use a rhombus tile with the long diagonal of the rhombus drawn in, the resulting grid will be a triangular grid. If we use tiles with the short diagonal drawn in instead, the resulting grid is a hexagonal grid.

edge_grids

There are not many examples of games played on the edges of these types of grids. There is a version of Dots for hexagonal grids, and hexagonal Sliterlink puzzles. The Settlers of Catan has a road-building mechanic on the edges of the hexes. Another interesting game is Vertex Dispenser, where players play on the edges (really, from vertex to vertex) to gain territory, similar to Dots. Unlike the other examples, this game uses grids on 3D shapes.

vertex-dispenser

 

hex_slitherlink_sample_reduced

When you work with edges for hex or tri grids, there are several advantages to work with rhomb tiles instead of tris or hexes:

  • It is easier to draw the edges, since you are not near the edge of the tile. This gives you more freedom to play with the lines.
  • Since each edge has it’s own tile, you only have to use one tile. In a tri grid such as the one below, you would need two different tiles.
  • It is easier to make the edges clickable.

tri_edges

Coordinates

There are many ways in which we can assign coordinates to the cell in a rhombille grid. One technique that works well is to group the rhombi into groups of three, where each group forms a hexagon. We can then make a coordinate from the hex coordinate, and an index that indicates the orientation (and hence also which of the three rhombi in the group we mean).

This is the scheme followed in the image at the top of this post. You will notice that groups of three rhombi with the same colors make up a hexagon (or a cube). The first part of the rhomb coordinate is the hex-coordinate of the hex that it is part of (see Amit Patel’s article on grid math for more detail on hex coordinates). The last part is an index indicating it’s orientation.

Neighbors

The neighbors of a cell in a rhombille grid is complex.

neighbors

In the image above, the blue cell has four 1-neighbors (the green cells), four 2-neighbors (the yellow cells) and ten 3-neighbors (the red cells).

If we view the rhomb grid as a edge hex-grid, then the 1-neighbors of a cell are all the edges connected to the edge in that cell. If we view the rhomb grid as a edge tri grid, then the 1-, 2- and 3- neighbors of a cell contain the edges connected to the edge in that cell.

In Q*bert, only “flat” cells are accessible. In this case, neighbors do not share an edge or even a vertex.

qbert_neighbors

 

5 thoughts on “What is a rhombille grid?”

  1. Pingback: Grids | Pearltrees

  2. Pingback: Game Development with Unity 2D – part 5: A grid of Roman centuriae - Design a Game

  3. Thanks for the interesting article about rhombille grids, and a big +1 for the mention of Q*bert! A minor point of correction… the rhomboid slitherlink puzzles were not exactly created by Jim Bumgardner. He developed software to create slitherlink puzzles on non-square grids, and created many puzzles using several interesting tilings. The rhomboid tilings in particular, and the desire to use them for slitherlink, were from me (as mentioned in the blog post that you linked to). Jim was kind enough to create puzzles using the tilings I supplied, and to post them on his web site.

    I have loved the 3D look of rhombille grids for a long time (without knowing what they were called), and I believe Q*bert played a significant role in cultivating that fascination. I especially enjoy exploring the quasi-3D aspect, treating these grids as though they really represented a three-dimensional landscape, like Q*bert does. Years ago I started writing a Q*bert-like game that uses a board with a more complex structure, like the set #2 of rhomboid tilings that Jim posted: some “cubes” are poking “in” and others poke “out.” Maybe I should dust off that project and get it working.

    1. Hi Lars,
      I apologize for the omission; as you pointed out it is right there in the opening paragraph! I added the extra information in the article. Thanks for letting us know!

  4. Pingback: Don't Miss: 20 fun facts about hex grids - GeekTechTalk

Comments are closed.

Scroll to Top