-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmisc.cpp
executable file
·111 lines (104 loc) · 4.29 KB
/
misc.cpp
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
/*
Copyright ©2013 The Regents of the University of California
(Regents). All Rights Reserved. Permission to use, copy, modify, and
distribute this software and its documentation for educational,
research, and not-for-profit purposes, without fee and without a
signed licensing agreement, is hereby granted, provided that the
above copyright notice, this paragraph and the following two
paragraphs appear in all copies, modifications, and
distributions. Contact The Office of Technology Licensing, UC
Berkeley, 2150 Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620,
(510) 643-7201, for commercial licensing opportunities.
IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT,
INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
DOCUMENTATION, EVEN IF REGENTS HAS BEEN ADVISED OF THE POSSIBILITY
OF SUCH DAMAGE.
REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE. THE SOFTWARE AND ACCOMPANYING
DOCUMENTATION, IF ANY, PROVIDED HEREUNDER IS PROVIDED "AS
IS". REGENTS HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT,
UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
*/
#include "io.hpp"
#include "util.hpp"
#include <fstream>
#include <map>
using namespace std;
void tri2obj (const vector<string> &args) {
if (args.size() != 2) {
cout << "Converts output of Jonathan Shewchuk's Triangle program "
<< "to an OBJ file." << endl;
cout << "Arguments:" << endl;
cout << " <tri>: Common prefix of <tri>.node and <tri>.ele"
<< endl;
cout << " <obj>: Output OBJ file" << endl;
exit(EXIT_FAILURE);
}
assert(args.size() == 2);
triangle_to_obj(args[0], args[1]);
}
void merge_meshes (const vector<string> &args) {
assert(args.size() == 3 || args.size() == 4);
Mesh meshm, meshw;
load_obj(meshm, args[0]);
load_obj(meshw, args[1]);
assert(meshm.nodes.size() == meshw.nodes.size());
Mesh mesh;
double merge_dist = args.size()==4 ? atof(args[3].c_str()) : 1e-2;
for (int n = 0; n < meshm.nodes.size(); n++) {
Vert *vert = new Vert(project<2>(meshm.nodes[n]->x),
meshm.nodes[n]->label);
mesh.add(vert);
const Vec3 x = meshw.nodes[n]->x;
Node *node = NULL;
for (int n2 = 0; n2 < mesh.nodes.size(); n2++) {
Node *node2 = mesh.nodes[n2];
if (norm2(node2->x - x) < sq(merge_dist)) {
node = node2;
break;
}
}
if (node == NULL) {
node = new Node(x, Vec3(0));
mesh.add(node);
}
if (!node->label)
node->label = meshw.nodes[n]->label;
connect(vert, node);
}
for (int f = 0; f < meshm.faces.size(); f++) {
const Face *face = meshm.faces[f];
mesh.add(new Face(mesh.verts[face->v[0]->node->index],
mesh.verts[face->v[1]->node->index],
mesh.verts[face->v[2]->node->index], face->label));
}
save_obj(mesh, args[2]);
}
void split_meshes (const vector<string> &args) {
assert(args.size() == 3);
Mesh mesh;
load_obj(mesh, args[0]);
Mesh meshm, meshw;
for (int v = 0; v < mesh.verts.size(); v++) {
const Vert *vert = mesh.verts[v];
meshm.add(new Vert(vert->u, vert->label));
meshm.add(new Node(project<3>(vert->u), Vec3(0), vert->label));
connect(meshm.verts.back(), meshm.nodes.back());
meshw.add(new Vert(vert->u, vert->node->label));
meshw.add(new Node(vert->node->x, Vec3(0), vert->node->label));
connect(meshw.verts.back(), meshw.nodes.back());
}
for (int f = 0; f < mesh.faces.size(); f++) {
const Face *face = mesh.faces[f];
meshm.add(new Face(meshm.verts[face->v[0]->index],
meshm.verts[face->v[1]->index],
meshm.verts[face->v[2]->index], face->label));
meshw.add(new Face(meshw.verts[face->v[0]->index],
meshw.verts[face->v[1]->index],
meshw.verts[face->v[2]->index], face->label));
}
save_obj(meshm, args[1]);
save_obj(meshw, args[2]);
}