0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

六角格子の頂点座標

Last updated at Posted at 2025-03-26

こんにちは。
六角格子の頂点座標を求めました。

図示例:
https___qiita-image-store.s3.ap-northeast-1.amazonaws.com_0_54617_30599856-d2fd-490d-84e1-23851f7df9bb.jpeg

source code

hexagonal_lattice.py
#!/usr/bin/env python3
import math, sys
n = 2 if len(sys.argv) == 1 else int(sys.argv[1])

L = math.sqrt(3)/2
# [(1,0), (1/2, L)] # triangular-latice basis

vertices = []
for i in range(-n, n+1):
  for j in range(-n, n+1):
    k, l = i%3, j%2
    if k == 0 or k + l == 2:  # hexagonal vertices
      m = i + l/2
      vertices.append([m, j * L])

import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(9, 9))
ax.scatter(*tuple(zip(*vertices)))  # transpose
ax.set_aspect('equal')
plt.show()

また、(i,j)ループの部分をいろいろ変えても六角格子を得られます:

for i in range(-n, n+1):
  for j in range(-n, n+1):
    if i%3 + j%3 != 2:  # hexagonal vertices
      m = i - l/2
      vertices.append([m, j * L])

他にも、

for i in range(-n, n+1):
  for j in range(-n, n+1):
    m = (i * 3 - (i+j)%2) / 2
    vertices.append([m, j * L])
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?