vtk-pure-rs 0.2.0

Pure Rust visualization toolkit — data structures, filters, I/O, rendering
Documentation
pub mod prelude;
mod data_array;
mod cell_array;
mod points;
mod field_data;
mod attributes;
mod traits;
mod poly_data;
mod image_data;
mod unstructured_grid;
mod rectilinear_grid;
mod structured_grid;
mod multi_block;
mod table;
pub mod kd_tree;
pub mod octree;
mod selection;
pub mod cell_locator;
pub mod graph;
mod explicit_structured_grid;
mod hyper_tree_grid;
pub mod temporal;
pub mod table_stats;
pub mod poly_data_builder;
pub mod spatial_hash;
mod molecule;
pub mod temporal_cache;
pub mod obb_tree;
pub mod partitioned;
pub mod reeb_graph;
pub mod amr_dataset;
pub mod generic_dataset;
pub mod cell_grid;
pub mod mmap_array;
pub mod streaming;
pub use data_array::{DataArray, AnyDataArray, ArrayStatistics, DataArrayTupleIter};
pub use cell_array::CellArray;
pub use points::{Points, PointsIter};
pub use field_data::FieldData;
pub use attributes::DataSetAttributes;
pub use traits::{DataObject, DataSet};
pub use poly_data::PolyData;
pub use image_data::ImageData;
pub use unstructured_grid::UnstructuredGrid;
pub use rectilinear_grid::RectilinearGrid;
pub use structured_grid::StructuredGrid;
pub use multi_block::{MultiBlockDataSet, Block};
pub use table::Table;
pub use kd_tree::KdTree;
pub use selection::{Selection, SelectionNode, SelectionContentType, SelectionFieldType};
pub use octree::OctreePointLocator;
pub use cell_locator::CellLocator;
pub use graph::{Graph, Tree};
pub use explicit_structured_grid::ExplicitStructuredGrid;
pub use hyper_tree_grid::HyperTreeGrid;
pub use molecule::Molecule;
pub use poly_data_builder::PolyDataBuilder;
pub use temporal::TemporalDataSet;
pub use partitioned::{PartitionedDataSet, PartitionedDataSetCollection};
pub use reeb_graph::{ReebGraph, ReebNode, ReebArc, NodeType};
pub use amr_dataset::{AMRDataSet, AMRLevel};
pub use generic_dataset::AnyDataSet;