sunjay / turtle

Create Animated Drawings in Rust
http://turtle.rs
Mozilla Public License 2.0
559 stars 54 forks source link

Fix Rust logo example #177

Closed sunjay closed 3 years ago

sunjay commented 4 years ago

For the past several years, we've had an example that draws the Rust logo using this crate:

rust logo turtle

As part of the new architecture in #173, we made a breaking change that resulted in the turtle using a circular brush instead of a rectangular brush. This resulted in the Rust logo example looking much worse than it used to:

image

We can fix this by updating the example to draw a filled outline of the R instead of trying to draw it by increasing the pen thickness. This would essentially end up being the same technique used to draw the gear and the holes on the gear to draw the R. It will take some creativity and experimentation, but I definitely think it can be done!

Anyone is welcome to try this out! I would love to get this example working again!

mark-jordanovic-lewis commented 3 years ago

This seems like a good one to get started learning turtle from a user perspective. I will give this a go.