Struct glutin::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) -> LogicalPosition[src]
pub fn new(x: f64, y: f64) -> LogicalPositionpub fn from_physical<T>(physical: T, dpi_factor: f64) -> LogicalPosition where
T: Into<PhysicalPosition>, [src]
pub fn from_physical<T>(physical: T, dpi_factor: f64) -> LogicalPosition where
T: Into<PhysicalPosition>, pub fn to_physical(&self, dpi_factor: f64) -> PhysicalPosition[src]
pub fn to_physical(&self, dpi_factor: f64) -> PhysicalPositionTrait Implementations
impl 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 Debug for LogicalPosition[src]
impl Debug for LogicalPositionfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Copy for LogicalPosition[src]
impl Copy for LogicalPositionimpl 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 LogicalPositionimpl PartialEq<LogicalPosition> for LogicalPosition[src]
impl PartialEq<LogicalPosition> 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 !=.
Auto Trait Implementations
impl Send for LogicalPosition
impl Send for LogicalPositionimpl Sync for LogicalPosition
impl Sync for LogicalPosition