pub struct vtkConvexPointSet(/* private fields */);Expand description
a 3D cell defined by a set of convex points
vtkConvexPointSet is a concrete implementation that represents a 3D cell defined by a convex set of points. An example of such a cell is an octant (from an octree). vtkConvexPointSet uses the ordered triangulations approach (vtkOrderedTriangulator) to create triangulations guaranteed to be compatible across shared faces. This allows a general approach to processing complex, convex cell types.
@sa vtkHexahedron vtkPyramid vtkTetra vtkVoxel vtkWedge
Implementations§
Source§impl vtkConvexPointSet
impl vtkConvexPointSet
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkConvexPointSet wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkConvexPointSet
impl Default for vtkConvexPointSet
Auto Trait Implementations§
impl Freeze for vtkConvexPointSet
impl RefUnwindSafe for vtkConvexPointSet
impl !Send for vtkConvexPointSet
impl !Sync for vtkConvexPointSet
impl Unpin for vtkConvexPointSet
impl UnwindSafe for vtkConvexPointSet
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