nalgebra/nalgebra-glm/src/gtx/transform.rs

20 lines
694 B
Rust
Raw Normal View History

2018-09-21 01:54:12 +08:00
use na::{Real, Unit, Rotation3, Matrix4, U3, U4};
use traits::Number;
use aliases::{Vec, Mat};
2018-09-23 00:42:38 +08:00
/// A rotation 4 * 4 matrix created from an axis of 3 scalars and an angle expressed in radians.
2018-09-22 23:36:08 +08:00
pub fn rotation<N: Real>(angle: N, v: &Vec<N, U3>) -> Mat<N, U4, U4> {
2018-09-21 01:54:12 +08:00
Rotation3::from_axis_angle(&Unit::new_normalize(*v), angle).to_homogeneous()
}
2018-09-22 23:36:08 +08:00
/// A 4 * 4 scale matrix created from a vector of 3 components.
pub fn scaling<N: Number>(v: &Vec<N, U3>) -> Mat<N, U4, U4> {
2018-09-21 01:54:12 +08:00
Matrix4::new_nonuniform_scaling(v)
}
2018-09-23 00:42:38 +08:00
/// A 4 * 4 translation matrix created from the scaling factor on each axis.
2018-09-22 23:36:08 +08:00
pub fn translation<N: Number>(v: &Vec<N, U3>) -> Mat<N, U4, U4> {
2018-09-21 01:54:12 +08:00
Matrix4::new_translation(v)
}