trait Fetcher<T> {
// Required method
fn fetch(&self, x: i32, y: i32, z: i32) -> T;
}Required Methods§
Implementors§
impl<const GRID_SIZE: usize> Fetcher<SseVector> for TetrahedralSseFetchVector<'_, GRID_SIZE>
LUT size here is always fixed size (GRID_SIZE^3) and its use is hardened at crate::conversions::sse::assert_barycentric_lut_size_precondition.