[][src]Struct cat_engine::MouseCursor

pub struct MouseCursor { /* fields omitted */ }

Положение курсора мыши. The mouse cursor position.

Implementations

impl MouseCursor[src]

pub const fn new() -> MouseCursor[src]

Инициирует новую позицию курсора.

Initiates new cursor position.

pub fn save_position(&mut self)[src]

Сохраняет текущую позицию курсора мыши.

Saves the current mouse cursor position.

pub fn saved_shift(&self) -> [f32; 2][src]

Вычисляет перемещение от сохранённой позиции.

Calculates the movement from the saved position.

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

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

pub fn position(&self) -> [f32; 2][src]

Позиция курсора мыши.

The mouse cursor position.

pub fn center_radius(&self) -> [f32; 2][src]

Расстояние от курсора до центра окна.

The distance between the cursor and the center of the window.

Auto Trait Implementations

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> SetParameter for T

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.