autd3-protobuf 27.0.0

Protocol Buffer
Documentation
mod amp;
mod combinatorial;
mod constraint;
mod linear_synthesis;
mod nls;

#[macro_export]
macro_rules! to_holo {
    ($self:expr) => {
        $self
            .foci()
            .iter()
            .zip($self.amps().iter())
            .map(|(p, a)| Holo {
                pos: Some(p.to_msg(None)),
                amp: Some(a.to_msg(None)),
            })
            .collect()
    };
}