Safe wrapper for lib3Delight’s OpenVDB metadata query API.
This crate needs 3Delight at runtime.
If you build the crate with the feature link_lib3delight
you also need
this installed at compile time.
toml
[build-dependencies.dl-openvdb-query]
version = "0.1.0"
features = ["link_lib3delight"]
```rust let openvdbquery = dlopenvdbquery::DlOpenVdbQuery::new( "tests/sphere_points.vdb", ) .unwrap();
let min = -0.9416000247001648; let max = 1.0593000277876854; asserteq!( [min, min, min, max, max, max], openvdbquery.boundingbox().unwrap() ); asserteq!( vec!["points"], openvdbquery.gridnames().unwrap() ); ```