pub struct vtkCellGrid(/* private fields */);Expand description
Visualization data composed of cells of arbitrary type.
vtkCellGrid inherits vtkDataObject in order to introduce the concept of cells that, instead of relying on spatial points to specify their shape, rely on degrees of freedom (which may or may not be embedded in a world coordinate system).
The degrees of freedom that define cells and the functions using those cells as their domain are provided in data arrays. The arrays are partitioned into groups (vtkDataSetAttributes) by the registered cell types. Each array in a group has the same number of tuples.
@sa vtkDataObject vtkDataSetAttributes
Implementations§
Source§impl vtkCellGrid
impl vtkCellGrid
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkCellGrid wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkCellGrid
impl Default for vtkCellGrid
Auto Trait Implementations§
impl Freeze for vtkCellGrid
impl RefUnwindSafe for vtkCellGrid
impl !Send for vtkCellGrid
impl !Sync for vtkCellGrid
impl Unpin for vtkCellGrid
impl UnwindSafe for vtkCellGrid
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