vtk-pure-rs 0.2.0

Pure Rust visualization toolkit — data structures, filters, I/O, rendering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod scalar;
mod error;
mod bounds;
mod cell_type;
pub mod implicit;
pub mod higher_order;
pub mod color;
pub mod math;
pub mod progress;
pub mod sparse;
pub mod ode;
pub mod timer;
pub use scalar::{Scalar, ScalarType};
pub use error::VtkError;
pub use bounds::BoundingBox;
pub use cell_type::CellType;
pub use implicit::{ImplicitFunction, ImplicitPlane, ImplicitSphere, ImplicitBox};