Complex

Type Alias Complex 

Source
pub type Complex = Complex<f32>;
Expand description

a complex number

Aliased Type§

#[repr(C)]
pub struct Complex { pub re: f32, pub im: f32, }

Fields§

§re: f32

Real portion of the complex number

§im: f32

Imaginary portion of the complex number