nalgebra/nalgebra-glm/src/gtc/matrix_access.rs

74 lines
1.7 KiB
Rust
Raw Normal View History

2018-10-22 04:11:27 +08:00
use na::{DefaultAllocator, Scalar};
2019-03-23 21:29:07 +08:00
use crate::aliases::{TMat, TVec};
use crate::traits::{Alloc, Dimension};
/// The `index`-th column of the matrix `m`.
2018-10-03 19:28:07 +08:00
///
/// # See also:
///
/// * [`row`](fn.row.html)
/// * [`set_column`](fn.set_column.html)
/// * [`set_row`](fn.set_row.html)
pub fn column<N: Scalar, R: Dimension, C: Dimension>(
2018-10-22 13:00:10 +08:00
m: &TMat<N, R, C>,
index: usize,
) -> TVec<N, R>
2018-10-22 04:11:27 +08:00
where
DefaultAllocator: Alloc<N, R, C>,
{
m.column(index).into_owned()
}
/// Sets to `x` the `index`-th column of the matrix `m`.
2018-10-03 19:28:07 +08:00
///
/// # See also:
///
/// * [`column`](fn.column.html)
/// * [`row`](fn.row.html)
/// * [`set_row`](fn.set_row.html)
pub fn set_column<N: Scalar, R: Dimension, C: Dimension>(
2018-10-22 04:11:27 +08:00
m: &TMat<N, R, C>,
index: usize,
x: &TVec<N, R>,
) -> TMat<N, R, C>
where
DefaultAllocator: Alloc<N, R, C>,
{
let mut res = m.clone();
res.set_column(index, x);
res
}
/// The `index`-th row of the matrix `m`.
2018-10-03 19:28:07 +08:00
///
/// # See also:
///
/// * [`column`](fn.column.html)
/// * [`set_column`](fn.set_column.html)
/// * [`set_row`](fn.set_row.html)
pub fn row<N: Scalar, R: Dimension, C: Dimension>(m: &TMat<N, R, C>, index: usize) -> TVec<N, C>
2018-10-22 13:00:10 +08:00
where DefaultAllocator: Alloc<N, R, C> {
m.row(index).into_owned().transpose()
}
/// Sets to `x` the `index`-th row of the matrix `m`.
2018-10-03 19:28:07 +08:00
///
/// # See also:
///
/// * [`column`](fn.column.html)
/// * [`row`](fn.row.html)
/// * [`set_column`](fn.set_column.html)
pub fn set_row<N: Scalar, R: Dimension, C: Dimension>(
2018-10-22 04:11:27 +08:00
m: &TMat<N, R, C>,
index: usize,
x: &TVec<N, C>,
) -> TMat<N, R, C>
where
DefaultAllocator: Alloc<N, R, C>,
{
let mut res = m.clone();
res.set_row(index, &x.transpose());
res
}