|
CGAL 4.13.1 - CGAL and the Boost Graph Library
|
Methods to read and write graphs.
Functions | |
| 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... | |
| 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.