1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
Helpers
=======
The ``pyvista`` module contains several functions to simplify the
creation and manipulation of meshes or interfacing with VTK datasets.
Wrap a VTK Dataset
~~~~~~~~~~~~~~~~~~
.. automethod:: pyvista.core.utilities.helpers.wrap
Simplified Triangular Mesh Construction
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. automethod:: pyvista.core.utilities.points.make_tri_mesh
Lines from Points
~~~~~~~~~~~~~~~~~
.. automethod:: pyvista.core.utilities.points.lines_from_points
Line Segments from Points
~~~~~~~~~~~~~~~~~~~~~~~~~
.. automethod:: pyvista.core.utilities.points.line_segments_from_points
Convert to and from VTK Data Types
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
.. automethod:: pyvista.core.utilities.arrays.convert_array
Fit Plane to Points
~~~~~~~~~~~~~~~~~~~
.. automethod:: pyvista.core.utilities.points.fit_plane_to_points
Fit Line to Points
~~~~~~~~~~~~~~~~~~~
.. automethod:: pyvista.core.utilities.points.fit_line_to_points
|