pub struct vtkQuadric(/* private fields */);Expand description
evaluate implicit quadric function
vtkQuadric evaluates the quadric function F(x,y,z) = a0x^2 + a1y^2 + a2z^2 + a3xy + a4yz + a5xz + a6x + a7y + a8z + a9. vtkQuadric is a concrete implementation of vtkImplicitFunction.
Implementations§
Source§impl vtkQuadric
impl vtkQuadric
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkQuadric wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkQuadric
impl Default for vtkQuadric
Auto Trait Implementations§
impl Freeze for vtkQuadric
impl RefUnwindSafe for vtkQuadric
impl !Send for vtkQuadric
impl !Sync for vtkQuadric
impl Unpin for vtkQuadric
impl UnwindSafe for vtkQuadric
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