#[repr(C)]pub struct BoundingBoxesInterop {
pub sceneIndex: c_int,
pub bounding_box: IntRectInterop,
pub bounding_box_layer0_only: IntRectInterop,
}Expand description
This structure contains the bounding boxes for a scene.
Fields§
§sceneIndex: c_intZero-based index of the scene (for which the following bounding boxes apply).
bounding_box: IntRectInteropThe bounding box of the scene (calculated including pyramid-tiles).
bounding_box_layer0_only: IntRectInteropThe bounding box of the scene (calculated excluding pyramid-tiles).
Trait Implementations§
Source§impl Clone for BoundingBoxesInterop
impl Clone for BoundingBoxesInterop
Source§fn clone(&self) -> BoundingBoxesInterop
fn clone(&self) -> BoundingBoxesInterop
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 Debug for BoundingBoxesInterop
impl Debug for BoundingBoxesInterop
impl Copy for BoundingBoxesInterop
Auto Trait Implementations§
impl Freeze for BoundingBoxesInterop
impl RefUnwindSafe for BoundingBoxesInterop
impl Send for BoundingBoxesInterop
impl Sync for BoundingBoxesInterop
impl Unpin for BoundingBoxesInterop
impl UnsafeUnpin for BoundingBoxesInterop
impl UnwindSafe for BoundingBoxesInterop
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