1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use crate::*;

pub struct Projector {
    rx: f64,
    ry: f64,
    sx: i64,
    sy: i64,
    dx: i64,
    dy: i64,
}

impl Projector {
    pub fn new(src: &IntRect, dst: &IntRect) -> Self {
        let rx = (dst.width as f64) / (src.width as f64);
        let ry = (dst.height as f64) / (src.height as f64);
        let sx = src.left;
        let sy = src.top;
        let dx = dst.left;
        let dy = dst.top;
        Self {
            rx,
            ry,
            sx,
            dx,
            sy,
            dy,
        }
    }
    pub fn project_x(&self, x: i64) -> i64 {
        self.dx + (((x - self.sx) as f64) * self.rx) as i64
    }
    pub fn project_y(&self, y: i64) -> i64 {
        self.dy + (((y - self.sy) as f64) * self.ry) as i64
    }
    pub fn project_point(&self, p: (i64, i64)) -> (i64, i64) {
        (self.project_x(p.0), self.project_y(p.1))
    }
}