CGAL 5.3 - 3D Point Set

I/O Functions for the Object File Format (OFF).

Functions

template<typename Point , typename Vector >
bool CGAL::IO::read_OFF (std::istream &is, CGAL::Point_set_3< Point, Vector > &point_set)
 reads the content of an intput stream in the Object File Format (OFF) into a point set. More...
 
template<typename Point , typename Vector >
bool CGAL::IO::read_OFF (const std::string &fname, CGAL::Point_set_3< Point, Vector > &point_set)
 reads the content of an input file in the Object File Format (OFF) into a point set. More...
 
template<typename Point , typename Vector , typename NamedParameters >
bool CGAL::IO::write_OFF (std::ostream &os, const CGAL::Point_set_3< Point, Vector > &point_set, const NamedParameters &np)
 writes the content of a point set into an output stream in the Object File Format (OFF). More...
 
template<typename Point , typename Vector , typename NamedParameters >
bool CGAL::IO::write_OFF (const std::string &fname, const CGAL::Point_set_3< Point, Vector > &point_set, const NamedParameters &np)
 writes the content of a point set into an output file in the Object File Format (OFF). More...
 

Function Documentation

◆ read_OFF() [1/2]

template<typename Point , typename Vector >
bool CGAL::IO::read_OFF ( std::istream &  is,
CGAL::Point_set_3< Point, Vector > &  point_set 
)

#include <CGAL/Point_set_3/IO/OFF.h>

reads the content of an intput stream in the Object File Format (OFF) into a point set.

If normals are present in the input (NOFF), a normal map will be created and filled.

Parameters
isthe input stream
point_setthe point set
Returns
true if the reading was successful, false otherwise.

◆ read_OFF() [2/2]

template<typename Point , typename Vector >
bool CGAL::IO::read_OFF ( const std::string &  fname,
CGAL::Point_set_3< Point, Vector > &  point_set 
)

#include <CGAL/Point_set_3/IO/OFF.h>

reads the content of an input file in the Object File Format (OFF) into a point set.

If normals are present in the input (NOFF), a normal map will be created and filled.

Parameters
fnamethe path to the input file
point_setthe point set
Returns
true if the reading was successful, false otherwise.

◆ write_OFF() [1/2]

template<typename Point , typename Vector , typename NamedParameters >
bool CGAL::IO::write_OFF ( std::ostream &  os,
const CGAL::Point_set_3< Point, Vector > &  point_set,
const NamedParameters &  np 
)

#include <CGAL/Point_set_3/IO/OFF.h>

writes the content of a point set into an output stream in the Object File Format (OFF).

If it exists, the normal map associated to the point set is inserted in the stream.

Template Parameters
Pointthe point type of the Point_set_3
Vectorthe vector type of the Point_set_3
NamedParametersa sequence of Named Parameters
Parameters
osthe output stream
point_setthe point set
npan optional sequence of Named Parameters among the ones listed 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``
Returns
true if the writing was successful, false otherwise.

◆ write_OFF() [2/2]

template<typename Point , typename Vector , typename NamedParameters >
bool CGAL::IO::write_OFF ( const std::string &  fname,
const CGAL::Point_set_3< Point, Vector > &  point_set,
const NamedParameters &  np 
)

#include <CGAL/Point_set_3/IO/OFF.h>

writes the content of a point set into an output file in the Object File Format (OFF).

If it exists, the normal map associated to the point set is inserted in the file.

Template Parameters
Pointthe point type of the Point_set_3
Vectorthe vector type of the Point_set_3
NamedParametersa sequence of Named Parameters
Parameters
fnamethe path to the output file
point_setthe point set
npan optional sequence of Named Parameters among the ones listed 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: 6
Returns
true if the writing was successful, false otherwise.