Tile pattern COP: hex grid with regular hexes/gaps

   Views 765   Replies 10   Subscribers 1
User Avatar
Member
617 posts
Joined: 8月 2014
Offline
Not a pressing issue, just something from the back of my mind.

Has anyone managed to create a proper hexagonal tile grid with just the Tile Pattern COP? What I mean by "proper", is a pattern consisting of regular hexagons with gaps of equal width inbetween. Something like this [external-content.duckduckgo.com].

Loosely related thread from the past: https://www.sidefx.com/forum/topic/49509/ [www.sidefx.com]
User Avatar
Member
12 posts
Joined: 2月 2015
Offline
I think there should be an easier way to do this.

Edited by Satoru - 2025年3月21日 04:13:21

Attachments:
hex.png (640.5 KB)

User Avatar
Member
617 posts
Joined: 8月 2014
Offline
Hello Satoru,
That's close, but it doesn't tile.
User Avatar
Member
617 posts
Joined: 8月 2014
Offline
I stumbled upon an old textbook from 1894 titled "The Anatomy of Pattern" by Lewis F. Day. There's a hint on page 85 that to properly tile a hexagonal pattern inside a square, the minimum number of hexagons should be equal to 7 in a row and 8 in a column (in a pointy-top orientation).

Let's take your Tile Pattern COP configuration and set:
headerbond_tilewidth = 1 / 3.5
headerbond_tileheight = 1 / 4
We now have a tileable hexagonal grid with a minimum number of hexagons.

It can be extended with:
headerbond_tilewidth = 1 / (3.5 * ch("multiply"))
headerbond_tileheight = 1 / (4 * ch("multiply"))
Where multiplyis an integer >= 1. This way we get a nice slider for increasing the density of the grid.

We made it. Problem solved.

Attachments:
hex_grid_parms.png (61.4 KB)

User Avatar
Member
328 posts
Joined: 8月 2018
Offline
ajz3d
We made it. Problem solved.

I'll say thank you right now, because sometime, in the not too distant future, I'm going to be so very grateful for that post... : )
User Avatar
Member
617 posts
Joined: 8月 2014
Offline
I was too hasty to declare full success, because I've noticed an issue which I'm still unsure how to resolve. The pattern looks good when gaps between the hexagons are set to a modest value (Uniform Scale <= ca. 1.26). Once I get past this point, it becomes clearer to the eye that the gaps are uneven - diagonal ones are slightly thicker than vertical. At a scaleof about 1.32 vertical gaps begin to fuse, while diagonal still remain visible.
Edited by ajz3d - 2025年3月24日 11:40:22

Attachments:
hex_grid_gaps.gif (327.7 KB)

User Avatar
Member
500 posts
Joined: 7月 2005
Offline
I've tried the approach of Satoru using a bit different numbers.
Tile Height: ch("headerbond_tilewidth") * 0.5 * sqrt(3) (which is the same as sqrt(3) / 2 of course)
Uniform Scale: 4 / 3
Use Radius for relative scaling and Tile width for absolute scaling.
Edited by Aizatulin - 2025年3月24日 13:47:43

Attachments:
hexagon_tile_pattern.hipnc (329.7 KB)

User Avatar
Member
617 posts
Joined: 8月 2014
Offline
Interesting modification, Aizatulin. Gap widths are equal, and they can be modified with shape's "Radius" instead of the "Uniform Scale", which is a big improvement. Sadly, the pattern is not tileable. Or, should I rather say - while it can be tiled with arbitrary "Tile Width" values, it doesn't output regular hexagonal grid.

For instance, please enable the "Tile Vis: 3" and set "Tile Width" to 1.1667 (it is as close as I could get to seamlessly tile this modified pattern). Some rows will now contain irregular hexes. Depending on the "Tile Width", hexagons in these rows will be either squashed or stretched vertically.

With high enough hexgrid resolution and some additional math, this modified pattern could probably be cropped to a 7x8 area and resampled back to size_ref. This however would come with a quality loss and it would involve nodes other than just "Tile Pattern COP".

Hence, our ultimate quest for finding a way to create a seamlessly tiling hexagonal grid built from regular hexagons, using just the "Tile Pattern COP", continues.

Attachments:
non_tileable.gif (113.2 KB)

User Avatar
Member
328 posts
Joined: 8月 2018
Offline
I think the best compromise - for me - is ajz3d's solution above with:

Shape > Stretch Shape = enabled
Size > Horizontal scale = cos (30)

Some minor distortion perhaps, but equal line widths I think - and it tiles.
Edited by Mike_A - 2025年3月24日 20:04:29
User Avatar
Member
500 posts
Joined: 7月 2005
Offline
I had no succes without changing the resolution. If you change it to the sqrt(3) / 2 - ratio it seems to work, if you use the same ratio for tile_height / tile_width. I had to increase the scale to 16/9 and the radius needs to be smaller (between 0 and 0.75).
Edited by Aizatulin - 2025年3月25日 03:31:21

Attachments:
hexagon_tile_patternA.hipnc (385.2 KB)

User Avatar
Member
617 posts
Joined: 8月 2014
Offline
Mike_A
I think the best compromise - for me - is ajz3d's solution above with:

Shape > Stretch Shape = enabled
Size > Horizontal scale = cos (30)

Some minor distortion perhaps, but equal line widths I think - and it tiles.
Well done, Mike! If there are minor distortions, I don't see them.
It will make a great recipe.
  • Quick Links