Struct clutter::Point[][src]

pub struct Point(_);

Implementations

impl Point[src]

pub fn alloc() -> Point[src]

Allocates a new Point.

Returns

the newly allocated Point. Use Point::free to free its resources.

pub fn distance(&self, b: &Point) -> (f32, f32, f32)[src]

Computes the distance between two Point.

b

a Point

x_distance

return location for the horizontal distance between the points

y_distance

return location for the vertical distance between the points

Returns

the distance between the points.

pub fn equals(&self, b: &Point) -> bool[src]

Compares two Point for equality.

b

the second Point to compare

Returns

true if the ClutterPoints are equal

pub fn init(&mut self, x: f32, y: f32) -> Option<Point>[src]

Initializes self with the given coordinates.

x

the X coordinate of the point

y

the Y coordinate of the point

Returns

the initialized Point

pub fn zero() -> Option<Point>[src]

A point centered at (0, 0).

The returned value can be used as a guard.

Returns

a point centered in (0, 0); the returned Point is owned by Clutter and it should not be modified or freed.

Trait Implementations

impl Clone for Point[src]

impl Debug for Point[src]

impl Eq for Point[src]

impl Hash for Point[src]

impl Ord for Point[src]

impl PartialEq<Point> for Point[src]

impl PartialOrd<Point> for Point[src]

impl StaticType for Point[src]

impl StructuralEq for Point[src]

impl StructuralPartialEq for Point[src]

Auto Trait Implementations

impl RefUnwindSafe for Point

impl !Send for Point

impl !Sync for Point

impl Unpin for Point

impl UnwindSafe for Point

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToSendValue for T where
    T: SetValue + Send + ToValue + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?Sized
[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.