- a property map associating points to the elements of the point range
-
Type: a model of
WritablePropertyMap
with value typegeom_traits::Point_3
-
Default:
CGAL::Identity_property_map<geom_traits::Point_3>
CGAL 6.0 - Point Set Processing
|
Functions | |
template<typename OutputIteratorValueType , typename OutputIterator , typename NamedParameters = CGAL::parameters::Default_named_parameters> | |
bool | CGAL::IO::read_XYZ (std::istream &is, OutputIterator output, const NamedParameters &np=parameters::default_values()) |
reads points (positions + normals, if available), using the XYZ File Format. | |
template<typename OutputIteratorValueType , typename OutputIterator , typename NamedParameters = CGAL::parameters::Default_named_parameters> | |
bool | CGAL::IO::read_XYZ (const std::string &fname, OutputIterator output, const NamedParameters &np=parameters::default_values()) |
reads points (positions + normals, if available), using the XYZ File Format. | |
template<typename PointRange , typename NamedParameters = CGAL::parameters::Default_named_parameters> | |
bool | CGAL::IO::write_XYZ (std::ostream &os, const PointRange &points, const NamedParameters &np=parameters::default_values()) |
writes the range of points (positions + normals, if available), using the XYZ File Format. | |
template<typename PointRange , typename NamedParameters = CGAL::parameters::Default_named_parameters> | |
bool | CGAL::IO::write_XYZ (const std::string &filename, const PointRange &points, const NamedParameters &np=parameters::default_values()) |
writes the range of points (positions + normals, if available), using the XYZ File Format. | |
bool CGAL::IO::read_XYZ | ( | const std::string & | fname, |
OutputIterator | output, | ||
const NamedParameters & | np = parameters::default_values() |
||
) |
#include <CGAL/IO/read_xyz_points.h>
reads points (positions + normals, if available), using the XYZ File Format.
OutputIteratorValueType | type of objects that can be put in OutputIterator . It must be a model of DefaultConstructible and defaults to value_type_traits<OutputIterator>::type . It can be omitted when the default is fine. |
OutputIterator | iterator over output points. |
NamedParameters | a sequence of Named Parameters |
fname | input file name. |
output | output iterator over points. |
np | optional sequence of Named Parameters among the ones listed below. |
| |
| |
|
true
if reading was successful, false
otherwise.bool CGAL::IO::read_XYZ | ( | std::istream & | is, |
OutputIterator | output, | ||
const NamedParameters & | np = parameters::default_values() |
||
) |
#include <CGAL/IO/read_xyz_points.h>
reads points (positions + normals, if available), using the XYZ File Format.
OutputIteratorValueType | type of objects that can be put in OutputIterator . It must be a model of DefaultConstructible and defaults to value_type_traits<OutputIterator>::type . It can be omitted when the default is fine. |
OutputIterator | iterator over output points. |
NamedParameters | a sequence of Named Parameters |
is | input stream. |
output | output iterator over points. |
np | an optional sequence of Named Parameters among the ones listed below |
| |
| |
|
true
if reading was successful, false
otherwise.bool CGAL::IO::write_XYZ | ( | const std::string & | filename, |
const PointRange & | points, | ||
const NamedParameters & | np = parameters::default_values() |
||
) |
#include <CGAL/IO/write_xyz_points.h>
writes the range of points
(positions + normals, if available), using the XYZ File Format.
PointRange | is a model of ConstRange . The value type of its iterator is the key type of the named parameter point_map . |
NamedParameters | a sequence of Named Parameters |
filename | path to the output file |
points | input point range |
np | an optional sequence of Named Parameters among the ones listed below |
| |
| |
| |
|
true
if writing was successful, false
otherwise. bool CGAL::IO::write_XYZ | ( | std::ostream & | os, |
const PointRange & | points, | ||
const NamedParameters & | np = parameters::default_values() |
||
) |
#include <CGAL/IO/write_xyz_points.h>
writes the range of points
(positions + normals, if available), using the XYZ File Format.
PointRange | is a model of ConstRange . The value type of its iterator is the key type of the named parameter point_map . |
NamedParameters | a sequence of Named Parameters |
os | output stream |
points | input point range |
np | an optional sequence of Named Parameters among the ones listed below |
| |
| |
| |
|
true
if writing was successful, false
otherwise.