style: Rustfmt recent changes.

This commit is contained in:
Emilio Cobos Álvarez 2019-02-23 20:40:02 -08:00
parent 71daec59eb
commit be616c31e8
15 changed files with 41 additions and 37 deletions

View file

@ -98,7 +98,11 @@ pub use self::GenericTransformOrigin as TransformOrigin;
impl<H, V, D> TransformOrigin<H, V, D> {
/// Returns a new transform origin.
pub fn new(horizontal: H, vertical: V, depth: D) -> Self {
Self { horizontal, vertical, depth }
Self {
horizontal,
vertical,
depth,
}
}
}