#canvas #color #tk #shapes #object #onto #red

nightly canrust

A Rust library for drawing shapes onto a canvas

8 stable releases

1.3.3 Oct 7, 2020
1.3.2 Aug 25, 2020
1.2.1 Aug 3, 2020
1.1.0 Jul 31, 2020
1.0.2 Jul 30, 2020

#4 in #onto

MIT license

62KB
1K SLoC

canrust

A an attempt to port Tk's Canvas, written in Rust and SFML, aiming to provide simple and Python-like syntax.

Example:

use canrust::canvas::{Canvas, Color}; 

fn main() {
      // Create a canvas:
      // size, name, background color
      let mut canvas = Canvas::new((800, 600), "Canvas", Color::WHITE);
      
      // create shapes:
      // laser eyes go brrrrr
      canvas.create_circle((1., 1.), 20., Color::BLACK, None, None);
      canvas.create_rectangle((20., 20.), (30., 80.), Color::BLACK, None, None);
      canvas.create_line((18., 20.), (18., 80), 2., Color::RED, None, None);
      canvas.create_line((32., 20.), (32. 80.), 2., Color::RED, None, None);
      
      // call the mainloop, objects will keep rendering as long as the program is running
      canvas.mainloop()
}

Dependencies

  • SFML 2.6
  • CSFML 2.6

Installation

Add this line to your Cargo.toml

[dependencies]
canrust = "1.3.1"

lib.rs:

A an attempt to port Tk's Canvas, written in Rust and SFML, aiming to provide simple and Python-like syntax.

Example:

use canrust::canvas::{Canvas, Color}; fn main() { // Create a canvas:
    // size, name, background color
    let mut canvas = Canvas::new((800, 600), "Canvas", Color::WHITE);
    
    // create shapes:
    canvas.create_circle((1., 1.), 20., Color::BLACK, None, None);
    canvas.create_rectangle((20., 20.), (30., 80.), Color::BLACK, None, None);
    canvas.create_line((18., 20.), (18., 80.), 2., Color::RED, None, None);
    canvas.create_line((32., 20.), (32. 80.), 2., Color::RED, None, None);
    
    // call mainloop, objects will be rendered as long as the program is running
    canvas.mainloop()
}

Dependencies

  • SFML 2.6
  • CSFML 2.6

Installation

Add this to your Cargo.toml file:

[dependencies]
canrust = "1.3.1"

Dependencies

~770KB
~12K SLoC