CGAL 5.3 - IO Streams

I/O Functions for the Polygon File Format (PLY).

Functions

template<class PointRange , class PolygonRange , typename NamedParameters >
bool CGAL::IO::read_PLY (std::istream &is, PointRange &points, PolygonRange &polygons, const NamedParameters &np)
 reads the content of is into points and polygons, using the Polygon File Format (PLY). More...
 
template<typename PointRange , typename PolygonRange , typename NamedParameters >
bool CGAL::IO::read_PLY (const std::string &fname, PointRange &points, PolygonRange &polygons, const NamedParameters &np)
 reads the content of fname into points and polygons, using the Polygon File Format (PLY). More...
 
template<class PointRange , class PolygonRange , typename NamedParameters >
bool CGAL::IO::write_PLY (std::ostream &out, const PointRange &points, const PolygonRange &polygons, const NamedParameters &np)
 writes the content of points and polygons in out, using the Polygon File Format (PLY). More...
 
template<class PointRange , class PolygonRange , typename NamedParameters >
bool CGAL::IO::write_PLY (const std::string &fname, const PointRange &points, const PolygonRange &polygons, const NamedParameters &np)
 writes the content of points and polygons in the file fname, using the Polygon File Format (PLY). More...
 

Function Documentation

◆ read_PLY() [1/2]

template<class PointRange , class PolygonRange , typename NamedParameters >
bool CGAL::IO::read_PLY ( std::istream &  is,
PointRange &  points,
PolygonRange &  polygons,
const NamedParameters &  np 
)

#include <CGAL/IO/PLY.h>

reads the content of is into points and polygons, using the Polygon File Format (PLY).

Attention
The polygon soup is not cleared, and the data from the stream are appended.
When reading a binary file, the flag std::ios::binary flag must be set during the creation of the ifstream.
Template Parameters
PointRangea model of the concepts RandomAccessContainer and BackInsertionSequence whose value type is the point type
PolygonRangea model of the concepts SequenceContainer and BackInsertionSequence whose value_type is itself a model of the concept SequenceContainer and BackInsertionSequence whose value_type is an unsigned integer type convertible to std::size_t
NamedParametersa sequence of Named Parameters
Parameters
isthe input stream
pointspoints of the soup of polygons
polygonsa range of polygons. Each element in it describes a polygon using the indices of the points in points.
npoptional Named Parameters described below
Optional Named Parameters
  • indicates whether data should be read in binary (true) or in ASCII (false)
  • Type: Boolean
  • Default: true

  • indicates whether output warnings and error messages should be printed or not.
  • Type: Boolean
  • Default: false
Returns
true if the reading was successful, false otherwise.

◆ read_PLY() [2/2]

template<typename PointRange , typename PolygonRange , typename NamedParameters >
bool CGAL::IO::read_PLY ( const std::string &  fname,
PointRange &  points,
PolygonRange &  polygons,
const NamedParameters &  np 
)

#include <CGAL/IO/PLY.h>

reads the content of fname into points and polygons, using the Polygon File Format (PLY).

Attention
The polygon soup is not cleared, and the data from the file are appended.
Template Parameters
PointRangea model of the concept RandomAccessContainer whose value type is the point type.
PolygonRangea model of the concepts SequenceContainer and BackInsertionSequence whose value_type is itself a model of the concept SequenceContainer and BackInsertionSequence whose value_type is an integer type
NamedParametersa sequence of Named Parameters
Parameters
fnamethe path to the input file
pointspoints of the soup of polygons
polygonsa range of polygons. Each element in it describes a polygon using the indices of the points in points.
npoptional Named Parameters described below
Optional Named Parameters
  • indicates whether data should be read in binary (true) or in ASCII (false)
  • Type: Boolean
  • Default: true

  • indicates whether output warnings and error messages should be printed or not.
  • Type: Boolean
  • Default: false
Returns
true if the reading was successful, false otherwise.

◆ write_PLY() [1/2]

template<class PointRange , class PolygonRange , typename NamedParameters >
bool CGAL::IO::write_PLY ( std::ostream &  out,
const PointRange &  points,
const PolygonRange &  polygons,
const NamedParameters &  np 
)

#include <CGAL/IO/PLY.h>

writes the content of points and polygons in out, using the Polygon File Format (PLY).

Attention
When writing a binary file, the flag std::ios::binary flag must be set during the creation of the ofstream.
Template Parameters
PointRangea model of the concept RandomAccessContainer whose value type is the point type
PolygonRangea model of the concept SequenceContainer whose value_type is itself a model of the concept SequenceContainer whose value_type is an unsigned integer type convertible to std::size_t
NamedParametersa sequence of Named Parameters
Parameters
outthe output stream
pointspoints of the soup of polygons
polygonsa range of polygons. Each element in it describes a polygon using the indices of the points in points.
npoptional Named Parameters described below
Optional Named Parameters
  • a parameter used to set the precision (i.e. how many digits are generated) of the output stream
  • Type: int
  • Default: the precision of the streamos``
  • Extra: This parameter is only meaningful while using ASCII encoding.
Returns
true if the writing was successful, false otherwise.

◆ write_PLY() [2/2]

template<class PointRange , class PolygonRange , typename NamedParameters >
bool CGAL::IO::write_PLY ( const std::string &  fname,
const PointRange &  points,
const PolygonRange &  polygons,
const NamedParameters &  np 
)

#include <CGAL/IO/PLY.h>

writes the content of points and polygons in the file fname, using the Polygon File Format (PLY).

Template Parameters
PointRangea model of the concept RandomAccessContainer whose value type is the point type
PolygonRangea model of the concept SequenceContainer whose value_type is itself a model of the concept SequenceContainer whose value_type is an unsigned integer type convertible to std::size_t
NamedParametersa sequence of Named Parameters
Parameters
fnamethe path to the output file
pointspoints of the soup of polygons
polygonsa range of polygons. Each element in it describes a polygon using the indices of the points in points.
npoptional Named Parameters described below
Optional Named Parameters
  • indicates whether data should be written in binary (true) or in ASCII (false)
  • Type: Boolean
  • Default: true

  • a parameter used to set the precision (i.e. how many digits are generated) of the output stream
  • Type: int
  • Default: 6
  • Extra: This parameter is only meaningful while using ASCII encoding.
Returns
true if the writing was successful, false otherwise.