pub struct vtkParametricEllipsoid(/* private fields */);Expand description
Generate an ellipsoid.
vtkParametricEllipsoid generates an ellipsoid. If all the radii are the same, we have a sphere. An oblate spheroid occurs if RadiusX = RadiusY > RadiusZ. Here the Z-axis forms the symmetry axis. To a first approximation, this is the shape of the earth. A prolate spheroid occurs if RadiusX = RadiusY < RadiusZ.
For further information about this surface, please consult the technical description “Parametric surfaces” in http://www.vtk.org/publications in the “VTK Technical Documents” section in the VTk.org web pages.
@par Thanks: Andrew Maclean andrew.amaclean@gmail.com for creating and contributing the class.
Implementations§
Source§impl vtkParametricEllipsoid
impl vtkParametricEllipsoid
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new vtkParametricEllipsoid wrapped inside vtkNew
Trait Implementations§
Source§impl Default for vtkParametricEllipsoid
impl Default for vtkParametricEllipsoid
Auto Trait Implementations§
impl Freeze for vtkParametricEllipsoid
impl RefUnwindSafe for vtkParametricEllipsoid
impl !Send for vtkParametricEllipsoid
impl !Sync for vtkParametricEllipsoid
impl Unpin for vtkParametricEllipsoid
impl UnwindSafe for vtkParametricEllipsoid
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