Skip to main content

gfxmath_vec3/ops/
dot.rs

1/// Perform the dot product of vectors
2pub trait Dot<Rhs = Self> {
3    type Output;
4    fn dot(self, rhs: Rhs) -> Self::Output;
5}