mplusfonts-macros 0.3.4

Procedural macros re-exported in the mplusfonts crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
use swash::zeno::{Fill, Vector};

use super::parts;
use super::render_image;
use super::{Image, Points};

pub fn full_block(points: &Points, offset: Vector) -> Image {
    let block = parts::full_block(points, offset);

    render_image(&block, Fill::NonZero)
}