Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/quadriflow/src/adjacent-matrix.cpp')
-rw-r--r--extern/quadriflow/src/adjacent-matrix.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/extern/quadriflow/src/adjacent-matrix.cpp b/extern/quadriflow/src/adjacent-matrix.cpp
new file mode 100644
index 00000000000..e20ffb05f6d
--- /dev/null
+++ b/extern/quadriflow/src/adjacent-matrix.cpp
@@ -0,0 +1,35 @@
+#include "config.hpp"
+#include "adjacent-matrix.hpp"
+#include "dedge.hpp"
+#include <fstream>
+
+namespace qflow {
+
+void generate_adjacency_matrix_uniform(
+ const MatrixXi &F, const VectorXi &V2E, const VectorXi &E2E,
+ const VectorXi &nonManifold, AdjacentMatrix& adj) {
+ adj.resize(V2E.size());
+#ifdef WITH_OMP
+#pragma omp parallel for
+#endif
+ for (int i = 0; i < adj.size(); ++i) {
+ int start = V2E[i];
+ int edge = start;
+ if (start == -1)
+ continue;
+ do {
+ int base = edge % 3, f = edge / 3;
+ int opp = E2E[edge], next = dedge_next_3(opp);
+ if (adj[i].empty())
+ adj[i].push_back(Link(F((base + 2) % 3, f)));
+ if (opp == -1 || next != start) {
+ adj[i].push_back(Link(F((base + 1) % 3, f)));
+ if (opp == -1)
+ break;
+ }
+ edge = next;
+ } while (edge != start);
+ }
+}
+
+} // namespace qflow