[][src]Struct hex_grid::offset::Offset

pub struct Offset {
    pub x: i32,
    pub y: i32,
}

Fields

x: i32y: i32

Methods

impl Offset[src]

pub fn fill_hex(radius: u16) -> Vec<Offset>[src]

pub fn direction(&self) -> Offset[src]

truncates the x/y coordinates to be -1, 0, 1

pub fn distance(&self) -> u32[src]

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

pub fn axis_aligned(&self) -> bool[src]

Checks if this offset only moves along a single axis A zero-offset returns true

Trait Implementations

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

impl Clone for Offset[src]

impl Copy for Offset[src]

impl Eq for Offset[src]

impl PartialEq<Offset> for Offset[src]

impl Debug for Offset[src]

impl<O: Into<Offset>> Sub<O> for Offset[src]

type Output = Offset

The resulting type after applying the - operator.

impl<O: Into<Offset>> Add<O> for Offset[src]

type Output = Offset

The resulting type after applying the + operator.

impl Add<Coordinate> for Offset[src]

type Output = Coordinate

The resulting type after applying the + operator.

impl<I: Into<i32>> Mul<I> for Offset[src]

type Output = Offset

The resulting type after applying the * operator.

impl Neg for Offset[src]

type Output = Offset

The resulting type after applying the - operator.

impl Hash for Offset[src]

impl StructuralPartialEq for Offset[src]

impl StructuralEq for Offset[src]

Auto Trait Implementations

impl Send for Offset

impl Sync for Offset

impl Unpin for Offset

impl UnwindSafe for Offset

impl RefUnwindSafe for Offset

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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