diff --git a/src/funs/boolv.rs b/src/funs/boolv.rs index 5f416eb..7578199 100644 --- a/src/funs/boolv.rs +++ b/src/funs/boolv.rs @@ -1,6 +1,6 @@ -use vector::{Vec2, Vec3, Vec4}; +use vector::{Vector, Vec2, Vec3, Vec4}; -pub trait BooleanVector { +pub trait BooleanVector: Vector { pure fn any() -> bool; pure fn all() -> bool; pure fn not() -> self;