gpt4 book ai didi

c++ - CGAL:添加功能失败

转载 作者:搜寻专家 更新时间:2023-10-31 01:27:49 24 4
gpt4 key购买 nike

任务

很简单:我想创建一个四面体网格并向其中添加几个特征。

例子

作为输入,获取可在 CGAL-4.11/examples/Mesh_3/data 中找到的文件 cube.off。我想添加的特征(只是立方体的十二条边)保存在 cube.edges 中:

2 -1 -1 -1 -1 1 -1
2 -1 -1 -1 1 -1 -1
2 -1 -1 -1 -1 -1 1
2 -1 1 -1 1 1 -1
2 -1 1 -1 -1 1 1
2 1 1 -1 1 -1 -1
2 1 1 -1 1 1 1
2 1 -1 -1 1 -1 1
2 -1 -1 1 -1 1 1
2 -1 -1 1 1 -1 1
2 -1 1 1 1 1 1
2 1 1 1 1 -1 1

代码的MWE:

#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/Mesh_triangulation_3.h>
#include <CGAL/Mesh_complex_3_in_triangulation_3.h>
#include <CGAL/Mesh_criteria_3.h>
#include <CGAL/Polyhedral_complex_mesh_domain_3.h>
#include <CGAL/make_mesh_3.h>

// From CGAL-4.11/examples/Mesh_3 but for simplicity copied to the current folder.
#include "read_polylines.h"

typedef CGAL::Exact_predicates_inexact_constructions_kernel K;
typedef CGAL::Mesh_polyhedron_3<K>::type Polyhedron;
typedef CGAL::Polyhedral_complex_mesh_domain_3<K> Mesh_domain;
typedef CGAL::Sequential_tag Concurrency_tag;

typedef CGAL::Mesh_triangulation_3<Mesh_domain,CGAL::Default,Concurrency_tag>::type Tr;
typedef CGAL::Mesh_complex_3_in_triangulation_3<
Tr,Mesh_domain::Corner_index,Mesh_domain::Curve_segment_index> C3t3;
typedef CGAL::Mesh_criteria_3<Tr> Mesh_criteria;

typedef K::Point_3 Point;
typedef std::vector<std::vector<Point> > Polylines;

int main()
{
// Read the (one) patch.
std::vector<Polyhedron> patches(1);
std::ifstream input("cube.off");
input >> patches[0];
const std::pair<int, int> incident_subdomains[] = { std::make_pair(1,0) };
Mesh_domain domain(patches.begin(), patches.end(), incident_subdomains, incident_subdomains+1);

// Read the features.
std::string feature_edges="cube.edges";
Polylines polylines;
read_polylines<Point>(feature_edges.c_str(), polylines);
domain.add_features(polylines.begin(), polylines.end());

// Create the mesh.
Mesh_criteria criteria(CGAL::parameters::edge_size = 0.25);
C3t3 c3t3 = CGAL::make_mesh_3<C3t3>(domain, criteria);

// Write it (if it hasn't crashed before).
std::ofstream medit_file("out.mesh");
c3t3.output_to_medit(medit_file, false, true);
}

这(当使用选项 -DCGAL_MESH_3_VERBOSE 编译时)崩溃并显示以下错误消息:

Start volume scan...Scanning triangulation for bad cells (sequential)... terminate called after throwing an instance of 'CGAL::Assertion_exception'
what(): CGAL ERROR: assertion violation!
Expr: patch_id > 0 && std::size_t(patch_id) < patch_id_to_polyhedron_id.size()
File: /yatmp/scr1/ya10813/cgal-install/include/CGAL/Polyhedral_complex_mesh_domain_3.h
Line: 457
Aborted

问题

我错过了什么?它必须是非常基本的东西。 CGAL 是一个非常可靠的库,可以很好地处理复杂数据;我不相信一个有 12 条边的立方体足以阻止它。

我也尝试过的事情

  • 当我将行 domain.add_features(polylines.begin(), polylines.end()); 替换为 domain.detect_features(); 时,程序正确终止。令人困惑的部分是,检测到的特征完全是我要添加的特征(我知道这是因为我在 Mesh_domain_with_polyline_features_3 中创建了一个函数,它为我打印了边缘;如果需要,我可以在这里分享)。

  • 当我使用 Polyhedral_mesh_domain_with_features_3 而不是 Polyhedral_complex_mesh_domain_3 时,程序正确终止。这些特征似乎保留在生成的几何体中。然而,它只是一个补丁(out.mesh 中的所有三角形都有相同的最后一个数字,而在这种情况下我希望它们的数字为 0 到 11)。 编辑:要实现这一点,必须使用 detect_features(); 而不是 add_features(...); 或拆分域到补丁中,让 CGAL 从中创建复合体。感谢@lrineau 的澄清。

  • 我还尝试先将域拆分为几个补丁。然而,随后补丁的边界发生了变化。 编辑:保留它们的一种方法是将补丁边界添加为特征。

  • 反转表面的方向(并交换 incident_subdomains 中的 01):没有可见的变化。

  • 更改 cube.edges 中特征线的顺序:无明显变化。

  • 与旧版 Boost 的链接:无明显变化。

最佳答案

类(class)Polyhedral_complex_mesh_domain_3是一年前新增的类in CGAL-4.11 .你遇到的问题是没有调用domain.detect_features()就从来没有测试过,而且代码有一个bug:数据成员patch_id_to_polyhedron_id只填入了检测特征()。这解释了为什么当您调用 detect_features() 而不是 add_features(..) 时它会起作用。

编辑:我今天修复了那个错误,请参阅 PR #3393 of CGAL .修复将在未来的错误修复版本 CGAL-4.12.2 和 CGAL-4.13.1 中。

关于c++ - CGAL:添加功能失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52726224/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com