1pub mod types;
5pub mod data;
6pub mod filters;
7
8#[cfg(feature = "io-common")]
10pub mod io;
11
12#[cfg(feature = "render")]
14pub mod render;
15#[cfg(feature = "render-wgpu")]
16pub mod render_wgpu;
17
18#[cfg(feature = "parallel")]
20pub mod parallel;
21
22pub use types::{Scalar, ScalarType, VtkError, BoundingBox, CellType};
24pub use data::{DataArray, AnyDataArray, CellArray, Points, FieldData, DataSetAttributes,
25 DataObject, DataSet, PolyData, ImageData, UnstructuredGrid, RectilinearGrid,
26 StructuredGrid, MultiBlockDataSet, Table, KdTree, Selection};
27
28pub mod prelude {
29 pub use crate::data::prelude::*;
30 pub use crate::{VtkError, BoundingBox, CellType};
31}