\( \newcommand{\E}{\mathrm{E}} \) \( \newcommand{\A}{\mathrm{A}} \) \( \newcommand{\R}{\mathrm{R}} \) \( \newcommand{\N}{\mathrm{N}} \) \( \newcommand{\Q}{\mathrm{Q}} \) \( \newcommand{\Z}{\mathrm{Z}} \) \( \def\ccSum #1#2#3{ \sum_{#1}^{#2}{#3} } \def\ccProd #1#2#3{ \sum_{#1}^{#2}{#3} }\)
CGAL 4.13 - 3D Periodic Mesh Generation

The free functions that can be used to read and write periodic meshes.

Functions

template<class C3T3 >
void CGAL::output_periodic_mesh_to_medit (std::ostream &os, const C3T3 &c3t3, int occurrence_count=8, bool distinguish_copies=true, bool rebind=false, bool show_patches=false)
 Outputs a periodic mesh to the medit (.mesh) file format. More...
 

Function Documentation

◆ output_periodic_mesh_to_medit()

template<class C3T3 >
void CGAL::output_periodic_mesh_to_medit ( std::ostream &  os,
const C3T3 &  c3t3,
int  occurrence_count = 8,
bool  distinguish_copies = true,
bool  rebind = false,
bool  show_patches = false 
)

#include <CGAL/Periodic_3_mesh_3/IO/File_medit.h>

Outputs a periodic mesh to the medit (.mesh) file format.

See [5] for a comprehensive description of this file format.

Parameters
osthe output stream
c3t3the mesh complex
occurrence_countthe number of copies that are drawn
distinguish_copiesif set to true, each copy is assigned a unique color. Otherwise, all domains are drawn with subdomain index-based colors.
rebindif set to true, labels of cells are rebinded into [1..nb_of_labels]
show_patchesif set to true, patches are labeled with different labels than cells. If false, each surface facet is written twice, using the label of each adjacent cell.
Examples:
Periodic_3_mesh_3/mesh_implicit_shape.cpp, Periodic_3_mesh_3/mesh_implicit_shape_with_features.cpp, Periodic_3_mesh_3/mesh_implicit_shape_with_optimizers.cpp, and Periodic_3_mesh_3/mesh_implicit_shape_with_subdomains.cpp.