[−][src]Struct riddle_input::LogicalPosition
A 2d position in logical screen units.
Logical units may be different to screen units depending on dpi scaling
Fields
x: u32
y: u32
Implementations
impl LogicalPosition
[src]
pub fn into_physical<W>(self, window: &W) -> (u32, u32) where
W: WindowExt,
[src]
W: WindowExt,
Convert the position from logical units to physical pixel units, with respect to a specific window's current scaling.
Example
// Given a window with DPI scaling factor of 2: let position = LogicalPosition{ x: 10, y: 10 }; assert_eq!((20, 20), position.into_physical(&window));
Trait Implementations
impl Clone for LogicalPosition
[src]
fn clone(&self) -> LogicalPosition
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for LogicalPosition
[src]
impl Debug for LogicalPosition
[src]
impl Default for LogicalPosition
[src]
fn default() -> LogicalPosition
[src]
impl Eq for LogicalPosition
[src]
impl From<LogicalVec2> for LogicalPosition
[src]
fn from(vec2: LogicalVec2) -> LogicalPosition
[src]
impl From<Vector2<u32>> for LogicalPosition
[src]
fn from(vec: Vector2<u32>) -> LogicalPosition
[src]
impl PartialEq<LogicalPosition> for LogicalPosition
[src]
fn eq(&self, other: &LogicalPosition) -> bool
[src]
fn ne(&self, other: &LogicalPosition) -> bool
[src]
impl StructuralEq for LogicalPosition
[src]
impl StructuralPartialEq for LogicalPosition
[src]
Auto Trait Implementations
impl RefUnwindSafe for LogicalPosition
impl Send for LogicalPosition
impl Sync for LogicalPosition
impl Unpin for LogicalPosition
impl UnwindSafe for LogicalPosition
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,