1
1
Fork 0
mirror of https://github.com/griffi-gh/hUI.git synced 2025-04-02 22:16:29 -05:00

add sum_horizontal and sum_vertical to Sides common

This commit is contained in:
griffi-gh 2025-03-31 13:22:55 +02:00
parent d1a71b40cb
commit 6afcd8ee29

View file

@ -1,3 +1,4 @@
use core::ops::Add;
use derive_more::{Add, AddAssign, Div, DivAssign, Mul, MulAssign, Neg, Product, Sub, SubAssign, Sum};
/// Represents 4 sides of a rectangular shape.
@ -31,6 +32,18 @@ impl<T: Clone> Sides<T> {
}
}
impl<T: Add + Clone> Sides<T> {
#[inline]
pub fn sum_horizontal(&self) -> <T as Add>::Output {
self.left.clone() + self.right.clone()
}
#[inline]
pub fn sum_vertical(&self) -> <T as Add>::Output {
self.top.clone() + self.bottom.clone()
}
}
impl<T: Clone> From<T> for Sides<T> {
fn from(value: T) -> Self {
Self::all(value)