File: __init__.py

package info (click to toggle)
python-pyvista 0.44.1-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 159,804 kB
  • sloc: python: 72,164; sh: 118; makefile: 68
file content (29 lines) | stat: -rw-r--r-- 1,126 bytes parent folder | download
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
"""Plotting utilities."""

# ruff: noqa: F401
from __future__ import annotations

from .algorithms import active_scalars_algorithm
from .algorithms import add_ids_algorithm
from .algorithms import algorithm_to_mesh_handler
from .algorithms import cell_data_to_point_data_algorithm
from .algorithms import crinkle_algorithm
from .algorithms import decimation_algorithm
from .algorithms import extract_surface_algorithm
from .algorithms import outline_algorithm
from .algorithms import point_data_to_cell_data_algorithm
from .algorithms import pointset_to_polydata_algorithm
from .algorithms import set_algorithm_input
from .algorithms import triangulate_algorithm
from .cubemap import cubemap
from .cubemap import cubemap_from_filenames
from .gl_checks import check_depth_peeling
from .gl_checks import uses_egl
from .regression import compare_images
from .regression import image_from_window
from .regression import remove_alpha
from .regression import run_image_filter
from .regression import wrap_image_array
from .sphinx_gallery import Scraper
from .sphinx_gallery import _get_sg_image_scraper
from .xvfb import start_xvfb