pub struct Point {
pub x: f32,
pub y: f32,
}
Expand description
An (x, y) coordinate.
§Example
use ab_glyph_rasterizer::{point, Point};
let p: Point = point(0.1, 23.2);
Fields§
§x: f32
§y: f32
Trait Implementations§
source§impl AddAssign for Point
impl AddAssign for Point
source§fn add_assign(&mut self, other: Point)
fn add_assign(&mut self, other: Point)
let mut p1 = point(1.0, 2.0);
p1 += point(2.0, 1.5);
assert!((p1.x - 3.0).abs() <= core::f32::EPSILON);
assert!((p1.y - 3.5).abs() <= core::f32::EPSILON);
source§impl PartialEq for Point
impl PartialEq for Point
source§impl PartialOrd for Point
impl PartialOrd for Point
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl SubAssign for Point
impl SubAssign for Point
source§fn sub_assign(&mut self, other: Point)
fn sub_assign(&mut self, other: Point)
let mut p1 = point(1.0, 2.0);
p1 -= point(2.0, 1.5);
assert!((p1.x - -1.0).abs() <= core::f32::EPSILON);
assert!((p1.y - 0.5).abs() <= core::f32::EPSILON);
impl Copy for Point
impl StructuralPartialEq for Point
Auto Trait Implementations§
impl Freeze for Point
impl RefUnwindSafe for Point
impl Send for Point
impl Sync for Point
impl Unpin for Point
impl UnwindSafe for Point
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more