Skip to content
This is the development version of the documentation. It may change before the next release. See 0.6.x for the latest release.

null

src

null sets the amplitude of all transducers to 0 and stops the output.

null(&mut dst);
Parameter Type Description
dst &mut [[Emission; _]] Output buffer
use autd3_rs::geometry::{Autd3, Geometry};
use autd3_rs_pattern::null;
let geometry = Geometry::new(vec![Autd3::default()]);
let mut dst = geometry.pattern_buffer();
null(&mut dst);