Remove doc-test for `sign` on matrices since they are not supported for now.

This commit is contained in:
sebcrozet 2018-10-05 05:54:52 +02:00 committed by Sébastien Crozet
parent 87c97497d2
commit 8699a85693
1 changed files with 1 additions and 4 deletions

View File

@ -317,7 +317,7 @@ pub fn round<N: Real, D: Dimension>(x: &TVec<N, D>) -> TVec<N, D>
// unimplemented!()
//}
/// For each matrix or vector component `x`: 1 if `x > 0`, 0 if `x == 0`, or -1 if `x < 0`.
/// For each vector component `x`: 1 if `x > 0`, 0 if `x == 0`, or -1 if `x < 0`.
///
/// # Examples:
///
@ -325,9 +325,6 @@ pub fn round<N: Real, D: Dimension>(x: &TVec<N, D>) -> TVec<N, D>
/// # use nalgebra_glm as glm;
/// let vec = glm::vec3(-2.0, 0.0, -0.0, 2.0);
/// assert_eq!(glm::vec3(-1.0, 0.0, 0.0, 1.0), glm::sign(&vec));
///
/// let mat = glm::mat2(-0.0, 5.0, -3.0, 2.0);
/// assert_eq!(glm::mat2(0.0, 1.0, -1.0, 1.0), glm::sign(&mat));
/// ```
///
/// # See also: