Uniform

Uniform set the same amplitude and phase to all transducers.

use autd3::prelude::*;
#[allow(unused_variables)]
fn main() {
let g = Uniform::new((EmitIntensity::new(0xFF), Phase::new(0x00)));
}
#include<autd3.hpp>
#include <limits>
int main() {
const auto g = autd3::Uniform(autd3::EmitIntensity(0xFF), autd3::Phase(0x00));
return 0; }
using AUTD3Sharp;
using AUTD3Sharp.Gain;
var g = new Uniform((new EmitIntensity(0xFF), new Phase(0x00)));
from pyautd3 import Uniform, EmitIntensity, Phase
g = Uniform((EmitIntensity(0xFF), Phase(0x00)))

The intensity and phase are optional, and the default values are 0xFF and 0x00, respectively.