Update euclid

This commit is contained in:
Manish Goregaokar 2020-04-06 17:41:55 -07:00
parent b944a6e281
commit fccfff11c5
15 changed files with 5 additions and 84 deletions

View file

@ -2,29 +2,7 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use euclid::default::{Rect, Size2D};
pub trait Size2DExt {
fn to_u64(&self) -> Size2D<u64>;
}
impl Size2DExt for Size2D<f32> {
fn to_u64(&self) -> Size2D<u64> {
self.cast()
}
}
impl Size2DExt for Size2D<f64> {
fn to_u64(&self) -> Size2D<u64> {
self.cast()
}
}
impl Size2DExt for Size2D<u32> {
fn to_u64(&self) -> Size2D<u64> {
self.cast()
}
}
use euclid::default::Rect;
pub trait RectExt {
fn to_u64(&self) -> Rect<u64>;