Struct collision::FrustumPoints [] [src]

pub struct FrustumPoints<S> {
    pub near_top_left: Point3<S>,
    pub near_top_right: Point3<S>,
    pub near_bottom_left: Point3<S>,
    pub near_bottom_right: Point3<S>,
    pub far_top_left: Point3<S>,
    pub far_top_right: Point3<S>,
    pub far_bottom_left: Point3<S>,
    pub far_bottom_right: Point3<S>,
}

View frustum corner points

Fields

Near top left point

Near top right point

Near bottom left point

Near bottom right point

Far top left point

Far top right point

Far bottom left point

Far bottom right point

Trait Implementations

impl<S: Copy> Copy for FrustumPoints<S>
[src]

impl<S: Clone> Clone for FrustumPoints<S>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<S: PartialEq> PartialEq for FrustumPoints<S>
[src]

[src]

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

[src]

This method tests for !=.

impl<S: Debug> Debug for FrustumPoints<S>
[src]

[src]

Formats the value using the given formatter.