pub struct vtkTriangleStrip(/* private fields */);Expand description
a cell that represents a triangle strip
vtkTriangleStrip is a concrete implementation of vtkCell to represent a 2D triangle strip. A triangle strip is a compact representation of triangles connected edge to edge in strip fashion. The connectivity of a triangle strip is three points defining an initial triangle, then for each additional triangle, a single point that, combined with the previous two points, defines the next triangle.
Implementations§
Source§impl vtkTriangleStrip
impl vtkTriangleStrip
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkTriangleStrip wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkTriangleStrip
impl Default for vtkTriangleStrip
Auto Trait Implementations§
impl Freeze for vtkTriangleStrip
impl RefUnwindSafe for vtkTriangleStrip
impl !Send for vtkTriangleStrip
impl !Sync for vtkTriangleStrip
impl Unpin for vtkTriangleStrip
impl UnwindSafe for vtkTriangleStrip
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