File: hacdManifoldMesh.h

package info (click to toggle)
bullet 3.06%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 15,012 kB
  • sloc: cpp: 243,705; lisp: 12,017; ansic: 11,175; python: 626; makefile: 133; sh: 75
file content (251 lines) | stat: -rw-r--r-- 9,004 bytes parent folder | download | duplicates (3)
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
/* Copyright (c) 2011 Khaled Mamou (kmamou at gmail dot com)
All rights reserved.


 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

 3. The names of the contributors may not be used to endorse or promote products derived from this software without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

/* Copyright (c) 2011 Khaled Mamou (kmamou at gmail dot com)
 All rights reserved.
 
 
 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
 
 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
 
 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
 
 3. The names of the contributors may not be used to endorse or promote products derived from this software without specific prior written permission.
 
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
#pragma once
#ifndef HACD_MANIFOLD_MESH_H
#define HACD_MANIFOLD_MESH_H
#include <iostream>
#include <fstream>
#include "hacdVersion.h"
#include "hacdCircularList.h"
#include "hacdVector.h"
#include <set>
namespace HACD
{
class TMMTriangle;
class TMMEdge;
class TMMesh;
class ICHull;
class HACD;

class DPoint
{
public:
	DPoint(Real dist = 0, bool computed = false, bool distOnly = false)
		: m_dist(dist),
		  m_computed(computed),
		  m_distOnly(distOnly){};
	~DPoint(){};

private:
	Real m_dist;
	bool m_computed;
	bool m_distOnly;
	friend class TMMTriangle;
	friend class TMMesh;
	friend class GraphVertex;
	friend class GraphEdge;
	friend class Graph;
	friend class ICHull;
	friend class HACD;
};

//!	Vertex data structure used in a triangular manifold mesh (TMM).
class TMMVertex
{
public:
	TMMVertex(void);
	~TMMVertex(void);

private:
	Vec3<Real> m_pos;
	long m_name;
	size_t m_id;
	CircularListElement<TMMEdge> *m_duplicate;  // pointer to incident cone edge (or NULL)
	bool m_onHull;
	bool m_tag;
	TMMVertex(const TMMVertex &rhs);

	friend class HACD;
	friend class ICHull;
	friend class TMMesh;
	friend class TMMTriangle;
	friend class TMMEdge;
};

//!	Edge data structure used in a triangular manifold mesh (TMM).
class TMMEdge
{
public:
	TMMEdge(void);
	~TMMEdge(void);

private:
	size_t m_id;
	CircularListElement<TMMTriangle> *m_triangles[2];
	CircularListElement<TMMVertex> *m_vertices[2];
	CircularListElement<TMMTriangle> *m_newFace;

	TMMEdge(const TMMEdge &rhs);

	friend class HACD;
	friend class ICHull;
	friend class TMMTriangle;
	friend class TMMVertex;
	friend class TMMesh;
};

//!	Triangle data structure used in a triangular manifold mesh (TMM).
class TMMTriangle
{
public:
	TMMTriangle(void);
	~TMMTriangle(void);

private:
	size_t m_id;
	CircularListElement<TMMEdge> *m_edges[3];
	CircularListElement<TMMVertex> *m_vertices[3];
	std::set<long> m_incidentPoints;
	bool m_visible;

	TMMTriangle(const TMMTriangle &rhs);

	friend class HACD;
	friend class ICHull;
	friend class TMMesh;
	friend class TMMVertex;
	friend class TMMEdge;
};

class Material
{
public:
	Material(void);
	~Material(void) {}
	//    private:
	Vec3<double> m_diffuseColor;
	double m_ambientIntensity;
	Vec3<double> m_specularColor;
	Vec3<double> m_emissiveColor;
	double m_shininess;
	double m_transparency;

	friend class TMMesh;
	friend class HACD;
};

//!	triangular manifold mesh data structure.
class TMMesh
{
public:
	//! Returns the number of vertices>
	inline size_t GetNVertices() const { return m_vertices.GetSize(); }
	//! Returns the number of edges
	inline size_t GetNEdges() const { return m_edges.GetSize(); }
	//! Returns the number of triangles
	inline size_t GetNTriangles() const { return m_triangles.GetSize(); }
	//! Returns the vertices circular list
	inline const CircularList<TMMVertex> &GetVertices() const { return m_vertices; }
	//! Returns the edges circular list
	inline const CircularList<TMMEdge> &GetEdges() const { return m_edges; }
	//! Returns the triangles circular list
	inline const CircularList<TMMTriangle> &GetTriangles() const { return m_triangles; }
	//! Returns the vertices circular list
	inline CircularList<TMMVertex> &GetVertices() { return m_vertices; }
	//! Returns the edges circular list
	inline CircularList<TMMEdge> &GetEdges() { return m_edges; }
	//! Returns the triangles circular list
	inline CircularList<TMMTriangle> &GetTriangles() { return m_triangles; }
	//! Add vertex to the mesh
	CircularListElement<TMMVertex> *AddVertex() { return m_vertices.Add(); }
	//! Add vertex to the mesh
	CircularListElement<TMMEdge> *AddEdge() { return m_edges.Add(); }
	//! Add vertex to the mesh
	CircularListElement<TMMTriangle> *AddTriangle() { return m_triangles.Add(); }
	//! Print mesh information
	void Print();
	//!
	void GetIFS(Vec3<Real> *const points, Vec3<long> *const triangles);
	//! Save mesh
	bool Save(const char *fileName);
	//! Save mesh to VRML 2.0 format
	bool SaveVRML2(std::ofstream &fout);
	//! Save mesh to VRML 2.0 format
	bool SaveVRML2(std::ofstream &fout, const Material &material);
	//!
	void Clear();
	//!
	void Copy(TMMesh &mesh);
	//!
	bool CheckConsistancy();
	//!
	bool Normalize();
	//!
	bool Denormalize();
	//!	Constructor
	TMMesh(void);
	//! Destructor
	virtual ~TMMesh(void);

private:
	CircularList<TMMVertex> m_vertices;
	CircularList<TMMEdge> m_edges;
	CircularList<TMMTriangle> m_triangles;
	Real m_diag;              //>! length of the BB diagonal
	Vec3<Real> m_barycenter;  //>! barycenter of the mesh

	// not defined
	TMMesh(const TMMesh &rhs);
	friend class ICHull;
	friend class HACD;
};
//! IntersectRayTriangle(): intersect a ray with a 3D triangle
//!    Input:  a ray R, and a triangle T
//!    Output: *I = intersection point (when it exists)
//!             0 = disjoint (no intersect)
//!             1 = intersect in unique point I1
long IntersectRayTriangle(const Vec3<double> &P0, const Vec3<double> &dir,
						  const Vec3<double> &V0, const Vec3<double> &V1,
						  const Vec3<double> &V2, double &t);

// intersect_RayTriangle(): intersect a ray with a 3D triangle
//    Input:  a ray R, and a triangle T
//    Output: *I = intersection point (when it exists)
//    Return: -1 = triangle is degenerate (a segment or point)
//             0 = disjoint (no intersect)
//             1 = intersect in unique point I1
//             2 = are in the same plane
long IntersectRayTriangle2(const Vec3<double> &P0, const Vec3<double> &dir,
						   const Vec3<double> &V0, const Vec3<double> &V1,
						   const Vec3<double> &V2, double &r);

/*
     Calculate the line segment PaPb that is the shortest route between
     two lines P1P2 and P3P4. Calculate also the values of mua and mub where
     Pa = P1 + mua (P2 - P1)
     Pb = P3 + mub (P4 - P3)
     Return FALSE if no solution exists.
     */
bool IntersectLineLine(const Vec3<double> &p1, const Vec3<double> &p2,
					   const Vec3<double> &p3, const Vec3<double> &p4,
					   Vec3<double> &pa, Vec3<double> &pb,
					   double &mua, double &mub);
}  // namespace HACD
#endif