pub type PxPoint = Point2D<Px, Px>;Expand description
A point in device pixels.
Aliased Type§
#[repr(C)]pub struct PxPoint {
pub x: Px,
pub y: Px,
}Fields§
§x: Px§y: PxTrait Implementations§
Source§impl DivAssign<Factor2d> for PxPoint
impl DivAssign<Factor2d> for PxPoint
Source§fn div_assign(&mut self, rhs: Factor2d)
fn div_assign(&mut self, rhs: Factor2d)
Performs the
/= operation. Read moreSource§impl MulAssign<Factor2d> for PxPoint
impl MulAssign<Factor2d> for PxPoint
Source§fn mul_assign(&mut self, rhs: Factor2d)
fn mul_assign(&mut self, rhs: Factor2d)
Performs the
*= operation. Read more