[][src]Struct simple::Point

pub struct Point { /* fields omitted */ }

Immutable point type, consisting of x and y.

Methods

impl Point
[src]

pub fn new(x: i32, y: i32) -> Point
[src]

Creates a new point from the given coordinates.

pub fn from_ll(raw: SDL_Point) -> Point
[src]

pub fn raw_slice(slice: &[Point]) -> *const SDL_Point
[src]

pub fn raw(&self) -> *const SDL_Point
[src]

pub fn offset(&self, x: i32, y: i32) -> Point
[src]

Returns a new point by shifting this point's coordinates by the given x and y values.

pub fn scale(&self, f: i32) -> Point
[src]

Returns a new point by multiplying this point's coordinates by the given scale factor.

pub fn x(&self) -> i32
[src]

Returns the x-coordinate of this point.

pub fn y(&self) -> i32
[src]

Returns the y-coordinate of this point.

Trait Implementations

impl Into<(i32, i32)> for Point
[src]

impl Into<SDL_Point> for Point
[src]

impl Deref for Point
[src]

type Target = SDL_Point

The resulting type after dereferencing.

fn deref(&self) -> &SDL_Point
[src]

Example

use sdl2::rect::Point;
let point = Point::new(2, 3);
assert_eq!(2, point.x);

impl Neg for Point
[src]

type Output = Point

The resulting type after applying the - operator.

impl PartialEq<Point> for Point
[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl DerefMut for Point
[src]

fn deref_mut(&mut self) -> &mut SDL_Point
[src]

Example

use sdl2::rect::Point;
let mut point = Point::new(2, 3);
point.x = 4;
assert_eq!(4, point.x);

impl Hash for Point
[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Div<i32> for Point
[src]

type Output = Point

The resulting type after applying the / operator.

impl Clone for Point
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Add<Point> for Point
[src]

type Output = Point

The resulting type after applying the + operator.

impl Eq for Point
[src]

impl Sub<Point> for Point
[src]

type Output = Point

The resulting type after applying the - operator.

impl AsMut<SDL_Point> for Point
[src]

impl AsRef<SDL_Point> for Point
[src]

impl From<SDL_Point> for Point
[src]

impl From<(i32, i32)> for Point
[src]

impl Copy for Point
[src]

impl Debug for Point
[src]

impl Mul<i32> for Point
[src]

type Output = Point

The resulting type after applying the * operator.

Auto Trait Implementations

impl Send for Point

impl Sync for Point

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]