re_fft2d/
lib.rs

1// SPDX-License-Identifier: MPL-2.0
2
3//! Fourier transform for 2D data such as images.
4
5#![warn(missing_docs)]
6
7// default implementation on mutable slices
8pub mod slice;
9
10#[cfg(feature = "nalgebra")]
11pub mod nalgebra;