使用CGAL进行四面体网格划分时保持补丁编号

时间:2018-09-11 15:40:15

标签: computational-geometry mesh cgal tetrahedra

输入

我有几个.off格式的网格,它们一起包围了一个体积。例如,使用patch-01.off中CGAL-4.11可用的patch-20.offpatch-30.offexamples/Mesh_3/data/patches

所需的输出

我想获得此体积的四面体网格并将其保存为.mesh格式。困难的部分是我希望与三角形相对应的每一行以数字0、1或2结尾,以指示该三角形对应于哪个输入色块。目前,我不在乎顶点或四面体的标签。

几乎可行的解决方案

我尝试修改CGAL示例examples/Mesh_3/mesh_polyhedral_complex.cpp(已标记已修改的部分):

#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>

#include <cstdlib>

// Domain
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;


#ifdef CGAL_CONCURRENT_MESH_3
typedef CGAL::Parallel_tag Concurrency_tag;
#else
typedef CGAL::Sequential_tag Concurrency_tag;
#endif

// Triangulation
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;

// Criteria
typedef CGAL::Mesh_criteria_3<Tr> Mesh_criteria;

// To avoid verbose function and named parameters call
using namespace CGAL::parameters;

// THE MODIFICATION STARTS HERE
const char* const filenames[] = {
  "data/patches/patch-01.off",
  "data/patches/patch-20.off",
  "data/patches/patch-30.off",
};

const std::pair<int, int> incident_subdomains[] = {
  std::make_pair(0, 1),
  std::make_pair(1, 0),
  std::make_pair(1, 0),
};
// THE REMAINDER OF THE FILE IS UNCHANGED.

int main()
{
  const std::size_t nb_patches = sizeof(filenames) / sizeof(const char*);
  CGAL_assertion(sizeof(incident_subdomains) ==
                 nb_patches * sizeof(std::pair<int, int>));
  std::vector<Polyhedron> patches(nb_patches);
  for(std::size_t i = 0; i < nb_patches; ++i) {
    std::ifstream input(filenames[i]);
    if(!(input >> patches[i])) {
      std::cerr << "Error reading " << filenames[i] << " as a polyhedron!\n";
      return EXIT_FAILURE;
    }
  }
  // Create domain
  Mesh_domain domain(patches.begin(), patches.end(),
                     incident_subdomains, incident_subdomains+nb_patches);

  domain.detect_features(); //includes detection of borders

  // Mesh criteria
  Mesh_criteria criteria(edge_size = 8,
                         facet_angle = 25, facet_size = 8, facet_distance = 0.2,
                         cell_radius_edge_ratio = 3, cell_size = 10);

  // Mesh generation
  C3t3 c3t3 = CGAL::make_mesh_3<C3t3>(domain, criteria);

  // Output
  std::ofstream medit_file("out.mesh");
  c3t3.output_to_medit(medit_file);

  return EXIT_SUCCESS;
}

这将创建外观良好的四面体网格并将其保存到out.mesh。但是,所有三角形都有一个标记1,如以下摘录所示(out.mesh中的1318--1328行)。

52.527837077556413 58.272620021324407 30.13290265121827 1
0.06169736357779243 30.258121963438846 69.405198139655852 1
Triangles
2944
923 898 888 1
923 898 888 1
905 903 890 1
905 903 890 1
354 385 375 1
354 385 375 1

当我在medit中显示结果时,所有三角形都具有相同的颜色,而(换句话说),我希望每个输入色块具有不同的颜色。

问题

在上面的示例中我需要修改什么?

旁注

我注意到out.mesh似乎包含每个三角形的两个副本。这与问题有关吗?如何清除副本?

相关问题

已经有一个similar question。区别在于它们只有一个文件,并尝试通过颜色传达补丁信息,而我的补丁位于单独的文件中。

1 个答案:

答案 0 :(得分:0)

感谢您提出确切的问题。

对于您的问题,有一个非常简单的解决方案,但这涉及到output_to_medit()的未记录功能。只需替换行:

c3t3.output_to_medit(medit_file);

作者

c3t3.output_to_medit(medit_file, false, true);

,这将使用表面补丁ID标记这些方面。