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
function convert(::Type{HexagonCubic}, hex::HexagonOffsetEvenR)
x = hex.q - (hex.r >> 1) + int(isodd(hex.r))
z = hex.r
y = -x - z
HexagonCubic(x, y, z)
end
should read with correct capitalization of "int"
function convert(::Type{HexagonCubic}, hex::HexagonOffsetEvenR)
x = hex.q - (hex.r >> 1) + Int(isodd(hex.r))
z = hex.r
y = -x - z
HexagonCubic(x, y, z)
end
The text was updated successfully, but these errors were encountered:
function convert(::Type{HexagonCubic}, hex::HexagonOffsetEvenR)
x = hex.q - (hex.r >> 1) + int(isodd(hex.r))
z = hex.r
y = -x - z
HexagonCubic(x, y, z)
end
should read with correct capitalization of "int"
function convert(::Type{HexagonCubic}, hex::HexagonOffsetEvenR)
x = hex.q - (hex.r >> 1) + Int(isodd(hex.r))
z = hex.r
y = -x - z
HexagonCubic(x, y, z)
end
The text was updated successfully, but these errors were encountered: