CGAL 5.0.3 - CGAL and the Boost Graph Library
|
Methods to read and write graphs.
Functions | |
template<typename FaceGraph , typename NamedParameters > | |
bool | CGAL::write_wrl (std::ostream &os, const FaceGraph &g, const NamedParameters &np) |
writes the graph g in the wrl format (VRML 2.0). More... | |
template<typename FaceGraph , typename NamedParameters > | |
bool | CGAL::write_off (std::ostream &os, const FaceGraph &g, const NamedParameters &np) |
writes the graph g in the OFF format. More... | |
template<typename FaceGraph , typename NamedParameters > | |
bool | CGAL::write_off (const char *fname, const FaceGraph &g, const NamedParameters &np) |
writes the graph g in the OFF format into a file named fname . More... | |
template<typename FaceGraph , typename NamedParameters > | |
bool | CGAL::read_off (std::istream &is, FaceGraph &g, NamedParameters np) |
reads the graph g from data in the OFF format. More... | |
template<typename FaceGraph , typename NamedParameters > | |
bool | CGAL::read_off (const char *fname, FaceGraph &g, NamedParameters np) |
reads the graph g from data in the OFF format. More... | |
template<class TriangleMesh , class NamedParameters > | |
void | CGAL::write_vtp (std::ostream &os, const TriangleMesh &mesh, const NamedParameters &np) |
writes a triangulated surface mesh in the PolyData XML format. More... | |
bool CGAL::read_off | ( | std::istream & | is, |
FaceGraph & | g, | ||
NamedParameters | np | ||
) |
#include <CGAL/boost/graph/io.h>
reads the graph g
from data in the OFF format.
Ignores comment lines which start with a hash, and lines with whitespace.
vertex_point_map | the property map with the points associated to the vertices of g . If this parameter is omitted, an internal property map for CGAL::vertex_point_t should be available in FaceGraph |
FaceGraph
. g
is not cleared, and the data from the stream are added. bool CGAL::read_off | ( | const char * | fname, |
FaceGraph & | g, | ||
NamedParameters | np | ||
) |
#include <CGAL/boost/graph/io.h>
reads the graph g
from data in the OFF format.
Ignores comment lines which start with a hash, and lines with whitespace.
FaceGraph
. g
is not cleared, and the data from the stream are added. bool CGAL::write_off | ( | std::ostream & | os, |
const FaceGraph & | g, | ||
const NamedParameters & | np | ||
) |
#include <CGAL/boost/graph/io.h>
writes the graph g
in the OFF format.
vertex_point_map | the property map with the points associated to the vertices of g . If this parameter is omitted, an internal property map for CGAL::vertex_point_t should be available in FaceGraph |
FaceGraph
. bool CGAL::write_off | ( | const char * | fname, |
const FaceGraph & | g, | ||
const NamedParameters & | np | ||
) |
#include <CGAL/boost/graph/io.h>
writes the graph g
in the OFF format into a file named fname
.
FaceGraph
. void CGAL::write_vtp | ( | std::ostream & | os, |
const TriangleMesh & | mesh, | ||
const NamedParameters & | np | ||
) |
#include <CGAL/boost/graph/io.h>
writes a triangulated surface mesh in the PolyData
XML format.
TriangleMesh | a model of FaceListGraph with only triangle faces. |
NamedParameters | a sequence of Named Parameters |
os | the stream used for writing. |
mesh | the triangle mesh to be written. |
np | optional sequence of Named Parameters among the ones listed below |
use_binary_mode | a Boolean indicating if the data should be written in binary (true , the default) or in ASCII (false ). |
vertex_point_map | the property map with the points associated to the vertices of mesh . If this parameter is omitted, an internal property map for CGAL::vertex_point_t must be available in TriangleMesh . |
vertex_index_map | the property map with the indices associated to the vertices of mesh . If this parameter is omitted, an internal property map for CGAL::vertex_index_t must be available in TriangleMesh . |
bool CGAL::write_wrl | ( | std::ostream & | os, |
const FaceGraph & | g, | ||
const NamedParameters & | np | ||
) |
#include <CGAL/boost/graph/io.h>
writes the graph g
in the wrl format (VRML 2.0).
vertex_point_map | the property map with the points associated to the vertices of g . If this parameter is omitted, an internal property map for CGAL::vertex_point_t should be available in FaceGraph |