pub struct vtkQuadratureSchemeDefinition(/* private fields */);Expand description
An Elemental data type that holds a definition of a numerical quadrature scheme. The definition contains the requisite information to interpolate to the so called quadrature points of the specific scheme. namely:
1) A matrix of shape function weights(shape functions evaluated at parametric coordinates of the quadrature points). 2) The number of quadrature points and cell nodes. These parameters size the matrix, and allow for convenient evaluation by users of the definition.
Implementations§
Source§impl vtkQuadratureSchemeDefinition
impl vtkQuadratureSchemeDefinition
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkQuadratureSchemeDefinition wrapped inside vtkNew
Trait Implementations§
Auto Trait Implementations§
impl Freeze for vtkQuadratureSchemeDefinition
impl RefUnwindSafe for vtkQuadratureSchemeDefinition
impl !Send for vtkQuadratureSchemeDefinition
impl !Sync for vtkQuadratureSchemeDefinition
impl Unpin for vtkQuadratureSchemeDefinition
impl UnwindSafe for vtkQuadratureSchemeDefinition
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