Struct pasture_core::containers::VectorBuffer
source · pub struct VectorBuffer { /* private fields */ }
Expand description
A point buffer that uses a Vec<u8>
as its underlying storage. It stores point data in interleaved memory
layout and generally behaves like an untyped vector.
Implementations§
source§impl VectorBuffer
impl VectorBuffer
sourcepub fn with_capacity(capacity: usize, point_layout: PointLayout) -> Self
pub fn with_capacity(capacity: usize, point_layout: PointLayout) -> Self
Creates a new VectorBuffer
with the given capacity
and point_layout
. This preallocates enough memory
to store at least capacity
points
Trait Implementations§
source§impl<'a> BorrowedBuffer<'a> for VectorBufferwhere
VectorBuffer: 'a,
impl<'a> BorrowedBuffer<'a> for VectorBufferwhere
VectorBuffer: 'a,
source§fn point_layout(&self) -> &PointLayout
fn point_layout(&self) -> &PointLayout
Returns the
PointLayout
of this buffer. The PointLayout
describes the structure of a single
point at runtime. Read moresource§unsafe fn get_attribute_unchecked(
&self,
attribute_member: &PointAttributeMember,
index: usize,
data: &mut [u8]
)
unsafe fn get_attribute_unchecked( &self, attribute_member: &PointAttributeMember, index: usize, data: &mut [u8] )
Like
get_attribute
, but performs no check whether the attribute actually is part of this buffers PointLayout
or not. Because of this, this function accepts a PointAttributeMember
instead of a PointAttributeDefinition
,
and this PointAttributeMember
must come from the PointLayout
of this buffer! The benefit over get_attribute
is that this function skips the include checks and thus will be faster if you repeatedly want to get data for a
single attribute Read moresource§fn as_interleaved(&self) -> Option<&dyn InterleavedBuffer<'a>>
fn as_interleaved(&self) -> Option<&dyn InterleavedBuffer<'a>>
Try to get a reference to
self
as an InterleavedBuffer
. Returns None
if self
does not
implement InterleavedBuffer
source§fn get_attribute(
&self,
attribute: &PointAttributeDefinition,
index: usize,
data: &mut [u8]
)
fn get_attribute( &self, attribute: &PointAttributeDefinition, index: usize, data: &mut [u8] )
source§fn get_attribute_range(
&self,
attribute: &PointAttributeDefinition,
point_range: Range<usize>,
data: &mut [u8]
)
fn get_attribute_range( &self, attribute: &PointAttributeDefinition, point_range: Range<usize>, data: &mut [u8] )
Writes the data for the given
attribute
of the given range of points into data
. The attribute data will
be tightly packed in data
, irregardless of the memory layout of this buffer. The attribute values might not
be correctly aligned, if the alignment requirement of attribute.datatype()
is larger than the size of the
attribute. All of the built-in attributes in pasture have alignments that are less than or equal to their size,
so for built-in attributes you can assume that the attributes in data
are correctly aligned. Read moresource§fn view<'b, T: PointType>(&'b self) -> PointView<'a, 'b, Self, T>where
Self: Sized,
'a: 'b,
fn view<'b, T: PointType>(&'b self) -> PointView<'a, 'b, Self, T>where
Self: Sized,
'a: 'b,
Get a strongly typed view of the point data of this buffer Read more
source§fn view_attribute<'b, T: PrimitiveType>(
&'b self,
attribute: &PointAttributeDefinition
) -> AttributeView<'a, 'b, Self, T>where
Self: Sized,
'a: 'b,
fn view_attribute<'b, T: PrimitiveType>(
&'b self,
attribute: &PointAttributeDefinition
) -> AttributeView<'a, 'b, Self, T>where
Self: Sized,
'a: 'b,
Gets a strongly typed view of the
attribute
of all points in this buffer Read moresource§fn view_attribute_with_conversion<'b, T: PrimitiveType>(
&'b self,
attribute: &PointAttributeDefinition
) -> Result<AttributeViewConverting<'a, 'b, Self, T>>where
Self: Sized,
'a: 'b,
fn view_attribute_with_conversion<'b, T: PrimitiveType>(
&'b self,
attribute: &PointAttributeDefinition
) -> Result<AttributeViewConverting<'a, 'b, Self, T>>where
Self: Sized,
'a: 'b,
Like
the
view_attribute
, but allows T::data_type()
to be different from the data type ofthe
attribute
within this buffer. Read moresource§fn as_columnar(&self) -> Option<&dyn ColumnarBuffer<'a>>
fn as_columnar(&self) -> Option<&dyn ColumnarBuffer<'a>>
Try to get a reference to
self
as a ColumnarBuffer
. Returns None
if self
does not
implement ColumnarBuffer
source§impl<'a> BorrowedMutBuffer<'a> for VectorBufferwhere
VectorBuffer: 'a,
impl<'a> BorrowedMutBuffer<'a> for VectorBufferwhere
VectorBuffer: 'a,
source§unsafe fn set_point(&mut self, index: usize, point_data: &[u8])
unsafe fn set_point(&mut self, index: usize, point_data: &[u8])
Sets the data for the point at the given
index
Read moresource§unsafe fn set_attribute(
&mut self,
attribute: &PointAttributeDefinition,
index: usize,
attribute_data: &[u8]
)
unsafe fn set_attribute( &mut self, attribute: &PointAttributeDefinition, index: usize, attribute_data: &[u8] )
source§fn swap(&mut self, from_index: usize, to_index: usize)
fn swap(&mut self, from_index: usize, to_index: usize)
Swaps the two points at
from_index
and to_index
. Implementations should allow the case where from_index == to_index
Read moresource§unsafe fn set_point_range(
&mut self,
point_range: Range<usize>,
point_data: &[u8]
)
unsafe fn set_point_range( &mut self, point_range: Range<usize>, point_data: &[u8] )
Sets the data for the given range of points. This function will generally be more efficient than calling [
set_point
]
multiple times, as [set_point
] performs size and index checks on every call, whereas this function can perform them
only once. Assumes that the point_data
is tightly packed, i.e. stored in an interleaved format with point alignment
of 1
. Read moresource§unsafe fn set_attribute_range(
&mut self,
attribute: &PointAttributeDefinition,
point_range: Range<usize>,
attribute_data: &[u8]
)
unsafe fn set_attribute_range( &mut self, attribute: &PointAttributeDefinition, point_range: Range<usize>, attribute_data: &[u8] )
Sets the data for the given
attribute
for all points in point_range
. This function will generally be more efficient
than calling [set_attribute
] multiple times, as [set_attribute
] has to perform type and bounds checks on each call. Read moresource§fn as_interleaved_mut(&mut self) -> Option<&mut dyn InterleavedBufferMut<'a>>
fn as_interleaved_mut(&mut self) -> Option<&mut dyn InterleavedBufferMut<'a>>
Try to get a mutable reference to
self
as an InterleavedBufferMut
. Returns None
if self
does not
implement InterleavedBufferMut
source§fn transform_attribute<'b, T: PrimitiveType, F: Fn(usize, T) -> T>(
&'b mut self,
attribute: &PointAttributeDefinition,
func: F
)where
Self: Sized,
'a: 'b,
fn transform_attribute<'b, T: PrimitiveType, F: Fn(usize, T) -> T>(
&'b mut self,
attribute: &PointAttributeDefinition,
func: F
)where
Self: Sized,
'a: 'b,
Apply a transformation function to the given
attribute
of all points within this buffer. This function is
helpful if you want to modify a single attribute of a buffer in-place and works for buffers of all memory
layouts. For columnar buffers, prefer using get_attribute_range_mut
to modify attribute data in-place. Read moresource§fn view_mut<'b, T: PointType>(&'b mut self) -> PointViewMut<'a, 'b, Self, T>where
Self: Sized,
'a: 'b,
fn view_mut<'b, T: PointType>(&'b mut self) -> PointViewMut<'a, 'b, Self, T>where
Self: Sized,
'a: 'b,
Get a strongly typed view of the point data of this buffer. This view allows mutating the point data! Read more
source§fn view_attribute_mut<'b, T: PrimitiveType>(
&'b mut self,
attribute: &PointAttributeDefinition
) -> AttributeViewMut<'a, 'b, Self, T>where
Self: Sized,
'a: 'b,
fn view_attribute_mut<'b, T: PrimitiveType>(
&'b mut self,
attribute: &PointAttributeDefinition
) -> AttributeViewMut<'a, 'b, Self, T>where
Self: Sized,
'a: 'b,
Get a strongly typed view of the
attribute
of all points in this buffer. This view allows mutating
the attribute data! Read moresource§fn as_columnar_mut(&mut self) -> Option<&mut dyn ColumnarBufferMut<'a>>
fn as_columnar_mut(&mut self) -> Option<&mut dyn ColumnarBufferMut<'a>>
Try to get a mutable reference to
self
as a ColumnarBufferMut
. Returns None
if self
does not
implement ColumnarBufferMut
source§impl Clone for VectorBuffer
impl Clone for VectorBuffer
source§fn clone(&self) -> VectorBuffer
fn clone(&self) -> VectorBuffer
Returns a copy 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 VectorBuffer
impl Debug for VectorBuffer
source§impl<T: PointType> FromIterator<T> for VectorBuffer
impl<T: PointType> FromIterator<T> for VectorBuffer
source§fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
fn from_iter<I: IntoIterator<Item = T>>(iter: I) -> Self
Creates a value from an iterator. Read more
source§impl Hash for VectorBuffer
impl Hash for VectorBuffer
source§impl<'a> InterleavedBuffer<'a> for VectorBufferwhere
VectorBuffer: 'a,
impl<'a> InterleavedBuffer<'a> for VectorBufferwhere
VectorBuffer: 'a,
source§fn get_point_ref<'b>(&'b self, index: usize) -> &'b [u8] ⓘwhere
'a: 'b,
fn get_point_ref<'b>(&'b self, index: usize) -> &'b [u8] ⓘwhere
'a: 'b,
Get an immutable slice of the point memory of the point at
index
Read moresource§fn get_point_range_ref<'b>(&'b self, range: Range<usize>) -> &'b [u8] ⓘwhere
'a: 'b,
fn get_point_range_ref<'b>(&'b self, range: Range<usize>) -> &'b [u8] ⓘwhere
'a: 'b,
Get an immutable slice of the memory for the given
range
of points. This is the range-version of [get_point_ref
],
see its documentation for more details Read moresource§fn view_raw_attribute<'b>(
&'b self,
attribute: &PointAttributeMember
) -> RawAttributeView<'b>where
'a: 'b,
fn view_raw_attribute<'b>(
&'b self,
attribute: &PointAttributeMember
) -> RawAttributeView<'b>where
'a: 'b,
Get a raw view over the given
attribute
from this point buffer. Unlike the typed view that view_attribute
returns, this view dereferences to byte slices, but it is potentially more efficient to use than calling
get_attribute
repeatedlysource§impl<'a> InterleavedBufferMut<'a> for VectorBufferwhere
VectorBuffer: 'a,
impl<'a> InterleavedBufferMut<'a> for VectorBufferwhere
VectorBuffer: 'a,
source§fn get_point_mut<'b>(&'b mut self, index: usize) -> &'b mut [u8] ⓘwhere
'a: 'b,
fn get_point_mut<'b>(&'b mut self, index: usize) -> &'b mut [u8] ⓘwhere
'a: 'b,
Get a mutable slice of the point memory of the point at
index
. This is the mutable version of InterleavedBuffer::get_point_ref
Read moresource§fn get_point_range_mut<'b>(&'b mut self, range: Range<usize>) -> &'b mut [u8] ⓘwhere
'a: 'b,
fn get_point_range_mut<'b>(&'b mut self, range: Range<usize>) -> &'b mut [u8] ⓘwhere
'a: 'b,
Get a mutable slice of the memory for the given
range
of points. This is the mutable version of InterleavedBuffer::get_point_range_ref
Read moresource§fn view_raw_attribute_mut<'b>(
&'b mut self,
attribute: &PointAttributeMember
) -> RawAttributeViewMut<'b>where
'a: 'b,
fn view_raw_attribute_mut<'b>(
&'b mut self,
attribute: &PointAttributeMember
) -> RawAttributeViewMut<'b>where
'a: 'b,
Like
view_raw_attribute
, but returns mutable byte slices of the attribute datasource§impl<'a> MakeBufferFromLayout<'a> for VectorBuffer
impl<'a> MakeBufferFromLayout<'a> for VectorBuffer
source§fn new_from_layout(point_layout: PointLayout) -> Self
fn new_from_layout(point_layout: PointLayout) -> Self
Creates a new empty buffer from the given
PointLayout
source§impl<'a> OwningBuffer<'a> for VectorBufferwhere
VectorBuffer: 'a,
impl<'a> OwningBuffer<'a> for VectorBufferwhere
VectorBuffer: 'a,
source§unsafe fn push_points(&mut self, point_bytes: &[u8])
unsafe fn push_points(&mut self, point_bytes: &[u8])
Push the raw memory for a range of points into this buffer. Works similar to
Vec::push
Read moresource§fn resize(&mut self, count: usize)
fn resize(&mut self, count: usize)
Resize this buffer to contain exactly
count
points. If count
is less than self.len()
, point data
is removed, if count
is greater than self.len()
new points are default-constructed (i.e. zero-initialized).source§fn clear(&mut self)
fn clear(&mut self)
Clears the contents of this buffer, removing all point data and setting the length to
0
source§fn append_interleaved<'b, B: InterleavedBuffer<'b>>(&mut self, other: &B)
fn append_interleaved<'b, B: InterleavedBuffer<'b>>(&mut self, other: &B)
Appends data from the given interleaved buffer to the end of this buffer Read more
source§fn append_columnar<'b, B: ColumnarBuffer<'b>>(&mut self, other: &B)
fn append_columnar<'b, B: ColumnarBuffer<'b>>(&mut self, other: &B)
Appends data from the given columnar buffer to the end of this buffer Read more
source§fn append<'b, B: BorrowedBuffer<'b>>(&mut self, other: &B)
fn append<'b, B: BorrowedBuffer<'b>>(&mut self, other: &B)
Appends data from the given buffer to the end of this buffer. Makes no assumptions about the memory
layout of
other
. If you know the memory layout of other
, consider using append_interleaved
or
append_columnar
instead, as these will give better performance. Read moresource§impl PartialEq for VectorBuffer
impl PartialEq for VectorBuffer
source§fn eq(&self, other: &VectorBuffer) -> bool
fn eq(&self, other: &VectorBuffer) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<'a> SliceBuffer<'a> for VectorBufferwhere
Self: 'a,
impl<'a> SliceBuffer<'a> for VectorBufferwhere
Self: 'a,
source§impl<'a> SliceBufferMut<'a> for VectorBufferwhere
Self: 'a,
impl<'a> SliceBufferMut<'a> for VectorBufferwhere
Self: 'a,
type SliceTypeMut = BufferSliceInterleavedMut<'a, VectorBuffer>
impl Eq for VectorBuffer
impl StructuralEq for VectorBuffer
impl StructuralPartialEq for VectorBuffer
Auto Trait Implementations§
impl RefUnwindSafe for VectorBuffer
impl Send for VectorBuffer
impl Sync for VectorBuffer
impl Unpin for VectorBuffer
impl UnwindSafe for VectorBuffer
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
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.