#[repr(C, align(64))]pub struct RTCRay16 {
pub org_x: [f32; 16],
pub org_y: [f32; 16],
pub org_z: [f32; 16],
pub tnear: [f32; 16],
pub dir_x: [f32; 16],
pub dir_y: [f32; 16],
pub dir_z: [f32; 16],
pub time: [f32; 16],
pub tfar: [f32; 16],
pub mask: [c_uint; 16],
pub id: [c_uint; 16],
pub flags: [c_uint; 16],
}
Fields§
§org_x: [f32; 16]
§org_y: [f32; 16]
§org_z: [f32; 16]
§tnear: [f32; 16]
§dir_x: [f32; 16]
§dir_y: [f32; 16]
§dir_z: [f32; 16]
§time: [f32; 16]
§tfar: [f32; 16]
§mask: [c_uint; 16]
§id: [c_uint; 16]
§flags: [c_uint; 16]
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RTCRay16
impl RefUnwindSafe for RTCRay16
impl Send for RTCRay16
impl Sync for RTCRay16
impl Unpin for RTCRay16
impl UnwindSafe for RTCRay16
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