Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

使用无境框架完成作业九(曲面简化 QEM 方法)问题 #4

Open
DQSSSSS opened this issue Sep 10, 2021 · 2 comments
Open

Comments

@DQSSSSS
Copy link

DQSSSSS commented Sep 10, 2021

Hello 助教好,很抱歉在课程结束这么久之后的打扰。
我在使用无境引擎完成作业九时,需要支持三角面的局部删除和添加操作。
我出错的关键函数是 contract,它需要支持删除顶点 pc.i, pc.j ,插入顶点 pc.k 并将 pc.i, pc.j 的所有相邻三角面移植到 pc.k 上。
我使用的是 heMeshRemovePolygon, AddPolygon 来完成这一边收缩操作,其中插入三角面仿照的是 heMesh->Init 的写法。
在 release 模式下,执行不会报错,但是得到的结果不是三角形网络。可能是我 API 的使用错误?
在 debug 模式下,会提示调用 heMesh->AddPolygon 时会产生非流形网络。虽然在上述代码操作中有可能出现这种问题,但是插入三角面结束后却并不会。
image
下面是代码。希望助教可以帮忙解答一下,感激不尽!

void QuadricSimplification::contract(const PairContraction& pc) {
	heMesh->AddVertex();
	auto* v1 = heMesh->Vertices().at(pc.i);
	auto* v2 = heMesh->Vertices().at(pc.j);
	auto* v_bar = heMesh->Vertices().at(pc.k);
	v_bar->position = positions[pc.k];
	/*std::set<Vertex*> s;
	for (auto* v : v1->AdjVertices()) s.insert(v);
	for (auto* v : v2->AdjVertices()) s.insert(v);*/
	
	auto V1s = v1->AdjVertices();
	auto V2s = v2->AdjVertices();

	for (size_t i = 0; i < V1s.size(); i++) {
		spdlog::info("{}", heMesh->Index(V1s[i]));
	}
	spdlog::info("-------");
	for (size_t i = 0; i < V2s.size(); i++) {
		spdlog::info("{}", heMesh->Index(V2s[i]));
	}

	// merge neighbors, maybe repeat 2 times
	std::vector<Vertex*> Vs;
	for (auto* v : v1->AdjVertices()) {
		if (v == v2) {
			auto v2_vec = v2->AdjVertices();
			for (size_t i = 0; i < v2_vec.size();i ++) {
				if (v2_vec[i] == v1) {
					for (size_t j = 1; j < v2_vec.size(); j++) {
						int id = (i + j) % v2_vec.size();
						Vs.push_back(v2_vec[id]);
					}
					break;
				}
			}
		}
		else {
			Vs.push_back(v);
		}
	}

	// record boundary info before removing
	bool is_boundary = v1->IsOnBoundary() || v2->IsOnBoundary();
	std::vector<bool> mark;
	for (size_t i = 0; i < Vs.size(); i++) {
		spdlog::info("after merge {}", heMesh->Index(Vs[i]));
		mark.push_back(Vs[i]->IsOnBoundary());
	}

	for (auto* m : v1->AdjPolygons()) {
		if (m == nullptr) continue;
		auto* A = m->AdjVertices()[0];
		auto* B = m->AdjVertices()[1];
		auto* C = m->AdjVertices()[2];
		spdlog::info("v1 adj {} {} {}", heMesh->Index(A), heMesh->Index(B), heMesh->Index(C));
		heMesh->RemovePolygon(m);
	}

	for (auto* m : v2->AdjPolygons()) {
		if (m == nullptr) continue;
		auto* A = m->AdjVertices()[0];
		auto* B = m->AdjVertices()[1];
		auto* C = m->AdjVertices()[2];
		spdlog::info("v2 adj {} {} {}", heMesh->Index(A), heMesh->Index(B), heMesh->Index(C));
		heMesh->RemovePolygon(m);
	}

	// add triangle
	for (size_t i = 0; i < Vs.size(); i++) {
		int id = (0 + i) % Vs.size();
		int nx = (0 + i + 1) % Vs.size();
		Vertex* A = Vs[id];
		Vertex* B = Vs[nx];
		if (A == B) continue;
		if (is_boundary && mark[id] && mark[nx]) continue;
		spdlog::info("add triangle {} {} {}", heMesh->Index(B), heMesh->Index(A), heMesh->Index(v_bar));
		std::vector<Vertex*> polygon = { B, A, v_bar };
		std::vector<HalfEdge*> heLoop;
		for (size_t j = 0; j < polygon.size(); j++) {
			size_t next = (j + 1) % polygon.size();
			auto* u = polygon[j];
			auto* v = polygon[next];
			auto* he = u->HalfEdgeTo(v);
			if (!he)
				he = heMesh->AddEdge(u, v)->HalfEdge();
			heLoop.push_back(he);
		}
		auto* p = heMesh->AddPolygon(heLoop);
		assert(p != nullptr);
	}
	
	spdlog::info("contract ({}, {}) -> {}", pc.i, pc.j, pc.k);
}
@aliwanzi
Copy link

编译工程时,碰到如下问题,请问有碰到过的同学吗?

D:\Code\GAMES102\homeworks\project\build\CMakeFiles\CMakeTmp\src.c(1,10): fatal error C1083: 无法打开包括文件: “pthread.h”: No such file or directory [D:\Code\GAMES102\homeworks\project\build\CMakeFiles\CMakeTmp\cmTC_70c05.vcxproj]

@SnowWindSaveYou
Copy link

编译工程时,碰到如下问题,请问有碰到过的同学吗?

D:\Code\GAMES102\homeworks\project\build\CMakeFiles\CMakeTmp\src.c(1,10): fatal error C1083: 无法打开包括文件: “pthread.h”: No such file or directory [D:\Code\GAMES102\homeworks\project\build\CMakeFiles\CMakeTmp\cmTC_70c05.vcxproj]

有的,请问大佬解决了吗?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants