pub struct vtkCellAttributeCalculator(/* private fields */);Expand description
Perform a per-cell calculation on a vtkCellAttribute.
This empty class serves as a common base class for calculators that compute quantities based on cell-attribute data.
Examples of calculators include
- computing interpolated values;
- computing spatial derivatives (such as the Jacobian or Hessian matrices); or
- computing integrals over an entire cell.
Each type of calculator provides its own abstract subclass with virtual methods and then per-cell-type, per-attribute-type concrete implementations.
@sa vtkCellGridAttribute
Implementations§
Source§impl vtkCellAttributeCalculator
impl vtkCellAttributeCalculator
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkCellAttributeCalculator wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkCellAttributeCalculator
impl Default for vtkCellAttributeCalculator
Auto Trait Implementations§
impl Freeze for vtkCellAttributeCalculator
impl RefUnwindSafe for vtkCellAttributeCalculator
impl !Send for vtkCellAttributeCalculator
impl !Sync for vtkCellAttributeCalculator
impl Unpin for vtkCellAttributeCalculator
impl UnwindSafe for vtkCellAttributeCalculator
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