turtle
turtle copied to clipboard
Create Animated Drawings in Rust
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...
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...
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...
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...
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...
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...
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...
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. - [...
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...
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...