ecitygml_converter/lib.rs
1//! `ecitygml-converter` is a library for converting [CityGML](https://www.ogc.org/standards/citygml/) data to other representations.
2//!
3
4pub use ecitygml_converter_core::{Error, citymodel_to_mesh, triangulate};
5
6#[cfg(feature = "voxel")]
7pub use ecitygml_converter_core::citymodel_to_voxel;
8
9#[cfg(feature = "rosbag")]
10pub use ecitygml_converter_core::citymodel_to_rosbag;
11
12pub use ecitygml_converter_io as io;