turtle icon indicating copy to clipboard operation
turtle copied to clipboard

Create Animated Drawings in Rust

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

Sketches for a logarithmic spiral, a logarithmic 3d effect spiral, Fibonacci spiral and the Ulam Prime spiral as well as some sample images

Updates the requirements on [glutin](https://github.com/rust-windowing/glutin) to permit the latest version. Release notes Sourced from glutin's releases. Glutin Version v0.29.0 Fix crash when creating OpenGLES context without explicit version. Add buffer_age...

dependencies
rust

Bumps [tzinfo](https://github.com/tzinfo/tzinfo) from 1.2.9 to 1.2.10. Release notes Sourced from tzinfo's releases. v1.2.10 Fixed a relative path traversal bug that could cause arbitrary files to be loaded with require when...

dependencies
ruby

Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.12.5 to 1.13.6. Release notes Sourced from nokogiri's releases. 1.13.6 / 2022-05-08 Security [CRuby] Address CVE-2022-29181, improper handling of unexpected data types, related to untrusted inputs to...

dependencies
ruby

Updates the requirements on [ipc-channel](https://github.com/servo/ipc-channel) to permit the latest version. Commits 6c1789f Publish 0.16.0. f6b3d8f Auto merge of #288 - negator:patch-2, r=jdm 5582ad5 FusedStream for IpcStream f700ea3 Auto merge of...

dependencies
rust

Updates the requirements on [parking_lot](https://github.com/Amanieu/parking_lot) to permit the latest version. Changelog Sourced from parking_lot's changelog. parking_lot 0.12.0, parking_lot_core 0.9.0, lock_api 0.4.6 (2022-01-28) The MSRV is bumped to 1.49.0. Disabled eventual...

dependencies
rust

Updates the requirements on [bitvec](https://github.com/bitvecto-rs/bitvec) to permit the latest version. Changelog Sourced from bitvec's changelog. Changelog All notable changes will be documented in this file. This document is written according...

dependencies
rust

This PR adds battleship board game implementation to turtle examples - #23 - [x] single player mode - [x] multiplayer mode - [x] arrow keys & enter based controls

While setting the turtle speed to "instant" I am seeing issues with the fill color. Tried with turtle.set_speed(Speed::instant()); turtle.set_speed("instant"); ![image](https://user-images.githubusercontent.com/17620192/111074743-7e4bdc00-850a-11eb-8f80-94e9fbdaaaa9.png)

bug

Currently, there is no way to close the window programmatically opened by `Turtle::new()` or `Drawing::new()`. We should add a `fn destroy(self)` method to `Drawing` which allows for this. Implementation: The...

feature
help wanted