Remove doc-test for `sign` on matrices since they are not supported for now.
This commit is contained in:
parent
87c97497d2
commit
8699a85693
|
@ -317,7 +317,7 @@ pub fn round<N: Real, D: Dimension>(x: &TVec<N, D>) -> TVec<N, D>
|
||||||
// unimplemented!()
|
// 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:
|
/// # Examples:
|
||||||
///
|
///
|
||||||
|
@ -325,9 +325,6 @@ pub fn round<N: Real, D: Dimension>(x: &TVec<N, D>) -> TVec<N, D>
|
||||||
/// # use nalgebra_glm as glm;
|
/// # use nalgebra_glm as glm;
|
||||||
/// let vec = glm::vec3(-2.0, 0.0, -0.0, 2.0);
|
/// 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));
|
/// 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:
|
/// # See also:
|
||||||
|
|
Loading…
Reference in New Issue