Some cleanup

This commit is contained in:
SeanOMik 2024-03-03 16:28:27 -05:00 committed by SeanOMik
parent 8aae479df3
commit bcc035ab91
2 changed files with 8 additions and 1 deletions

View File

@ -92,6 +92,13 @@ impl Transform {
trans.y += y;
trans.z += z;
}
/// Combines a transform with another one.
///
/// The translations are added while the rotations and scales are multiplied.
pub fn combine(self, rhs: Transform) -> Transform {
self + rhs
}
/// Performs a linear interpolation between `self` and `rhs` based on the value `alpha`.
///

View File

@ -172,7 +172,7 @@ impl<'a> SceneGraph<'a> {
self.traverse_down_from(self.root_node.clone(), &mut callback);
}
/// Traverses down the SceneGraph from a starting node, calling `callback` with each
/// Recursively Traverses down the SceneGraph from a starting node, calling `callback` with each
/// SceneNode and its world transform.
fn traverse_down_from<F>(&self, start: SceneNode, callback: &mut F)
where