To be able to edit code and run cells, you need to run the notebook yourself. Where would you like to run the notebook?

This notebook takes about 20 seconds to run.

In the cloud (experimental)

Binder is a free, open source service that runs scientific notebooks in the cloud! It will take a while, usually 2-7 minutes to get a session.

On your computer

(Recommended if you want to store your changes.)

  1. Copy the notebook URL:
  2. Run Pluto

    (Also see: How to install Julia and Pluto)

  3. Paste URL in the Open box

Frontmatter

If you are publishing this notebook on the web, you can set the parameters below to provide HTML metadata. This is useful for search engines and social media.

Author 1
👀 Reading hidden code
@bind angle HTML("<input type='range' min='0' step='$(pi/100)' max='$(pi/2)'>")
236 ms
Error message

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

Stack trace

Here is what happened, the most recent locations are first:

  1. (::var"#7#8"{typeof(Main.workspace#2.right!), typeof(Main.workspace#2.forward!), Missing, Colon})(t::Main.workspace#2.Turtle)
    	for i in 1:100		right!(t, angle)		forward!(t, i)
  2. Show more...
👀 Reading hidden code
for i in 1:100
end
end
---

🐢 definition

👀 Reading hidden code
161 μs
mutable struct Turtle
pos::Tuple{Number, Number}
heading::Number
pen_down::Bool
history::Drawing
end
👀 Reading hidden code
1.4 ms
Vector{String} (alias for Array{String, 1})
Drawing = Vector{String}
👀 Reading hidden code
15.3 μs

Turtle commands

👀 Reading hidden code
178 μs
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
996 μs
backward! (generic function with 1 method)
backward!(🐢::Turtle, by::Number) = foward!(🐢, -by)
👀 Reading hidden code
405 μs
right! (generic function with 1 method)
function right!(🐢::Turtle, angle::Number)
🐢.heading -= angle
end
👀 Reading hidden code
495 μs
left! (generic function with 1 method)
left!(🐢::Turtle, angle::Number) = right!(🐢, -angle)
👀 Reading hidden code
409 μs

Function to make turtle drawings with

👀 Reading hidden code
163 μs
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
675 μs