egui/emigui/src/math.rs

464 lines
10 KiB
Rust
Raw Normal View History

2020-04-21 05:39:23 +00:00
#[derive(Clone, Copy, Default, Deserialize, Serialize)]
2018-12-26 16:01:46 +00:00
pub struct Vec2 {
pub x: f32,
pub y: f32,
}
2020-04-21 05:39:23 +00:00
pub fn vec2(x: f32, y: f32) -> Vec2 {
Vec2 { x, y }
2020-04-20 21:33:16 +00:00
}
2019-01-05 15:23:40 +00:00
impl Vec2 {
2020-04-21 05:39:23 +00:00
pub fn splat(v: impl Into<f32>) -> Self {
let v: f32 = v.into();
2020-04-21 05:39:23 +00:00
Self { x: v, y: v }
}
2019-04-25 16:07:36 +00:00
#[must_use]
2020-04-21 05:39:23 +00:00
pub fn normalized(self) -> Self {
2019-04-25 16:07:36 +00:00
let len = self.length();
2019-01-05 15:23:40 +00:00
if len <= 0.0 {
self
} else {
self / len
}
}
2020-04-21 05:39:23 +00:00
pub fn rot90(self) -> Self {
2019-01-05 15:23:40 +00:00
vec2(self.y, -self.x)
}
pub fn length(self) -> f32 {
self.x.hypot(self.y)
}
pub fn length_sq(self) -> f32 {
self.x * self.x + self.y * self.y
}
2019-04-25 16:07:36 +00:00
2020-04-21 05:39:23 +00:00
pub fn dist(a: Self, b: Self) -> f32 {
2019-04-25 16:07:36 +00:00
(a - b).length()
}
2020-04-21 05:39:23 +00:00
pub fn dist_sq(a: Self, b: Self) -> f32 {
2019-04-25 16:07:36 +00:00
(a - b).length_sq()
}
2020-04-21 05:39:23 +00:00
pub fn angled(angle: f32) -> Self {
2019-04-25 16:07:36 +00:00
vec2(angle.cos(), angle.sin())
}
2020-04-19 21:34:34 +00:00
pub fn floor(self) -> Self {
vec2(self.x.floor(), self.y.floor())
}
pub fn round(self) -> Self {
vec2(self.x.round(), self.y.round())
}
pub fn ceil(self) -> Self {
vec2(self.x.ceil(), self.y.ceil())
}
2020-04-20 22:17:02 +00:00
pub fn is_finite(&self) -> bool {
self.x.is_finite() && self.y.is_finite()
}
2020-04-21 05:39:23 +00:00
pub fn min(self, other: Self) -> Self {
2020-04-19 21:34:34 +00:00
vec2(self.x.min(other.x), self.y.min(other.y))
}
2020-04-21 05:39:23 +00:00
pub fn max(self, other: Self) -> Self {
2020-04-19 21:34:34 +00:00
vec2(self.x.max(other.x), self.y.max(other.y))
}
2019-01-05 15:23:40 +00:00
}
2020-04-21 05:39:23 +00:00
impl PartialEq for Vec2 {
fn eq(&self, other: &Self) -> bool {
self.x == other.x && self.y == other.y
}
}
impl Eq for Vec2 {}
2019-11-02 08:50:49 +00:00
impl std::ops::Neg for Vec2 {
type Output = Vec2;
fn neg(self) -> Vec2 {
vec2(-self.x, -self.y)
}
}
2019-01-05 15:23:40 +00:00
impl std::ops::AddAssign for Vec2 {
2019-01-19 16:10:28 +00:00
fn add_assign(&mut self, rhs: Vec2) {
2019-01-05 15:23:40 +00:00
*self = Vec2 {
2019-01-19 16:10:28 +00:00
x: self.x + rhs.x,
y: self.y + rhs.y,
2019-01-05 15:23:40 +00:00
};
}
}
2018-12-26 16:01:46 +00:00
impl std::ops::Add for Vec2 {
type Output = Vec2;
fn add(self, rhs: Vec2) -> Vec2 {
Vec2 {
x: self.x + rhs.x,
y: self.y + rhs.y,
}
}
}
impl std::ops::Sub for Vec2 {
type Output = Vec2;
fn sub(self, rhs: Vec2) -> Vec2 {
Vec2 {
x: self.x - rhs.x,
y: self.y - rhs.y,
}
}
}
2019-01-19 16:10:28 +00:00
impl std::ops::MulAssign<f32> for Vec2 {
fn mul_assign(&mut self, rhs: f32) {
self.x *= rhs;
self.y *= rhs;
}
}
2018-12-26 16:01:46 +00:00
impl std::ops::Mul<f32> for Vec2 {
type Output = Vec2;
fn mul(self, factor: f32) -> Vec2 {
Vec2 {
x: self.x * factor,
y: self.y * factor,
}
}
}
2018-12-27 22:26:05 +00:00
impl std::ops::Mul<Vec2> for f32 {
type Output = Vec2;
fn mul(self, vec: Vec2) -> Vec2 {
Vec2 {
x: self * vec.x,
y: self * vec.y,
}
}
}
2019-01-05 15:23:40 +00:00
impl std::ops::Div<f32> for Vec2 {
type Output = Vec2;
fn div(self, factor: f32) -> Vec2 {
Vec2 {
x: self.x / factor,
y: self.y / factor,
}
}
}
2020-04-21 05:39:23 +00:00
impl std::fmt::Debug for Vec2 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "[{} {}]", self.x, self.y)
}
2018-12-26 16:01:46 +00:00
}
2019-01-19 16:09:00 +00:00
// ----------------------------------------------------------------------------
/// Sometimes called a Point. I prefer the shorter Pos2 so it is equal length to Vec2
2020-04-21 05:39:23 +00:00
#[derive(Clone, Copy, Default, Deserialize, Serialize)]
pub struct Pos2 {
pub x: f32,
pub y: f32,
// implicit w = 1
}
2020-04-21 05:39:23 +00:00
pub fn pos2(x: f32, y: f32) -> Pos2 {
Pos2 { x, y }
2020-04-20 21:33:16 +00:00
}
impl Pos2 {
2020-04-21 05:39:23 +00:00
pub fn dist(self: Self, other: Self) -> f32 {
(self - other).length()
}
2020-04-21 05:39:23 +00:00
pub fn dist_sq(self: Self, other: Self) -> f32 {
(self - other).length_sq()
}
// TODO: remove?
pub fn to_vec2(self) -> Vec2 {
Vec2 {
x: self.x,
y: self.y,
}
}
pub fn floor(self) -> Self {
pos2(self.x.floor(), self.y.floor())
}
pub fn round(self) -> Self {
pos2(self.x.round(), self.y.round())
}
pub fn ceil(self) -> Self {
pos2(self.x.ceil(), self.y.ceil())
}
2020-04-20 22:17:02 +00:00
pub fn is_finite(&self) -> bool {
self.x.is_finite() && self.y.is_finite()
}
2020-04-21 05:39:23 +00:00
pub fn min(self, other: Self) -> Self {
pos2(self.x.min(other.x), self.y.min(other.y))
}
pub fn max(self, other: Self) -> Self {
pos2(self.x.max(other.x), self.y.max(other.y))
}
}
impl PartialEq for Pos2 {
fn eq(&self, other: &Self) -> bool {
self.x == other.x && self.y == other.y
}
}
2020-04-21 05:39:23 +00:00
impl Eq for Pos2 {}
impl std::ops::AddAssign<Vec2> for Pos2 {
fn add_assign(&mut self, rhs: Vec2) {
*self = Pos2 {
x: self.x + rhs.x,
y: self.y + rhs.y,
};
}
}
impl std::ops::Add<Vec2> for Pos2 {
type Output = Pos2;
fn add(self, rhs: Vec2) -> Pos2 {
Pos2 {
x: self.x + rhs.x,
y: self.y + rhs.y,
}
}
}
// impl std::ops::Add<Pos2> for Vec2 {
// type Output = Pos2;
// fn add(self, rhs: Pos2) -> Pos2 {
// Pos2 {
// x: self.x + rhs.x,
// y: self.y + rhs.y,
// }
// }
// }
impl std::ops::Sub for Pos2 {
type Output = Vec2;
fn sub(self, rhs: Pos2) -> Vec2 {
Vec2 {
x: self.x - rhs.x,
y: self.y - rhs.y,
}
}
}
impl std::ops::Sub<Vec2> for Pos2 {
type Output = Pos2;
fn sub(self, rhs: Vec2) -> Pos2 {
Pos2 {
x: self.x - rhs.x,
y: self.y - rhs.y,
}
}
}
2020-04-21 05:39:23 +00:00
impl std::fmt::Debug for Pos2 {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "[{} {}]", self.x, self.y)
}
}
// ----------------------------------------------------------------------------
2020-04-21 05:39:23 +00:00
#[derive(Clone, Copy, Default, Eq, PartialEq, Deserialize, Serialize)]
2018-12-26 16:01:46 +00:00
pub struct Rect {
min: Pos2,
max: Pos2,
2018-12-26 16:01:46 +00:00
}
impl Rect {
2020-04-20 21:33:16 +00:00
/// Infinite rectangle that contains everything
pub fn everything() -> Self {
let inf = std::f32::INFINITY;
Self {
min: pos2(-inf, -inf),
max: pos2(inf, inf),
}
}
pub fn nothing() -> Self {
let inf = std::f32::INFINITY;
Self {
min: pos2(inf, inf),
max: pos2(-inf, -inf),
}
}
pub fn from_min_max(min: Pos2, max: Pos2) -> Self {
2020-04-15 09:47:03 +00:00
Rect { min, max: max }
}
pub fn from_min_size(min: Pos2, size: Vec2) -> Self {
2020-04-15 09:47:03 +00:00
Rect {
min,
max: min + size,
}
2018-12-26 22:08:50 +00:00
}
pub fn from_center_size(center: Pos2, size: Vec2) -> Self {
2018-12-26 16:01:46 +00:00
Rect {
2020-04-15 09:47:03 +00:00
min: center - size * 0.5,
max: center + size * 0.5,
2018-12-26 16:01:46 +00:00
}
}
2019-03-16 14:14:22 +00:00
/// Expand by this much in each direction
pub fn expand(self, amnt: f32) -> Self {
Rect::from_center_size(self.center(), self.size() + 2.0 * vec2(amnt, amnt))
}
pub fn translate(self, amnt: Vec2) -> Self {
Rect::from_min_size(self.min() + amnt, self.size())
}
2019-03-16 14:14:22 +00:00
2020-04-21 05:39:23 +00:00
pub fn intersect(self, other: Rect) -> Self {
Self {
min: self.min.max(other.min),
max: self.max.min(other.max),
}
}
// keep min
pub fn set_width(&mut self, w: f32) {
self.max.x = self.min.x + w;
}
// keep min
pub fn set_height(&mut self, h: f32) {
self.max.y = self.min.y + h;
}
pub fn contains(&self, p: Pos2) -> bool {
2020-04-15 09:47:03 +00:00
self.min.x <= p.x
&& p.x <= self.min.x + self.size().x
&& self.min.y <= p.y
&& p.y <= self.min.y + self.size().y
2018-12-26 16:01:46 +00:00
}
pub fn center(&self) -> Pos2 {
Pos2 {
2020-04-15 09:47:03 +00:00
x: self.min.x + self.size().x / 2.0,
y: self.min.y + self.size().y / 2.0,
2018-12-26 16:01:46 +00:00
}
}
pub fn min(&self) -> Pos2 {
2020-04-15 09:47:03 +00:00
self.min
2018-12-26 16:01:46 +00:00
}
pub fn max(&self) -> Pos2 {
2020-04-15 09:47:03 +00:00
self.max
2018-12-26 16:01:46 +00:00
}
2019-01-14 13:26:02 +00:00
pub fn size(&self) -> Vec2 {
2020-04-15 09:47:03 +00:00
self.max - self.min
2019-01-14 13:26:02 +00:00
}
2019-02-10 19:56:59 +00:00
pub fn width(&self) -> f32 {
2020-04-15 09:47:03 +00:00
self.max.x - self.min.x
2019-02-10 19:56:59 +00:00
}
pub fn height(&self) -> f32 {
2020-04-15 09:47:03 +00:00
self.max.y - self.min.y
2019-02-10 19:56:59 +00:00
}
2019-01-19 16:09:00 +00:00
2020-04-20 22:17:02 +00:00
pub fn is_empty(&self) -> bool {
self.max.x < self.min.x || self.max.y < self.min.y
}
pub fn is_finite(&self) -> bool {
self.min.is_finite() && self.max.is_finite()
}
2020-04-15 09:47:03 +00:00
// Convenience functions (assumes origin is towards left top):
pub fn left_top(&self) -> Pos2 {
pos2(self.min().x, self.min().y)
2019-01-19 16:09:00 +00:00
}
pub fn center_top(&self) -> Pos2 {
pos2(self.center().x, self.min().y)
2019-01-19 16:09:00 +00:00
}
pub fn right_top(&self) -> Pos2 {
pos2(self.max().x, self.min().y)
2019-01-19 16:09:00 +00:00
}
pub fn left_center(&self) -> Pos2 {
pos2(self.min().x, self.center().y)
2019-01-19 16:09:00 +00:00
}
pub fn right_center(&self) -> Pos2 {
pos2(self.max().x, self.center().y)
2019-01-19 16:09:00 +00:00
}
pub fn left_bottom(&self) -> Pos2 {
pos2(self.min().x, self.max().y)
2019-01-19 16:09:00 +00:00
}
pub fn center_bottom(&self) -> Pos2 {
pos2(self.center().x, self.max().y)
2019-01-19 16:09:00 +00:00
}
pub fn right_bottom(&self) -> Pos2 {
pos2(self.max().x, self.max().y)
2019-01-19 16:09:00 +00:00
}
2018-12-26 16:01:46 +00:00
}
2020-04-21 05:39:23 +00:00
impl std::fmt::Debug for Rect {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "[{:?} - {:?}]", self.min, self.max)
}
}
2019-01-19 16:09:00 +00:00
// ----------------------------------------------------------------------------
2019-04-25 16:07:36 +00:00
pub fn lerp<T>(min: T, max: T, t: f32) -> T
where
f32: std::ops::Mul<T, Output = T>,
T: std::ops::Add<T, Output = T>,
{
2018-12-26 16:01:46 +00:00
(1.0 - t) * min + t * max
}
2019-01-05 14:28:07 +00:00
pub fn remap(from: f32, from_min: f32, from_max: f32, to_min: f32, to_max: f32) -> f32 {
let t = (from - from_min) / (from_max - from_min);
lerp(to_min, to_max, t)
}
2018-12-26 16:01:46 +00:00
pub fn remap_clamp(from: f32, from_min: f32, from_max: f32, to_min: f32, to_max: f32) -> f32 {
let t = if from <= from_min {
0.0
} else if from >= from_max {
1.0
} else {
(from - from_min) / (from_max - from_min)
};
2018-12-26 22:08:50 +00:00
lerp(to_min, to_max, t)
2018-12-26 16:01:46 +00:00
}
2019-01-05 14:28:07 +00:00
2019-01-17 23:34:01 +00:00
pub fn clamp(x: f32, min: f32, max: f32) -> f32 {
if x <= min {
min
} else if x >= max {
max
} else {
x
}
}
2019-04-25 16:07:36 +00:00
/// For t=[0,1], returns [0,1] with a derivate of zero at both ends
pub fn ease_in_ease_out(t: f32) -> f32 {
return 3.0 * t * t - 2.0 * t * t * t;
}
2019-01-05 14:28:07 +00:00
pub const TAU: f32 = 2.0 * std::f32::consts::PI;