-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSurface.h
105 lines (89 loc) · 3.22 KB
/
Surface.h
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
/**
*
* \copyright
* Copyright (c) 2012-2017, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#pragma once
#include <vector>
#include <memory>
#include "GeoObject.h"
#include "Point.h"
#include "AABB.h"
namespace GeoLib {
class Polyline;
class Triangle;
class SurfaceGrid;
/**
* \ingroup GeoLib
*
* \brief A Surface is represented by Triangles. It consists of a reference
* to a vector of (pointers to) points (_sfc_pnts) and a vector that stores
* the Triangles consisting of points from _sfc_pnts.
* */
class Surface final : public GeoObject
{
public:
explicit Surface(const std::vector<Point*>& pnt_vec);
Surface(Surface const& src);
~Surface();
Surface(Surface && src) = delete;
Surface& operator=(Surface const& src) = delete;
Surface& operator=(Surface && src) = delete;
/// return a geometry type
GEOTYPE getGeoType() const override { return GEOTYPE::SURFACE; }
/**
* adds three indices describing a triangle and updates the bounding box
* */
void addTriangle(std::size_t pnt_a, std::size_t pnt_b, std::size_t pnt_c);
/// Triangulates a new surface based on closed polyline.
static Surface* createSurface(const Polyline& ply);
/**
* returns the number of triangles describing the Surface
* */
std::size_t getNumberOfTriangles() const;
/** \brief const access operator for the access to the i-th Triangle of the
* surface.
*/
const Triangle* operator[](std::size_t i) const;
/**
* is the given point in the bounding volume of the surface
*/
bool isPntInBoundingVolume(MathLib::Point3d const& pnt) const;
/**
* is the given point pnt located in the surface
* @param pnt the point
* @param eps geometric tolerance for the search
* @return true if the point is contained in the surface
*/
bool isPntInSfc(MathLib::Point3d const& pnt, double eps) const;
/**
* find a triangle in which the given point is located
* @param pnt the point
* @return a pointer to a triangle. nullptr is returned if the point is not
* contained in the surface
*/
const Triangle* findTriangle(MathLib::Point3d const& pnt) const;
const std::vector<Point*>* getPointVec() const { return &_sfc_pnts; }
/**
* method allows access to the internal axis aligned bounding box
* @return axis aligned bounding box
*/
AABB const& getAABB() const { return *_bounding_volume; }
protected:
/** a vector of pointers to Points */
const std::vector<Point*>& _sfc_pnts;
/** position of pointers to the geometric points */
std::vector<Triangle*> _sfc_triangles;
/** bounding volume is an axis aligned bounding box */
std::unique_ptr<AABB> _bounding_volume;
/// The surface grid is a helper data structure to accelerate the point
/// search. The method addTriangle() invalidates/resets the surface grid.
/// A valid surface grid is created in case the const method isPntInSfc() is
/// called and a valid surface grid is not existing.
mutable std::unique_ptr<SurfaceGrid> _surface_grid;
};
}