pub struct vtkStructuredCellArray(/* private fields */);Expand description
implicit object to represent cell connectivity
vtkStructuredCellArray stores dataset topologies as an structured connectivity table listing the point ids that make up each cell.
Internally, the connectivity is stored as a vtkImplicitArray that is constructed using the SetData function by providing the dimensions of the dataset and a flag indicating whether the data should use voxel/pixel orientation.
This class was designed as a more performant alternative to vtkStructuredData::GetCellPoints.
@sa vtkCellArray vtkAbstractCellArray
Implementations§
Source§impl vtkStructuredCellArray
impl vtkStructuredCellArray
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkStructuredCellArray wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkStructuredCellArray
impl Default for vtkStructuredCellArray
Auto Trait Implementations§
impl Freeze for vtkStructuredCellArray
impl RefUnwindSafe for vtkStructuredCellArray
impl !Send for vtkStructuredCellArray
impl !Sync for vtkStructuredCellArray
impl Unpin for vtkStructuredCellArray
impl UnwindSafe for vtkStructuredCellArray
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