leibniz 0.2.0

The package provides a differentiable vector graphics rasterization loss.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Drawing commands.

/// Drawing command for one argument slot.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Command {
    /// Linear segment command.
    Linear,
    /// Quadratic Bezier curve command.
    Quadratic,
}