quackie 0.2.1

A duck for your terminal! 🦆
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use clap::{command, Parser};

#[derive(Parser)]
#[command(version, about)]
pub struct Arguments {
    #[arg(short, long, default_value_t = -2.0)]
    /// Duck rotation speed [rad/s] (counter-clockwise)
    pub rotation_speed: f64,
    #[arg(short, long)]
    /// Post-processes that should be applied (antialias, outline)
    pub postprocesses: Vec<String>,
}