Struct three::CubeMapPath [] [src]

pub struct CubeMapPath<P: AsRef<Path>> {
    pub front: P,
    pub back: P,
    pub left: P,
    pub right: P,
    pub up: P,
    pub down: P,
}

Represents paths to cube map texture, useful for loading CubeMap.

Fields

"Front" image. Z+.

"Back" image. Z-.

"Left" image. X-.

"Right" image. X+.

"Up" image. Y+.

"Down" image. Y-.

Trait Implementations

impl<P: Clone + AsRef<Path>> Clone for CubeMapPath<P>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<P: Debug + AsRef<Path>> Debug for CubeMapPath<P>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<P> Send for CubeMapPath<P> where
    P: Send

impl<P> Sync for CubeMapPath<P> where
    P: Sync