ecitygml-core 0.0.2-alpha.5

Core primitives and operations for processing CityGML data.
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(Debug, Clone, PartialEq)]
pub struct GeometryReference {
    pub href: String,
}

impl GeometryReference {
    pub fn new(href: String) -> Self {
        Self { href }
    }
}