geo/algorithm/kernels/
simple.rs

1use super::Kernel;
2use crate::CoordNum;
3
4/// Simple kernel provides the direct implementation of the
5/// predicates. These are meant to be used with exact
6/// arithmetic signed types (eg. i32, i64).
7#[derive(Default, Debug)]
8pub struct SimpleKernel;
9
10impl<T: CoordNum> Kernel<T> for SimpleKernel {}