56 releases

0.8.20-pre Mar 8, 2024
0.8.17-pre Jan 19, 2024
0.8.16-pre Oct 23, 2023
0.8.13-pre Jul 27, 2023
0.4.11 Jul 30, 2021

#57 in Rendering

Download history 6/week @ 2024-01-14 57/week @ 2024-01-21 88/week @ 2024-01-28 73/week @ 2024-02-04 140/week @ 2024-02-11 218/week @ 2024-02-18 256/week @ 2024-02-25 280/week @ 2024-03-03 207/week @ 2024-03-10 239/week @ 2024-03-17 114/week @ 2024-03-24 369/week @ 2024-03-31

726 downloads per month

MIT license

170KB
4K SLoC

dessin

dessin is library aimed at building complex drawings, combine them, move them and export them as PDF or SVG.

Getting started

Add dessin and dessin-svg to your project dependencies

cargo add dessin dessin-svg

Documentation on docs.rs

Overview

use dessin::prelude::*;
use dessin_svg::ToSVG;

#[derive(Default)]
struct MyShape {
  text: String
}
impl MyShape {
  fn say_this(&mut self, what: &str) {
    self.text = format!("{} And check this out: `{what}`", self.text);
  }
}
impl From<MyShape> for Shape {
  fn from(value: MyShape) -> Self {
    dessin!(Text: #(
      fill={Color::RED}
      text={value.text}
    )).into()
  }
}

let dessin = dessin!(for x in {0..10}: {
  let radius = x as f32 * 10.;

  dessin!(group: [
    { Circle: #(
      fill={Color::RED}
      radius={radius}
      translate={[x as f32 * 5., 10.]}
    ) }
    { Text: #(
      fill={Color::BLACK}
      font_size={10.}
      text={"Hi !"}
    ) }
  ])
});

let dessin = dessin!(group: [
  { var { dessin }: (
    scale={[2., 2.]}
  ) }
  { MyShape: (
    say_this={"Hello world"}
  ) }
]);

let svg = dessin.to_svg().unwrap();

Dependencies

~19MB
~180K SLoC