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
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
//! Scaling types for reducing errors between conversions between point (pt) and millimeter (mm)

macro_rules! impl_partialeq {
    ($t:ty) => (
        impl PartialEq for $t {
            // custom compare function because of floating point inaccuracy
            fn eq(&self, other: &$t) -> bool {

                if self.0.is_normal() && other.0.is_normal(){
                    // four floating point numbers have to match
                    (self.0 * 1000.0).round() == (other.0 * 1000.0).round()
                } else {
                    false
                }
            }
        }
    )
}

/// Scale in millimeter
#[derive(Debug, Copy, Clone, PartialOrd)]
pub struct Mm(pub f64);

impl Into<Pt> for Mm {
    fn into(self) -> Pt {
        Pt(self.0 * 2.834_646_f64)
    }
}

impl_partialeq!(Mm);

/// Scale in point 
#[derive(Debug, Copy, Clone, PartialOrd)]
pub struct Pt(pub f64);

impl Into<Mm> for Pt {
    fn into(self) -> Mm {
        Mm(self.0 * 0.352_778_f64)
    }
}

impl Into<::lopdf::Object> for Pt {
    fn into(self) -> ::lopdf::Object {
        ::lopdf::Object::Real(self.0)
    }
}

impl_partialeq!(Pt);

/// Scale in pixels
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)]
pub struct Px(pub usize);

impl Px {
    pub fn into_pt(self, dpi: f64) -> Pt {
        Mm(self.0 as f64 * (25.4 / dpi)).into()
    }
}

use std::ops::{Add, Sub, Mul, Div};
use std::ops::{AddAssign, SubAssign, MulAssign, DivAssign};

macro_rules! impl_add_self {
    ($type:ident) => (
      impl Add for $type {
          type Output = Self;
          fn add(self, other: Self) -> Self {
              Self { 0: self.0 + other.0 }
          }
      }  
    )
}

macro_rules! impl_add_assign_self {
    ($type:ident) => (
      impl AddAssign for $type {
          fn add_assign(&mut self, other: Self) {
              self.0 += other.0;
          }
      }  
    )
}

macro_rules! impl_sub_assign_self {
    ($type:ident) => (
      impl SubAssign for $type {
          fn sub_assign(&mut self, other: Self) {
              self.0 -= other.0;
          }
      }  
    )
}

macro_rules! impl_sub_self {
    ($type:ident) => (
      impl Sub for $type {
          type Output = Self;
          fn sub(self, other: Self) -> Self {
              Self { 0: self.0 - other.0 }
          }
      }  
    )
}

macro_rules! impl_mul_f64 {
    ($type:ident) => (
      impl Mul<f64> for $type {
          type Output = Self;
          fn mul(self, other: f64) -> Self {
              Self { 0: self.0 * other }
          }
      }  
    )
}

macro_rules! impl_mul_assign_f64 {
    ($type:ident) => (
      impl MulAssign<f64> for $type {
          fn mul_assign(&mut self, other: f64) {
              self.0 *= other;
          }
      }  
    )
}

macro_rules! impl_div_f64 {
    ($type:ident) => (
      impl Div<f64> for $type {
          type Output = Self;
          fn div(self, other: f64) -> Self {
              Self { 0: self.0 / other }
          }
      }  
    )
}

macro_rules! impl_div_assign_f64 {
    ($type:ident) => (
      impl DivAssign<f64> for $type {
          fn div_assign(&mut self, other: f64) {
              self.0 /= other;
          }
      }  
    )
}

impl_add_self!(Mm);
impl_add_self!(Pt);
impl_add_self!(Px);

impl_add_assign_self!(Mm);
impl_add_assign_self!(Pt);
impl_add_assign_self!(Px);

impl_sub_assign_self!(Mm);
impl_sub_assign_self!(Pt);
impl_sub_assign_self!(Px);

impl_sub_self!(Mm);
impl_sub_self!(Pt);
impl_sub_self!(Px);

impl_mul_f64!(Mm);
impl_mul_f64!(Pt);

impl_mul_assign_f64!(Mm);
impl_mul_assign_f64!(Pt);

impl_div_f64!(Mm);
impl_div_f64!(Pt);

impl_div_assign_f64!(Mm);
impl_div_assign_f64!(Pt);

#[test]
fn point_to_mm_conversion() {
    let pt1: Mm = Pt(1.0).into();
    let pt2: Mm = Pt(15.0).into();
    assert_eq!(pt1, Mm(0.352778));
    assert_eq!(pt2, Mm(5.29167));
}

#[test]
fn mm_to_point_conversion() {
    let mm1: Pt = Mm(1.0).into();
    let mm2: Pt = Mm(23.0).into();
    assert_eq!(mm1, Pt(2.83464745483286));
    assert_eq!(mm2, Pt(65.1969));
}