#[repr(C)]pub struct ManifoldPointRecord {
pub position: [f32; 3],
pub depth: f32,
pub local_a: [f32; 3],
pub _wgsl_pad0: [u8; 4],
pub local_b: [f32; 3],
pub accumulated_normal: f32,
pub accumulated_tangent_1: f32,
pub accumulated_tangent_2: f32,
pub feature: u32,
pub _wgsl_pad1: [u8; 4],
}Fields§
§position: [f32; 3]§depth: f32§local_a: [f32; 3]§_wgsl_pad0: [u8; 4]§local_b: [f32; 3]§accumulated_normal: f32§accumulated_tangent_1: f32§accumulated_tangent_2: f32§feature: u32§_wgsl_pad1: [u8; 4]Trait Implementations§
Source§impl Clone for ManifoldPointRecord
impl Clone for ManifoldPointRecord
Source§fn clone(&self) -> ManifoldPointRecord
fn clone(&self) -> ManifoldPointRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ManifoldPointRecord
Source§impl Debug for ManifoldPointRecord
impl Debug for ManifoldPointRecord
Source§impl PartialEq for ManifoldPointRecord
impl PartialEq for ManifoldPointRecord
impl Pod for ManifoldPointRecord
Source§impl StreamRecord for ManifoldPointRecord
impl StreamRecord for ManifoldPointRecord
impl StructuralPartialEq for ManifoldPointRecord
Auto Trait Implementations§
impl Freeze for ManifoldPointRecord
impl RefUnwindSafe for ManifoldPointRecord
impl Send for ManifoldPointRecord
impl Sync for ManifoldPointRecord
impl Unpin for ManifoldPointRecord
impl UnsafeUnpin for ManifoldPointRecord
impl UnwindSafe for ManifoldPointRecord
Blanket Implementations§
impl<T> AnyBitPattern for Twhere
T: Pod,
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
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.