👀 Reading hidden code
MethodError: no method matching right!(::Main.workspace#2.Turtle, ::Missing)
Closest candidates are:
right!(::Main.workspace#2.Turtle, ::Number) at ~/work/disorganised-mess/disorganised-mess/turtles.jl#==#fc44503a-b0bf-11ea-0f28-510784847241:1
Here is what happened, the most recent locations are first:
- (::var"#7#8"{typeof(Main.workspace#2.right!), typeof(Main.workspace#2.forward!), Missing, Colon})
(t::Main.workspace#2.Turtle) from This cell: line 4for i in 1:100
right!(t, angle)
forward!(t, i)
- Show more...
👀 Reading hidden code
🐢 definition
👀 Reading hidden code
mutable struct Turtle
pos::Tuple{Number, Number}
heading::Number
pen_down::Bool
history::Drawing
end
👀 Reading hidden code
Vector{String} (alias for Array{String, 1})
Drawing = Vector{String}
👀 Reading hidden code
Turtle commands
👀 Reading hidden code
forward! (generic function with 1 method)
function forward!(🐢::Turtle, distance::Number)
old_pos = 🐢.pos
new_pos = 🐢.pos = old_pos .+ (distance .* (cos(🐢.heading), sin(🐢.heading)))
if 🐢.pen_down
push!(🐢.history, """<line x1="$(old_pos[1])" y1="$(old_pos[2])" x2="$(new_pos[1])" y2="$(new_pos[2])" stroke="black" stroke-width="3" />""")
end
🐢
end
👀 Reading hidden code
backward! (generic function with 1 method)
backward!(🐢::Turtle, by::Number) = foward!(🐢, -by)
👀 Reading hidden code
right! (generic function with 1 method)
function right!(🐢::Turtle, angle::Number)
🐢.heading -= angle
end
👀 Reading hidden code
left! (generic function with 1 method)
left!(🐢::Turtle, angle::Number) = right!(🐢, -angle)
👀 Reading hidden code
Function to make turtle drawings with
👀 Reading hidden code
turtle_drawing (generic function with 1 method)
function turtle_drawing(f::Function)
🐢 = Turtle((150, 150), pi*3/2, true, String[])
f(🐢)
image = """<svg version="1.1"
baseProfile="full"
width="300" height="300"
xmlns="http://www.w3.org/2000/svg">""" * join(🐢.history) * "</svg>"
return HTML(image)
end
👀 Reading hidden code