Move Viewport to iced_graphics

This commit is contained in:
Héctor Ramón Jiménez 2020-05-19 19:57:42 +02:00
parent 750a441a8c
commit a0ac09122a
5 changed files with 7 additions and 37 deletions

View file

@ -36,15 +36,13 @@ mod backend;
mod quad;
mod target;
mod text;
mod viewport;
pub use iced_graphics::{Defaults, Primitive};
pub use iced_graphics::{Defaults, Primitive, Viewport};
pub use wgpu;
pub use backend::Backend;
pub use settings::Settings;
pub use target::Target;
pub use viewport::Viewport;
#[doc(no_inline)]
pub use widget::*;

View file

@ -1,29 +0,0 @@
use crate::Transformation;
/// A viewing region for displaying computer graphics.
#[derive(Debug)]
pub struct Viewport {
width: u32,
height: u32,
transformation: Transformation,
}
impl Viewport {
/// Creates a new [`Viewport`] with the given dimensions.
pub fn new(width: u32, height: u32) -> Viewport {
Viewport {
width,
height,
transformation: Transformation::orthographic(width, height),
}
}
/// Returns the dimensions of the [`Viewport`].
pub fn dimensions(&self) -> (u32, u32) {
(self.width, self.height)
}
pub(crate) fn transformation(&self) -> Transformation {
self.transformation
}
}