pub struct vtkStructuredPoints(/* private fields */);Expand description
A subclass of ImageData.
StructuredPoints is a subclass of ImageData that requires the data extent to exactly match the update extent. Normal image data allows that the data extent may be larger than the update extent. StructuredPoints also defines the origin differently that vtkImageData. For structured points the origin is the location of first point. Whereas images define the origin as the location of point 0, 0, 0. Image Origin is stored in ivar, and structured points have special methods for setting/getting the origin/extents.
Implementations§
Source§impl vtkStructuredPoints
impl vtkStructuredPoints
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkStructuredPoints wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkStructuredPoints
impl Default for vtkStructuredPoints
Auto Trait Implementations§
impl Freeze for vtkStructuredPoints
impl RefUnwindSafe for vtkStructuredPoints
impl !Send for vtkStructuredPoints
impl !Sync for vtkStructuredPoints
impl Unpin for vtkStructuredPoints
impl UnwindSafe for vtkStructuredPoints
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