Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pages/pictures/images.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Let's start with some simple shapes, programming at the console as we've done be
Image.circle(10)
```

What is happening here? `Image` is an object and `circle` a method on that object. We pass to `circle` a parameter, `10` that gives the radius of the circle we're constructing. Note the type of the result---an `Image`.
What is happening here? `Image` is an object and `circle` a method on that object. We pass to `circle` a parameter, `10` that gives the diameter of the circle we're constructing. Note the type of the result---an `Image`.

We can also write just `circle(10)`, as if you run the console within Doodle it automatically makes this and other methods to construct images available.

Expand Down