| 19 | namespace generative::noding { |
| 20 | |
| 21 | GeometryGraph::GeometryGraph(const geos::geom::Geometry& multilinestring) : |
| 22 | m_factory(*multilinestring.getFactory()) |
| 23 | { |
| 24 | build(multilinestring); |
| 25 | } |
| 26 | |
| 27 | GeometryGraph::GeometryGraph(std::vector<GeometryGraph::Node>&& nodes, |
| 28 | const geos::geom::GeometryFactory& factory) : |
nothing calls this directly
no outgoing calls
no test coverage detected