Small doc fix for EuclideanVector trait

This commit is contained in:
Cameron Hart 2016-02-17 22:43:41 +11:00
parent 9281295891
commit 73c34e9f05

View file

@ -448,7 +448,7 @@ impl<S: BaseNum> Vector4<S> {
}
/// Specifies geometric operations for vectors. This is only implemented for
/// 2-dimensional and 3-dimensional vectors.
/// vectors of float types.
pub trait EuclideanVector: Vector + Sized where
// FIXME: Ugly type signatures - blocked by rust-lang/rust#24092
<Self as Vector>::Scalar: BaseFloat,