-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathGeometry.inl
More file actions
executable file
·255 lines (238 loc) · 9.93 KB
/
Geometry.inl
File metadata and controls
executable file
·255 lines (238 loc) · 9.93 KB
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
/*
Copyright (c) 2006, Michael Kazhdan and Matthew Bolitho
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of
conditions and the following disclaimer. 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.
Neither the name of the Johns Hopkins University nor the names of its contributors
may 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 OWNER 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.
*/
template<class Real>
__host__ __device__ double SquareLength(const Point3D<Real>& p){return p.coords[0]*p.coords[0]+p.coords[1]*p.coords[1]+p.coords[2]*p.coords[2];}
template<class Real>
double Length(const Point3D<Real>& p){return sqrt(SquareLength(p));}
template<class Real>
__host__ __device__ double SquareDistance(const Point3D<Real>& p1,const Point3D<Real>& p2){
return (p1.coords[0]-p2.coords[0])*(p1.coords[0]-p2.coords[0])+(p1.coords[1]-p2.coords[1])*(p1.coords[1]-p2.coords[1])+(p1.coords[2]-p2.coords[2])*(p1.coords[2]-p2.coords[2]);
}
template<class Real>
double Distance(const Point3D<Real>& p1,const Point3D<Real>& p2){return sqrt(SquareDistance(p1,p2));}
template <class Real>
void CrossProduct(const Point3D<Real>& p1,const Point3D<Real>& p2,Point3D<Real>& p){
p.coords[0]= p1.coords[1]*p2.coords[2]-p1.coords[2]*p2.coords[1];
p.coords[1]=-p1.coords[0]*p2.coords[2]+p1.coords[2]*p2.coords[0];
p.coords[2]= p1.coords[0]*p2.coords[1]-p1.coords[1]*p2.coords[0];
}
template<class Real>
void EdgeCollapse(const Real& edgeRatio,std::vector<TriangleIndex>& triangles,std::vector< Point3D<Real> >& positions,std::vector< Point3D<Real> >* normals){
int i,j,*remapTable,*pointCount,idx[3];
Point3D<Real> p[3],q[2],c;
double d[3],a;
double Ratio=12.0/sqrt(3.0); // (Sum of Squares Length / Area) for and equilateral triangle
remapTable=new int[positions.size()];
pointCount=new int[positions.size()];
for(i=0;i<int(positions.size());i++){
remapTable[i]=i;
pointCount[i]=1;
}
for(i=int(triangles.size()-1);i>=0;i--){
for(j=0;j<3;j++){
idx[j]=triangles[i].idx[j];
while(remapTable[idx[j]]<idx[j]){idx[j]=remapTable[idx[j]];}
}
if(idx[0]==idx[1] || idx[0]==idx[2] || idx[1]==idx[2]){
triangles[i]=triangles[triangles.size()-1];
triangles.pop_back();
continue;
}
for(j=0;j<3;j++){
p[j].coords[0]=positions[idx[j]].coords[0]/pointCount[idx[j]];
p[j].coords[1]=positions[idx[j]].coords[1]/pointCount[idx[j]];
p[j].coords[2]=positions[idx[j]].coords[2]/pointCount[idx[j]];
}
for(j=0;j<3;j++){
q[0].coords[j]=p[1].coords[j]-p[0].coords[j];
q[1].coords[j]=p[2].coords[j]-p[0].coords[j];
d[j]=SquareDistance(p[j],p[(j+1)%3]);
}
CrossProduct(q[0],q[1],c);
a=Length(c)/2;
if((d[0]+d[1]+d[2])*edgeRatio > a*Ratio){
// Find the smallest edge
j=0;
if(d[1]<d[j]){j=1;}
if(d[2]<d[j]){j=2;}
int idx1,idx2;
if(idx[j]<idx[(j+1)%3]){
idx1=idx[j];
idx2=idx[(j+1)%3];
}
else{
idx2=idx[j];
idx1=idx[(j+1)%3];
}
positions[idx1].coords[0]+=positions[idx2].coords[0];
positions[idx1].coords[1]+=positions[idx2].coords[1];
positions[idx1].coords[2]+=positions[idx2].coords[2];
if(normals){
(*normals)[idx1].coords[0]+=(*normals)[idx2].coords[0];
(*normals)[idx1].coords[1]+=(*normals)[idx2].coords[1];
(*normals)[idx1].coords[2]+=(*normals)[idx2].coords[2];
}
pointCount[idx1]+=pointCount[idx2];
remapTable[idx2]=idx1;
triangles[i]=triangles[triangles.size()-1];
triangles.pop_back();
}
}
int pCount=0;
for(i=0;i<int(positions.size());i++){
for(j=0;j<3;j++){positions[i].coords[j]/=pointCount[i];}
if(normals){
Real l=Real(Length((*normals)[i]));
for(j=0;j<3;j++){(*normals)[i].coords[j]/=l;}
}
if(remapTable[i]==i){ // If vertex i is being used
positions[pCount]=positions[i];
if(normals){(*normals)[pCount]=(*normals)[i];}
pointCount[i]=pCount;
pCount++;
}
}
positions.resize(pCount);
for(i=int(triangles.size()-1);i>=0;i--){
for(j=0;j<3;j++){
idx[j]=triangles[i].idx[j];
while(remapTable[idx[j]]<idx[j]){idx[j]=remapTable[idx[j]];}
triangles[i].idx[j]=pointCount[idx[j]];
}
if(idx[0]==idx[1] || idx[0]==idx[2] || idx[1]==idx[2]){
triangles[i]=triangles[triangles.size()-1];
triangles.pop_back();
}
}
delete[] pointCount;
delete[] remapTable;
}
template<class Real>
void TriangleCollapse(const Real& edgeRatio,std::vector<TriangleIndex>& triangles,std::vector< Point3D<Real> >& positions,std::vector< Point3D<Real> >* normals){
int i,j,*remapTable,*pointCount,idx[3];
Point3D<Real> p[3],q[2],c;
double d[3],a;
double Ratio=12.0/sqrt(3.0); // (Sum of Squares Length / Area) for and equilateral triangle
remapTable=new int[positions.size()];
pointCount=new int[positions.size()];
for(i=0;i<int(positions.size());i++){
remapTable[i]=i;
pointCount[i]=1;
}
for(i=int(triangles.size()-1);i>=0;i--){
for(j=0;j<3;j++){
idx[j]=triangles[i].idx[j];
while(remapTable[idx[j]]<idx[j]){idx[j]=remapTable[idx[j]];}
}
if(idx[0]==idx[1] || idx[0]==idx[2] || idx[1]==idx[2]){
triangles[i]=triangles[triangles.size()-1];
triangles.pop_back();
continue;
}
for(j=0;j<3;j++){
p[j].coords[0]=positions[idx[j]].coords[0]/pointCount[idx[j]];
p[j].coords[1]=positions[idx[j]].coords[1]/pointCount[idx[j]];
p[j].coords[2]=positions[idx[j]].coords[2]/pointCount[idx[j]];
}
for(j=0;j<3;j++){
q[0].coords[j]=p[1].coords[j]-p[0].coords[j];
q[1].coords[j]=p[2].coords[j]-p[0].coords[j];
d[j]=SquareDistance(p[j],p[(j+1)%3]);
}
CrossProduct(q[0],q[1],c);
a=Length(c)/2;
if((d[0]+d[1]+d[2])*edgeRatio > a*Ratio){
// Find the smallest edge
j=0;
if(d[1]<d[j]){j=1;}
if(d[2]<d[j]){j=2;}
int idx1,idx2,idx3;
if(idx[0]<idx[1]){
if(idx[0]<idx[2]){
idx1=idx[0];
idx2=idx[2];
idx3=idx[1];
}
else{
idx1=idx[2];
idx2=idx[0];
idx3=idx[1];
}
}
else{
if(idx[1]<idx[2]){
idx1=idx[1];
idx2=idx[2];
idx3=idx[0];
}
else{
idx1=idx[2];
idx2=idx[1];
idx3=idx[0];
}
}
positions[idx1].coords[0]+=positions[idx2].coords[0]+positions[idx3].coords[0];
positions[idx1].coords[1]+=positions[idx2].coords[1]+positions[idx3].coords[1];
positions[idx1].coords[2]+=positions[idx2].coords[2]+positions[idx3].coords[2];
if(normals){
(*normals)[idx1].coords[0]+=(*normals)[idx2].coords[0]+(*normals)[idx3].coords[0];
(*normals)[idx1].coords[1]+=(*normals)[idx2].coords[1]+(*normals)[idx3].coords[1];
(*normals)[idx1].coords[2]+=(*normals)[idx2].coords[2]+(*normals)[idx3].coords[2];
}
pointCount[idx1]+=pointCount[idx2]+pointCount[idx3];
remapTable[idx2]=idx1;
remapTable[idx3]=idx1;
triangles[i]=triangles[triangles.size()-1];
triangles.pop_back();
}
}
int pCount=0;
for(i=0;i<int(positions.size());i++){
for(j=0;j<3;j++){positions[i].coords[j]/=pointCount[i];}
if(normals){
Real l=Real(Length((*normals)[i]));
for(j=0;j<3;j++){(*normals)[i].coords[j]/=l;}
}
if(remapTable[i]==i){ // If vertex i is being used
positions[pCount]=positions[i];
if(normals){(*normals)[pCount]=(*normals)[i];}
pointCount[i]=pCount;
pCount++;
}
}
positions.resize(pCount);
for(i=int(triangles.size()-1);i>=0;i--){
for(j=0;j<3;j++){
idx[j]=triangles[i].idx[j];
while(remapTable[idx[j]]<idx[j]){idx[j]=remapTable[idx[j]];}
triangles[i].idx[j]=pointCount[idx[j]];
}
if(idx[0]==idx[1] || idx[0]==idx[2] || idx[1]==idx[2]){
triangles[i]=triangles[triangles.size()-1];
triangles.pop_back();
}
}
delete[] pointCount;
delete[] remapTable;
}