pub struct vtkCellData(/* private fields */);Expand description
represent and manipulate cell attribute data
vtkCellData is a class that is used to represent and manipulate cell attribute data (e.g., scalars, vectors, normals, texture coordinates, etc.) Special methods are provided to work with filter objects, such as passing data through filter, copying data from one cell to another, and interpolating data given cell interpolation weights.
By default, GhostTypesToSkip is set to DUPLICATECELL | HIDDENCELL | REFINEDCELL.
See vtkDataSetAttributes for the definition of those constants.
Implementations§
Source§impl vtkCellData
impl vtkCellData
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkCellData wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkCellData
impl Default for vtkCellData
Auto Trait Implementations§
impl Freeze for vtkCellData
impl RefUnwindSafe for vtkCellData
impl !Send for vtkCellData
impl !Sync for vtkCellData
impl Unpin for vtkCellData
impl UnwindSafe for vtkCellData
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