turtle icon indicating copy to clipboard operation
turtle copied to clipboard

Create Animated Drawings in Rust

Results 60 turtle issues
Sort by recently updated
recently updated
newest added

It would be really cool if we could embed actual demos of programs running by pasting some JavaScript or SVG into an HTML page. It could be as simple as...

feature
help wanted
after 1.0.0

This crate has changed a lot in the last 3 years. The images in the documentation probably aren't super accurate anymore. If you haven't seen the documentation yet, it contains...

help wanted
good first issue
maintenance

We have things in our API that are unstable. Some examples include: - many methods on Drawing - everything to do with events We should make it impossible to use...

help wanted
good first issue
docs

This is likely related at least in part to some of the issues in #183. In #173, we made it so that you could manage multiple turtle windows in multiple...

bug
help wanted

This is a "small" issue, in that I think you really have to look for this in order to notice it. On some machines, when you run a turtle program...

bug
help wanted

After the rewrite in #173, the entire events API was overhauled and also made unstable. There are a number of fundamental questions that need to be answered about the events...

feature
help wanted
question

https://docs.python.org/2/library/turtle.html#turtle.undo A per-turtle way to support undoing and then potentially redoing the last actions of a given turtle. Since we only have one turtle per drawing right now, it is...

feature
help wanted

Follow-up issue from #49. It would be great if we could minimize and unminimize the window/drawing programmatically. The [`set_minimized`](https://docs.rs/glutin/0.24.0/glutin/window/struct.Window.html#method.set_minimized) method on `Window` should come in handy for that. - [...

feature

The `is_maximized` method is currently unstable and unreliable because there are no events in `winit` or `glutin` to know when that state has changed. This issue is blocked on new...

bug

Follow-up issue from #49. It would be great if we could disable resizing the window as some drawings only work with certain window sizes. The `set_size` and `maximize` methods would...

feature
help wanted