diff --git a/src/vec.rs b/src/vec.rs index 61f0219..2a7366b 100644 --- a/src/vec.rs +++ b/src/vec.rs @@ -308,6 +308,10 @@ pub trait MutableEuclideanVector: MutableNumericVector<&self/T> /** * Component-wise vector comparison methods + * + * The methods contained in this trait correspond to the relational functions + * mentioned in Section 8.7 of the [GLSL 4.30.6 specification] + * (http://www.opengl.org/registry/doc/GLSLangSpec.4.30.6.pdf). */ pub trait OrdinalVector: Vector { /** @@ -333,6 +337,10 @@ pub trait OrdinalVector: Vector { /** * Component-wise equality comparison methods + * + * The methods contained in this trait correspond to the relational functions + * mentioned in Section 8.7 of the [GLSL 4.30.6 specification] + * (http://www.opengl.org/registry/doc/GLSLangSpec.4.30.6.pdf). */ pub trait EquableVector: Vector { /** @@ -348,6 +356,10 @@ pub trait EquableVector: Vector { /** * A vector with boolean components + * + * The methods contained in this trait correspond to the relational functions + * mentioned in Section 8.7 of the [GLSL 4.30.6 specification] + * (http://www.opengl.org/registry/doc/GLSLangSpec.4.30.6.pdf). */ pub trait BooleanVector: Vector { /**