Enum acacia::partition::cubemap::CubeMap [] [src]

pub enum CubeMap {
    Sphere,
    Quad(Quad),
}

A cubemap partition of a 3-vector space

This has no radial partitioning, as it is intended mainly for the surface of a 2-sphere (which is a subset of the full ℝ³). It is either the full spherical dome or some subdivision stage on one of the six quad-shape sides obtained by projecting the sphere onto a cube.

Variants

The full sphere

A quad-based subdivision

Trait Implementations

impl Copy for CubeMap
[src]

impl Clone for CubeMap
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CubeMap
[src]

Formats the value using the given formatter.

impl PartialEq for CubeMap
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Hash for CubeMap
[src]

Feeds this value into the given [Hasher]. Read more

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

impl Eq for CubeMap
[src]

impl Subdivide for CubeMap
[src]

Subdivide into smaller partitions

impl<T: BaseFloat + PartialOrd + NumCast + Float> Partition<Vector3<T>> for CubeMap
[src]

Does the partition contain an element?

Dispatch an element to the correct subpartition Read more