You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! Don't know if this package is still being maintained, but I was interested to trying to understand how the spiral iteration works. I can't understand the error message I get:
using Hexagons
h =hexagon(1, 2)
# this worksprintln("neighbors")
for n inneighbors(h)
@show n
end# this worksprintln("ring")
for n inring(1, h)
@show n
end# but this errorsprintln("spiral")
for n inspiral(1, h)
@show n
end
ERROR: UndefVarError: start not defined
Stacktrace:
[1] iterate(it::HexagonSpiralIterator)
@ Hexagons ~/.julia/packages/Hexagons/qn1vZ/src/Hexagons.jl:295
[2] top-level scope
@ ./Untitled-1:21
The text was updated successfully, but these errors were encountered:
Hi! Don't know if this package is still being maintained, but I was interested to trying to understand how the spiral iteration works. I can't understand the error message I get:
The text was updated successfully, but these errors were encountered: