pub struct vtkPointsProjectedHull(/* private fields */);Expand description
the convex hull of the orthogonal
projection of the vtkPoints in the 3 coordinate directions
a subclass of vtkPoints, it maintains the counter clockwise convex hull of the points (projected orthogonally in the three coordinate directions) and has a method to test for intersection of that hull with an axis aligned rectangle. This is used for intersection tests of 3D volumes.
Implementations§
Source§impl vtkPointsProjectedHull
impl vtkPointsProjectedHull
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkPointsProjectedHull wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkPointsProjectedHull
impl Default for vtkPointsProjectedHull
Auto Trait Implementations§
impl Freeze for vtkPointsProjectedHull
impl RefUnwindSafe for vtkPointsProjectedHull
impl !Send for vtkPointsProjectedHull
impl !Sync for vtkPointsProjectedHull
impl Unpin for vtkPointsProjectedHull
impl UnwindSafe for vtkPointsProjectedHull
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