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>,
}
Expand description
View frustum corner points
Fields§
§near_top_left: Point3<S>
Near top left point
near_top_right: Point3<S>
Near top right point
near_bottom_left: Point3<S>
Near bottom left point
near_bottom_right: Point3<S>
Near bottom right point
far_top_left: Point3<S>
Far top left point
far_top_right: Point3<S>
Far top right point
far_bottom_left: Point3<S>
Far bottom left point
far_bottom_right: Point3<S>
Far bottom right point
Trait Implementations§
Source§impl<S: Clone> Clone for FrustumPoints<S>
impl<S: Clone> Clone for FrustumPoints<S>
Source§fn clone(&self) -> FrustumPoints<S>
fn clone(&self) -> FrustumPoints<S>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<S: Debug> Debug for FrustumPoints<S>
impl<S: Debug> Debug for FrustumPoints<S>
Source§impl<S: PartialEq> PartialEq for FrustumPoints<S>
impl<S: PartialEq> PartialEq for FrustumPoints<S>
impl<S: Copy> Copy for FrustumPoints<S>
impl<S> StructuralPartialEq for FrustumPoints<S>
Auto Trait Implementations§
impl<S> Freeze for FrustumPoints<S>where
S: Freeze,
impl<S> RefUnwindSafe for FrustumPoints<S>where
S: RefUnwindSafe,
impl<S> Send for FrustumPoints<S>where
S: Send,
impl<S> Sync for FrustumPoints<S>where
S: Sync,
impl<S> Unpin for FrustumPoints<S>where
S: Unpin,
impl<S> UnwindSafe for FrustumPoints<S>where
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more