1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
|
// Copyright (c) 2023 GeometryFactory Sarl (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1.1/Kinetic_space_partition/include/CGAL/KSP_3/Intersection_graph.h $
// $Id: include/CGAL/KSP_3/Intersection_graph.h 08b27d3db14 $
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Sven Oesau, Florent Lafarge, Dmitry Anisimov, Simon Giraudot
#ifndef CGAL_KSP_3_INTERSECTION_GRAPH_H
#define CGAL_KSP_3_INTERSECTION_GRAPH_H
#include <CGAL/license/Kinetic_space_partition.h>
// Boost includes.
#include <boost/graph/adjacency_list.hpp>
// CGAL includes.
#include <CGAL/Cartesian_converter.h>
#include <CGAL/Polygon_2.h>
// Internal includes.
#include <CGAL/KSP/utils.h>
namespace CGAL {
namespace KSP_3 {
namespace internal {
#ifdef DOXYGEN_RUNNING
#else
template<typename GeomTraits, typename IntersectionKernel>
class Intersection_graph {
public:
using Kernel = GeomTraits;
using Intersection_kernel = IntersectionKernel;
using IkFT = typename Intersection_kernel::FT;
using Point_2 = typename Intersection_kernel::Point_2;
using Point_3 = typename Intersection_kernel::Point_3;
using Segment_3 = typename Intersection_kernel::Segment_3;
using Line_3 = typename Intersection_kernel::Line_3;
using Polygon_2 = typename CGAL::Polygon_2<Intersection_kernel>;
struct Vertex_property {
Point_3 point;
Vertex_property() {}
Vertex_property(const Point_3& point) : point(point) {}
};
using Kinetic_interval = std::vector<std::pair<IkFT, IkFT> >;
struct Edge_property {
std::size_t line;
std::size_t order;
std::map<std::size_t, std::pair<std::size_t, std::size_t> > faces; // For each intersecting support plane there is one pair of adjacent faces (or less if the edge is on the bbox)
std::set<std::size_t> planes;
std::map<std::size_t, Kinetic_interval> intervals; // Maps support plane index to the kinetic interval. std::pair<FT, FT> is the barycentric coordinate and intersection time.
Edge_property() : line(std::size_t(-1)), order(edge_counter++) { }
Edge_property(const Edge_property& e) = default;
const Edge_property& operator=(const Edge_property& other) {
line = other.line;
faces = other.faces;
planes = other.planes;
intervals = other.intervals;
return *this;
}
private:
static std::size_t edge_counter;
};
using Kinetic_interval_iterator = typename std::map<std::size_t, Kinetic_interval>::const_iterator;
using Graph = boost::adjacency_list<
boost::setS, boost::vecS, boost::undirectedS,
Vertex_property, Edge_property>;
using Vertex_descriptor = typename boost::graph_traits<Graph>::vertex_descriptor;
using Edge_descriptor = typename boost::graph_traits<Graph>::edge_descriptor;
using Face_descriptor = std::size_t;
struct lex {
bool operator()(const Edge_descriptor& a, const Edge_descriptor& b) const {
Edge_property* pa = (Edge_property*)a.get_property();
Edge_property* pb = (Edge_property*)b.get_property();
return pa->order < pb->order;
}
};
using IEdge_set = std::set<Edge_descriptor, lex>;
struct Face_property {
Face_property() : support_plane(static_cast<std::size_t>(-1)), part_of_partition(false) {}
Face_property(std::size_t support_plane_idx) : support_plane(support_plane_idx), part_of_partition(false) {}
std::size_t support_plane;
bool part_of_partition;
CGAL::Polygon_2<Intersection_kernel> poly;
std::vector<Point_2> pts;
std::vector<Edge_descriptor> edges;
std::vector<Vertex_descriptor> vertices;
bool is_part(Edge_descriptor a, Edge_descriptor b) {
std::size_t aidx = std::size_t(-1);
for (std::size_t i = 0; i < edges.size(); i++) {
if (edges[i] == a) {
aidx = i;
break;
}
}
if (aidx == std::size_t(-1))
return false;
if (edges[(aidx + 1) % edges.size()] == b || edges[(aidx + edges.size() - 1) % edges.size()] == b)
return true;
return false;
}
};
private:
Graph m_graph;
std::vector<Line_3> m_lines;
std::size_t m_nb_lines_on_bbox;
std::map<Point_3, Vertex_descriptor> m_map_points;
std::map<std::vector<std::size_t>, Vertex_descriptor> m_map_vertices;
std::vector<Face_property> m_ifaces;
std::vector<bool> m_initial_part_of_partition;
std::vector<std::map<std::size_t, Kinetic_interval> > m_initial_intervals;
public:
Intersection_graph() :
m_nb_lines_on_bbox(0)
{ }
void clear() {
m_graph.clear();
m_map_points.clear();
m_map_vertices.clear();
}
std::size_t number_of_vertices() const {
return static_cast<std::size_t>(boost::num_vertices(m_graph));
}
std::size_t number_of_faces() const {
return m_ifaces.size();
}
static Vertex_descriptor null_ivertex() {
return boost::graph_traits<Graph>::null_vertex();
}
static Edge_descriptor null_iedge() {
return Edge_descriptor(null_ivertex(), null_ivertex(), nullptr);
}
static Face_descriptor null_iface() {
return std::size_t(-1);
}
std::size_t add_line(const Line_3& line) {
m_lines.push_back(line);
return m_lines.size() - 1;
}
std::size_t nb_lines() const { return m_lines.size(); }
const std::pair<Vertex_descriptor, bool> add_vertex(const Point_3& point) {
const auto pair = m_map_points.insert(std::make_pair(point, Vertex_descriptor()));
const auto is_inserted = pair.second;
if (is_inserted) {
pair.first->second = boost::add_vertex(m_graph);
m_graph[pair.first->second].point = point;
}
return std::make_pair(pair.first->second, is_inserted);
}
const std::pair<Vertex_descriptor, bool> add_vertex(
const Point_3& point, const std::vector<std::size_t>& intersected_planes) {
const auto pair = m_map_vertices.insert(std::make_pair(intersected_planes, Vertex_descriptor()));
const auto is_inserted = pair.second;
if (is_inserted) {
pair.first->second = boost::add_vertex(m_graph);
m_graph[pair.first->second].point = point;
}
return std::make_pair(pair.first->second, is_inserted);
}
const std::pair<Edge_descriptor, bool> add_edge(
const Vertex_descriptor& source, const Vertex_descriptor& target,
const std::size_t support_plane_idx) {
const auto out = boost::add_edge(source, target, m_graph);
m_graph[out.first].planes.insert(support_plane_idx);
return out;
}
template<typename IndexContainer>
const std::pair<Edge_descriptor, bool> add_edge(
const Vertex_descriptor& source, const Vertex_descriptor& target,
const IndexContainer& support_planes_idx) {
const auto out = boost::add_edge(source, target, m_graph);
for (const auto support_plane_idx : support_planes_idx) {
m_graph[out.first].planes.insert(support_plane_idx);
}
return out;
}
const std::pair<Edge_descriptor, bool> add_edge(const Point_3& source, const Point_3& target) {
return add_edge(add_vertex(source).first, add_vertex(target).first);
}
std::size_t add_face(std::size_t support_plane_idx) {
m_ifaces.push_back(Face_property(support_plane_idx));
return std::size_t(m_ifaces.size() - 1);
}
bool add_face(std::size_t sp_idx, const Edge_descriptor& edge, const Face_descriptor& idx) {
auto pair = m_graph[edge].faces.insert(std::make_pair(sp_idx, std::pair<Face_descriptor, Face_descriptor>(-1, -1)));
if (pair.first->second.first == static_cast<std::size_t>(-1)) {
pair.first->second.first = idx;
return true;
}
else if (pair.first->second.second == static_cast<std::size_t>(-1)) {
pair.first->second.second = idx;
return true;
}
return false;
}
void get_faces(std::size_t sp_idx, const Edge_descriptor& edge, std::pair<Face_descriptor, Face_descriptor>& pair) const {
auto it = m_graph[edge].faces.find(sp_idx);
if (it != m_graph[edge].faces.end())
pair = it->second;
}
const Face_property& face(Face_descriptor idx) const {
CGAL_assertion(idx < m_ifaces.size());
return m_ifaces[idx];
}
Face_property& face(Face_descriptor idx) {
CGAL_assertion(idx < m_ifaces.size());
return m_ifaces[idx];
}
const Edge_property& edge(Edge_descriptor idx) const {
return m_graph[idx];
}
void set_line(const Edge_descriptor& edge, const std::size_t line_idx) {
m_graph[edge].line = line_idx;
}
std::size_t line(const Edge_descriptor& edge) const {
return m_graph[edge].line;
}
const Line_3& line(std::size_t line_idx) const {
return m_lines[line_idx];
}
bool line_is_on_bbox(std::size_t line_idx) const {
return line_idx < m_nb_lines_on_bbox;
}
bool line_is_bbox_edge(std::size_t line_idx) const {
return line_idx < 12;
}
bool iedge_is_on_bbox(Edge_descriptor e) {
return line(e) < m_nb_lines_on_bbox;
}
void finished_bbox() {
m_nb_lines_on_bbox = m_lines.size();
}
void initialization_done() {
auto e = edges();
m_initial_intervals.resize(e.size());
std::size_t idx = 0;
for (const auto& edge : e)
m_initial_intervals[idx++] = m_graph[edge].intervals;
m_initial_part_of_partition.resize(m_ifaces.size());
for (idx = 0; idx < m_ifaces.size(); idx++)
m_initial_part_of_partition[idx] = m_ifaces[idx].part_of_partition;
}
void reset_to_initialization() {
auto e = edges();
CGAL_assertion(e.size() == m_initial_intervals.size());
std::size_t idx = 0;
for (auto edge : e)
m_graph[edge].intervals = m_initial_intervals[idx++];
CGAL_assertion(m_ifaces.size() == m_initial_part_of_partition.size());
for (idx = 0; idx < m_ifaces.size(); idx++)
m_ifaces[idx].part_of_partition = m_initial_part_of_partition[idx];
}
const std::pair<Edge_descriptor, Edge_descriptor>
split_edge(const Edge_descriptor& edge, const Vertex_descriptor& vertex) {
const auto source = boost::source(edge, m_graph);
const auto target = boost::target(edge, m_graph);
const auto prop = m_graph[edge];
boost::remove_edge(edge, m_graph);
bool is_inserted;
Edge_descriptor sedge;
std::tie(sedge, is_inserted) = boost::add_edge(source, vertex, m_graph);
if (!is_inserted) {
std::cerr << "WARNING: " << segment_3(edge) << " " << point_3(vertex) << std::endl;
}
CGAL_assertion(is_inserted);
m_graph[sedge] = prop;
Edge_descriptor tedge;
std::tie(tedge, is_inserted) = boost::add_edge(vertex, target, m_graph);
if (!is_inserted) {
std::cerr << "WARNING: " << segment_3(edge) << " " << point_3(vertex) << std::endl;
}
CGAL_assertion(is_inserted);
m_graph[tedge] = prop;
return std::make_pair(sedge, tedge);
}
decltype(auto) vertices() const {
return CGAL::make_range(boost::vertices(m_graph));
}
decltype(auto) edges() const {
return CGAL::make_range(boost::edges(m_graph));
}
std::vector<Face_descriptor>& faces() {
return m_ifaces;
}
const std::vector<Face_descriptor>& faces() const {
return m_ifaces;
}
const Vertex_descriptor source(const Edge_descriptor& edge) const {
return boost::source(edge, m_graph);
}
const Vertex_descriptor target(const Edge_descriptor& edge) const {
return boost::target(edge, m_graph);
}
bool is_edge(const Vertex_descriptor& source, const Vertex_descriptor& target) const {
return boost::edge(source, target, m_graph).second;
}
const Edge_descriptor edge(const Vertex_descriptor& source, const Vertex_descriptor& target) const {
return boost::edge(source, target, m_graph).first;
}
decltype(auto) incident_edges(const Vertex_descriptor& vertex) const {
return CGAL::make_range(boost::out_edges(vertex, m_graph));
}
const std::set<std::size_t>& intersected_planes(const Edge_descriptor& edge) const {
return m_graph[edge].planes;
}
std::set<std::size_t>& intersected_planes(const Edge_descriptor& edge) {
return m_graph[edge].planes;
}
const std::pair<Kinetic_interval_iterator, Kinetic_interval_iterator> kinetic_intervals(const Edge_descriptor& edge) {
return std::pair<Kinetic_interval_iterator, Kinetic_interval_iterator>(m_graph[edge].intervals.begin(), m_graph[edge].intervals.end());
}
Kinetic_interval& kinetic_interval(const Edge_descriptor& edge, std::size_t sp_idx) {
return m_graph[edge].intervals[sp_idx];
}
const Point_3& point_3(const Vertex_descriptor& vertex) const {
return m_graph[vertex].point;
}
const Segment_3 segment_3(const Edge_descriptor& edge) const {
return Segment_3(
m_graph[boost::source(edge, m_graph)].point,
m_graph[boost::target(edge, m_graph)].point);
}
const Line_3 line_3(const Edge_descriptor& edge) const {
return Line_3(
m_graph[boost::source(edge, m_graph)].point,
m_graph[boost::target(edge, m_graph)].point);
}
};
template<typename GeomTraits, typename IntersectionKernel> std::size_t Intersection_graph<GeomTraits, IntersectionKernel>::Edge_property::edge_counter = 0;
#endif //DOXYGEN_RUNNING
} // namespace internal
} // namespace KSP_3
} // namespace CGAL
#endif // CGAL_KSP_3_INTERSECTION_GRAPH_H
|