Struct tapestry::patterns::ClusterLayers[][src]

pub struct ClusterLayers {
    pub interior: Vec<Coord>,
    pub internal_border: Vec<Coord>,
    pub external_border: Vec<Coord>,
}

Represents various layers of a selection of coords (cluster).

The internal and external borders straddle the “actual edge” of a coord cluster.

Fields

interior: Vec<Coord>

The set of cluster coords that does not touch the exterior of the cluster in any way. For a filled shape, this should represent the majority of the coords.

Defined as a cluster cell adjacent only to other cluster cells.

internal_border: Vec<Coord>

The border layer lining the inside of a cluster of coords, separating it from the exterior. This is the layer between the interior and external_border.

Defined as a cluster cell adjacent to at least one non-cluster cell.

external_border: Vec<Coord>

The border layer surrounding the cluster of coords on the outside. These coords are not actually part of the cluster itself, but are adjacent to the internal_border.

Defined as a non-cluster cell adjacent to at least one cluster cell.

Trait Implementations

impl Debug for ClusterLayers[src]

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, 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<V, T> VZip<V> for T where
    V: MultiLane<T>,