Struct winit::dpi::LogicalPosition [−][src]
A position represented in logical pixels.
The position is stored as floats, so please be careful. Casting floats to integers truncates the fractional part,
which can cause noticable issues. To help with that, an Into<(i32, i32)> implementation is provided which
does the rounding for you.
Fields
x: f64
y: f64
Methods
impl LogicalPosition[src]
impl LogicalPositionpub fn new(x: f64, y: f64) -> Self[src]
pub fn new(x: f64, y: f64) -> Selfpub fn from_physical<T: Into<PhysicalPosition>>(
physical: T,
dpi_factor: f64
) -> Self[src]
pub fn from_physical<T: Into<PhysicalPosition>>(
physical: T,
dpi_factor: f64
) -> Selfpub fn to_physical(&self, dpi_factor: f64) -> PhysicalPosition[src]
pub fn to_physical(&self, dpi_factor: f64) -> PhysicalPositionTrait Implementations
impl Debug for LogicalPosition[src]
impl Debug for LogicalPositionfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Copy for LogicalPosition[src]
impl Copy for LogicalPositionimpl Clone for LogicalPosition[src]
impl Clone for LogicalPositionfn clone(&self) -> LogicalPosition[src]
fn clone(&self) -> LogicalPositionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl PartialEq for LogicalPosition[src]
impl PartialEq for LogicalPositionfn eq(&self, other: &LogicalPosition) -> bool[src]
fn eq(&self, other: &LogicalPosition) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &LogicalPosition) -> bool[src]
fn ne(&self, other: &LogicalPosition) -> boolThis method tests for !=.
impl From<(f64, f64)> for LogicalPosition[src]
impl From<(f64, f64)> for LogicalPositionimpl From<(i32, i32)> for LogicalPosition[src]
impl From<(i32, i32)> for LogicalPositionimpl Into<(f64, f64)> for LogicalPosition[src]
impl Into<(f64, f64)> for LogicalPositionimpl Into<(i32, i32)> for LogicalPosition[src]
impl Into<(i32, i32)> for LogicalPositionAuto Trait Implementations
impl Send for LogicalPosition
impl Send for LogicalPositionimpl Sync for LogicalPosition
impl Sync for LogicalPosition