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
SphereThe full sphere
Quad(Quad)A quad-based subdivision
Trait Implementations
impl Copy for CubeMap[src]
impl Clone for CubeMap[src]
fn clone(&self) -> CubeMap
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for CubeMap[src]
impl PartialEq for CubeMap[src]
fn eq(&self, __arg_0: &CubeMap) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &CubeMap) -> bool
This method tests for !=.
impl Hash for CubeMap[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher1.3.0
Feeds a slice of this type into the state provided.