forked from servo/euclid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
side_offsets.rs
60 lines (51 loc) · 1.56 KB
/
side_offsets.rs
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
// Copyright 2013 The Servo Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//! A group of side offsets, which correspond to top/left/bottom/right for borders, padding,
//! and margins in CSS.
use std::num::Zero;
/// A group of side offsets, which correspond to top/left/bottom/right for borders, padding,
/// and margins in CSS.
#[deriving(Eq)]
pub struct SideOffsets2D<T> {
top: T,
right: T,
bottom: T,
left: T,
}
impl<T> SideOffsets2D<T> {
pub fn new(top: T, right: T, bottom: T, left: T) -> SideOffsets2D<T> {
SideOffsets2D {
top: top,
right: right,
bottom: bottom,
left: left,
}
}
}
impl<T:Num> SideOffsets2D<T> {
pub fn horizontal(&self) -> T {
self.left + self.right
}
pub fn vertical(&self) -> T {
self.top + self.bottom
}
}
impl<T:Num> Zero for SideOffsets2D<T> {
fn zero() -> SideOffsets2D<T> {
SideOffsets2D {
top: Zero::zero(),
right: Zero::zero(),
bottom: Zero::zero(),
left: Zero::zero(),
}
}
fn is_zero(&self) -> bool {
self.top.is_zero() && self.right.is_zero() && self.bottom.is_zero() && self.left.is_zero()
}
}