mirror of https://github.com/CGAL/cgal
Add NamedParameters to the off IO functions.
This commit is contained in:
parent
7ff5a2adfa
commit
c4da8690cb
|
|
@ -32,24 +32,36 @@
|
||||||
|
|
||||||
#include <CGAL/boost/graph/Euler_operations.h>
|
#include <CGAL/boost/graph/Euler_operations.h>
|
||||||
#include <CGAL/boost/graph/helpers.h>
|
#include <CGAL/boost/graph/helpers.h>
|
||||||
|
#include <CGAL/boost/graph/named_params_helper.h>
|
||||||
|
#include <CGAL/boost/graph/named_function_params.h>
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
/*!
|
/*!
|
||||||
\ingroup PkgBGLIOFct
|
\ingroup PkgBGLIOFct
|
||||||
writes the graph `g` in the OFF format.
|
writes the graph `g` in the OFF format.
|
||||||
|
|
||||||
|
\cgalNamedParamsBegin
|
||||||
|
* \cgalParamBegin{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`\cgalParamEnd
|
||||||
|
* \cgalNamedParamsEnd
|
||||||
|
|
||||||
\sa Overloads of this function for specific models of the concept `FaceGraph`.
|
\sa Overloads of this function for specific models of the concept `FaceGraph`.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
template <typename FaceGraph>
|
template <typename FaceGraph, typename NamedParameters>
|
||||||
bool write_off(std::ostream& os,
|
bool write_off(std::ostream& os,
|
||||||
const FaceGraph& g)
|
const FaceGraph& g,
|
||||||
|
const NamedParameters& np)
|
||||||
{
|
{
|
||||||
typedef typename boost::graph_traits<FaceGraph>::vertex_descriptor vertex_descriptor;
|
typedef typename boost::graph_traits<FaceGraph>::vertex_descriptor vertex_descriptor;
|
||||||
typedef typename boost::graph_traits<FaceGraph>::face_descriptor face_descriptor;
|
typedef typename boost::graph_traits<FaceGraph>::face_descriptor face_descriptor;
|
||||||
typedef typename boost::graph_traits<FaceGraph>::vertices_size_type vertices_size_type;
|
typedef typename boost::graph_traits<FaceGraph>::vertices_size_type vertices_size_type;
|
||||||
typedef typename boost::graph_traits<FaceGraph>::faces_size_type faces_size_type;
|
typedef typename boost::graph_traits<FaceGraph>::faces_size_type faces_size_type;
|
||||||
|
|
||||||
typename boost::property_map<FaceGraph, CGAL::vertex_point_t>::const_type vpm = get(CGAL::vertex_point,g);
|
typename Polygon_mesh_processing::GetVertexPointMap<FaceGraph, NamedParameters>::const_type
|
||||||
|
vpm = choose_param(get_param(np, internal_np::vertex_point),
|
||||||
|
get_const_property_map(CGAL::vertex_point, g));
|
||||||
vertices_size_type nv = static_cast<vertices_size_type>(std::distance(vertices(g).first, vertices(g).second));
|
vertices_size_type nv = static_cast<vertices_size_type>(std::distance(vertices(g).first, vertices(g).second));
|
||||||
faces_size_type nf = static_cast<faces_size_type>(std::distance(faces(g).first, faces(g).second));
|
faces_size_type nf = static_cast<faces_size_type>(std::distance(faces(g).first, faces(g).second));
|
||||||
|
|
||||||
|
|
@ -78,21 +90,45 @@ bool write_off(std::ostream& os,
|
||||||
\sa Overloads of this function for specific models of the concept `FaceGraph`.
|
\sa Overloads of this function for specific models of the concept `FaceGraph`.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
template <typename FaceGraph, typename NamedParameters>
|
||||||
|
bool write_off(const char* fname,
|
||||||
|
const FaceGraph& g,
|
||||||
|
const NamedParameters& np)
|
||||||
|
{
|
||||||
|
std::ofstream out(fname);
|
||||||
|
if(out.good()){
|
||||||
|
return write_off(out,g, np);
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename FaceGraph, typename NamedParameters>
|
||||||
|
bool write_off(const std::string& fname,
|
||||||
|
const FaceGraph& g,
|
||||||
|
const NamedParameters& np)
|
||||||
|
{ return write_off(fname.c_str(), g, np); }
|
||||||
|
|
||||||
|
|
||||||
|
template <typename FaceGraph>
|
||||||
|
bool write_off(std::ostream& os,
|
||||||
|
const FaceGraph& g)
|
||||||
|
{
|
||||||
|
return write_off(os, g,
|
||||||
|
parameters::all_default());
|
||||||
|
}
|
||||||
template <typename FaceGraph>
|
template <typename FaceGraph>
|
||||||
bool write_off(const char* fname,
|
bool write_off(const char* fname,
|
||||||
const FaceGraph& g)
|
const FaceGraph& g)
|
||||||
{
|
{
|
||||||
std::ofstream out(fname);
|
return write_off(fname,g,
|
||||||
if(out.good()){
|
parameters::all_default());
|
||||||
return write_off(out,g);
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename FaceGraph>
|
template <typename FaceGraph>
|
||||||
bool write_off(const std::string& fname,
|
bool write_off(const std::string& fname,
|
||||||
const FaceGraph& g)
|
const FaceGraph& g)
|
||||||
{ return write_off(fname.c_str(), g); }
|
{ return write_off(fname, g,
|
||||||
|
parameters::all_default()); }
|
||||||
|
|
||||||
namespace internal { namespace read_off_tools {
|
namespace internal { namespace read_off_tools {
|
||||||
|
|
||||||
|
|
@ -122,14 +158,21 @@ inline std::string next_non_comment(std::istream& is)
|
||||||
/*!
|
/*!
|
||||||
\ingroup PkgBGLIOFct
|
\ingroup PkgBGLIOFct
|
||||||
reads the graph `g` from data in the OFF format. Ignores comment lines which start with a hash, and lines with whitespace.
|
reads the graph `g` from data in the OFF format. Ignores comment lines which start with a hash, and lines with whitespace.
|
||||||
|
|
||||||
|
\cgalNamedParamsBegin
|
||||||
|
* \cgalParamBegin{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`\cgalParamEnd
|
||||||
|
* \cgalNamedParamsEnd
|
||||||
\sa Overloads of this function for specific models of the concept `FaceGraph`.
|
\sa Overloads of this function for specific models of the concept `FaceGraph`.
|
||||||
\pre The data must represent a 2-manifold
|
\pre The data must represent a 2-manifold
|
||||||
\attention The graph `g` is not cleared, and the data from the stream are added.
|
\attention The graph `g` is not cleared, and the data from the stream are added.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
template <typename FaceGraph>
|
template <typename FaceGraph, typename NamedParameters>
|
||||||
bool read_off(std::istream& is,
|
bool read_off(std::istream& is,
|
||||||
FaceGraph& g)
|
FaceGraph& g,
|
||||||
|
NamedParameters np)
|
||||||
{
|
{
|
||||||
using namespace internal::read_off_tools;
|
using namespace internal::read_off_tools;
|
||||||
|
|
||||||
|
|
@ -137,9 +180,11 @@ bool read_off(std::istream& is,
|
||||||
typedef typename boost::graph_traits<FaceGraph>::vertices_size_type vertices_size_type;
|
typedef typename boost::graph_traits<FaceGraph>::vertices_size_type vertices_size_type;
|
||||||
typedef typename boost::graph_traits<FaceGraph>::faces_size_type faces_size_type;
|
typedef typename boost::graph_traits<FaceGraph>::faces_size_type faces_size_type;
|
||||||
|
|
||||||
typedef typename boost::property_map<FaceGraph, CGAL::vertex_point_t>::type Vpm;
|
typedef typename Polygon_mesh_processing::GetVertexPointMap<FaceGraph, NamedParameters>::type Vpm;
|
||||||
typedef typename boost::property_traits<Vpm>::value_type Point_3;
|
typedef typename boost::property_traits<Vpm>::value_type Point_3;
|
||||||
Vpm vpm = get(CGAL::vertex_point,g);
|
|
||||||
|
Vpm vpm = choose_param(get_param(np, internal_np::vertex_point),
|
||||||
|
get_property_map(CGAL::vertex_point, g));
|
||||||
vertices_size_type nv, nvf;
|
vertices_size_type nv, nvf;
|
||||||
faces_size_type nf;
|
faces_size_type nf;
|
||||||
int ignore;
|
int ignore;
|
||||||
|
|
@ -182,6 +227,12 @@ bool read_off(std::istream& is,
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <typename FaceGraph>
|
||||||
|
bool read_off(std::istream& is,
|
||||||
|
FaceGraph& g)
|
||||||
|
{
|
||||||
|
return read_off(is, g, parameters::all_default());
|
||||||
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
\ingroup PkgBGLIOFct
|
\ingroup PkgBGLIOFct
|
||||||
|
|
@ -191,36 +242,52 @@ bool read_off(std::istream& is,
|
||||||
\attention The graph `g` is not cleared, and the data from the stream are added.
|
\attention The graph `g` is not cleared, and the data from the stream are added.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
template <typename FaceGraph>
|
template <typename FaceGraph, typename NamedParameters>
|
||||||
bool read_off(const char* fname,
|
bool read_off(const char* fname,
|
||||||
FaceGraph& g)
|
FaceGraph& g,
|
||||||
|
NamedParameters np)
|
||||||
{
|
{
|
||||||
std::ifstream in(fname);
|
std::ifstream in(fname);
|
||||||
if(in.good()){
|
if(in.good()){
|
||||||
return read_off(in, g);
|
return read_off(in, g, np);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename FaceGraph>
|
template <typename FaceGraph>
|
||||||
bool read_off(const std::string& fname,
|
bool read_off(const char* fname,
|
||||||
FaceGraph& g)
|
FaceGraph& g)
|
||||||
{ return read_off(fname.c_str(), g); }
|
{
|
||||||
|
return read_off(fname, g, parameters::all_default());
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename FaceGraph, typename NamedParameters>
|
||||||
|
bool read_off(const std::string& fname,
|
||||||
|
FaceGraph& g,
|
||||||
|
NamedParameters np)
|
||||||
|
{ return read_off(fname.c_str(), g, np); }
|
||||||
|
|
||||||
template <typename FaceGraph>
|
template <typename FaceGraph>
|
||||||
|
bool read_off(const std::string& fname,
|
||||||
|
FaceGraph& g)
|
||||||
|
{ return read_off(fname, g, parameters::all_default()); }
|
||||||
|
|
||||||
|
template <typename FaceGraph, typename NamedParameters>
|
||||||
bool write_inp(std::ostream& os,
|
bool write_inp(std::ostream& os,
|
||||||
const FaceGraph& g,
|
const FaceGraph& g,
|
||||||
std::string name,
|
std::string name,
|
||||||
std::string type)
|
std::string type,
|
||||||
|
const NamedParameters& np)
|
||||||
{
|
{
|
||||||
typedef typename boost::graph_traits<FaceGraph>::vertex_descriptor vertex_descriptor;
|
typedef typename boost::graph_traits<FaceGraph>::vertex_descriptor vertex_descriptor;
|
||||||
typedef typename boost::graph_traits<FaceGraph>::face_descriptor face_descriptor;
|
typedef typename boost::graph_traits<FaceGraph>::face_descriptor face_descriptor;
|
||||||
typedef typename boost::graph_traits<FaceGraph>::vertices_size_type vertices_size_type;
|
typedef typename boost::graph_traits<FaceGraph>::vertices_size_type vertices_size_type;
|
||||||
|
|
||||||
typedef typename boost::property_map<FaceGraph, CGAL::vertex_point_t>::const_type VPM;
|
typedef typename Polygon_mesh_processing::GetVertexPointMap<FaceGraph, NamedParameters>::const_type VPM;
|
||||||
typedef typename boost::property_traits<VPM>::value_type Point_3;
|
typedef typename boost::property_traits<VPM>::value_type Point_3;
|
||||||
|
|
||||||
VPM vpm = get(CGAL::vertex_point,g);
|
VPM vpm = choose_param(get_param(np, internal_np::vertex_point),
|
||||||
|
get_const_property_map(CGAL::vertex_point, g));
|
||||||
|
|
||||||
os << "*Part, name=" << name << "\n*Node\n";
|
os << "*Part, name=" << name << "\n*Node\n";
|
||||||
boost::container::flat_map<vertex_descriptor,vertices_size_type> reindex;
|
boost::container::flat_map<vertex_descriptor,vertices_size_type> reindex;
|
||||||
|
|
|
||||||
|
|
@ -33,9 +33,13 @@
|
||||||
|
|
||||||
|
|
||||||
bool read_mesh(Surface_mesh& mesh, const std::string& filename);
|
bool read_mesh(Surface_mesh& mesh, const std::string& filename);
|
||||||
|
template<typename NamedParameters>
|
||||||
|
bool read_off(Surface_mesh& mesh, const std::string& filename, NamedParameters& np);
|
||||||
bool read_off(Surface_mesh& mesh, const std::string& filename);
|
bool read_off(Surface_mesh& mesh, const std::string& filename);
|
||||||
|
|
||||||
bool write_mesh(const Surface_mesh& mesh, const std::string& filename);
|
bool write_mesh(const Surface_mesh& mesh, const std::string& filename);
|
||||||
|
template<typename NamedParameters>
|
||||||
|
bool write_off(const Surface_mesh& mesh, const std::string& filename, const NamedParameters& np);
|
||||||
bool write_off(const Surface_mesh& mesh, const std::string& filename);
|
bool write_off(const Surface_mesh& mesh, const std::string& filename);
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,8 @@
|
||||||
|
|
||||||
#include "IO.h"
|
#include "IO.h"
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#include <CGAL/boost/graph/named_function_params.h>
|
||||||
|
#include <CGAL/boost/graph/named_params_helper.h>
|
||||||
|
|
||||||
//== IMPLEMENTATION ===========================================================
|
//== IMPLEMENTATION ===========================================================
|
||||||
|
|
||||||
|
|
@ -39,12 +40,13 @@ template <typename T> void read(FILE* in, T& t)
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
template <typename NamedParameters>
|
||||||
bool read_off_ascii(Surface_mesh& mesh,
|
bool read_off_ascii(Surface_mesh& mesh,
|
||||||
FILE* in,
|
FILE* in,
|
||||||
const bool has_normals,
|
const bool has_normals,
|
||||||
const bool has_texcoords,
|
const bool has_texcoords,
|
||||||
const bool has_colors)
|
const bool has_colors,
|
||||||
|
NamedParameters& np)
|
||||||
{
|
{
|
||||||
char line[100], *lp;
|
char line[100], *lp;
|
||||||
unsigned int i, j, items, idx, nc;
|
unsigned int i, j, items, idx, nc;
|
||||||
|
|
@ -52,6 +54,9 @@ bool read_off_ascii(Surface_mesh& mesh,
|
||||||
Vec3f p, n, c;
|
Vec3f p, n, c;
|
||||||
Vec2f t;
|
Vec2f t;
|
||||||
Surface_mesh::Vertex v;
|
Surface_mesh::Vertex v;
|
||||||
|
typename CGAL::Polygon_mesh_processing::GetVertexPointMap<Surface_mesh, NamedParameters>::const_type
|
||||||
|
vpm = choose_param(get_param(np, CGAL::boost::internal_np::vertex_point),
|
||||||
|
get_const_property_map(CGAL::vertex_point, mesh));
|
||||||
|
|
||||||
|
|
||||||
// properties
|
// properties
|
||||||
|
|
@ -78,7 +83,8 @@ bool read_off_ascii(Surface_mesh& mesh,
|
||||||
// position
|
// position
|
||||||
items = sscanf(lp, "%f %f %f%n", &p[0], &p[1], &p[2], &nc);
|
items = sscanf(lp, "%f %f %f%n", &p[0], &p[1], &p[2], &nc);
|
||||||
assert(items==3);
|
assert(items==3);
|
||||||
v = mesh.add_vertex((Point)p);
|
Surface_mesh::Vertex v = mesh.add_vertex();
|
||||||
|
put(vpm, v, (Point)p);
|
||||||
lp += nc;
|
lp += nc;
|
||||||
|
|
||||||
// normal
|
// normal
|
||||||
|
|
@ -146,12 +152,13 @@ bool read_off_ascii(Surface_mesh& mesh,
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
template<typename NamedParameters>
|
||||||
bool read_off_binary(Surface_mesh& mesh,
|
bool read_off_binary(Surface_mesh& mesh,
|
||||||
FILE* in,
|
FILE* in,
|
||||||
const bool has_normals,
|
const bool has_normals,
|
||||||
const bool has_texcoords,
|
const bool has_texcoords,
|
||||||
const bool has_colors)
|
const bool has_colors,
|
||||||
|
NamedParameters& np)
|
||||||
{
|
{
|
||||||
unsigned int i, j, idx;
|
unsigned int i, j, idx;
|
||||||
unsigned int nV, nF, nE;
|
unsigned int nV, nF, nE;
|
||||||
|
|
@ -169,6 +176,9 @@ bool read_off_binary(Surface_mesh& mesh,
|
||||||
Surface_mesh::Vertex_property<Texture_coordinate> texcoords;
|
Surface_mesh::Vertex_property<Texture_coordinate> texcoords;
|
||||||
if (has_normals) normals = mesh.vertex_property<Normal>("v:normal");
|
if (has_normals) normals = mesh.vertex_property<Normal>("v:normal");
|
||||||
if (has_texcoords) texcoords = mesh.vertex_property<Texture_coordinate>("v:texcoord");
|
if (has_texcoords) texcoords = mesh.vertex_property<Texture_coordinate>("v:texcoord");
|
||||||
|
typename CGAL::Polygon_mesh_processing::GetVertexPointMap<Surface_mesh, NamedParameters>::const_type
|
||||||
|
vpm = choose_param(get_param(np, CGAL::boost::internal_np::vertex_point),
|
||||||
|
get_const_property_map(CGAL::vertex_point, mesh));
|
||||||
|
|
||||||
|
|
||||||
// #Vertice, #Faces, #Edges
|
// #Vertice, #Faces, #Edges
|
||||||
|
|
@ -184,7 +194,8 @@ bool read_off_binary(Surface_mesh& mesh,
|
||||||
{
|
{
|
||||||
// position
|
// position
|
||||||
read(in, p);
|
read(in, p);
|
||||||
v = mesh.add_vertex((Point)p);
|
Surface_mesh::Vertex v = mesh.add_vertex();
|
||||||
|
put(vpm, v, (Point)p);
|
||||||
|
|
||||||
// normal
|
// normal
|
||||||
if (has_normals)
|
if (has_normals)
|
||||||
|
|
@ -224,8 +235,8 @@ bool read_off_binary(Surface_mesh& mesh,
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
template<typename NamedParameters>
|
||||||
bool read_off(Surface_mesh& mesh, const std::string& filename)
|
bool read_off(Surface_mesh& mesh, const std::string& filename, NamedParameters& np)
|
||||||
{
|
{
|
||||||
char line[100];
|
char line[100];
|
||||||
bool has_texcoords = false;
|
bool has_texcoords = false;
|
||||||
|
|
@ -274,8 +285,8 @@ bool read_off(Surface_mesh& mesh, const std::string& filename)
|
||||||
|
|
||||||
// read as ASCII or binary
|
// read as ASCII or binary
|
||||||
bool ok = (is_binary ?
|
bool ok = (is_binary ?
|
||||||
read_off_binary(mesh, in, has_normals, has_texcoords, has_colors) :
|
read_off_binary(mesh, in, has_normals, has_texcoords, has_colors, np) :
|
||||||
read_off_ascii(mesh, in, has_normals, has_texcoords, has_colors));
|
read_off_ascii(mesh, in, has_normals, has_texcoords, has_colors, np));
|
||||||
|
|
||||||
|
|
||||||
fclose(in);
|
fclose(in);
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,8 @@
|
||||||
#include <CGAL/Polyhedron_3.h>
|
#include <CGAL/Polyhedron_3.h>
|
||||||
#include <CGAL/IO/print_OFF.h>
|
#include <CGAL/IO/print_OFF.h>
|
||||||
#include <CGAL/IO/scan_OFF.h>
|
#include <CGAL/IO/scan_OFF.h>
|
||||||
|
#include <CGAL/boost/graph/named_params_helper.h>
|
||||||
|
#include <CGAL/boost/graph/named_function_params.h>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
@ -36,16 +38,54 @@ namespace CGAL {
|
||||||
template < class Traits,
|
template < class Traits,
|
||||||
class Items,
|
class Items,
|
||||||
template < class T, class I, class A>
|
template < class T, class I, class A>
|
||||||
class HDS, class Alloc>
|
class HDS, class Alloc, class NamedParameters>
|
||||||
bool
|
bool
|
||||||
write_off( std::ostream& out, const Polyhedron_3<Traits,Items,HDS,Alloc>& P){
|
write_off( std::ostream& out, const Polyhedron_3<Traits,Items,HDS,Alloc>& P, const NamedParameters& np){
|
||||||
// writes P to `out' in PRETTY, ASCII or BINARY format
|
// writes P to `out' in PRETTY, ASCII or BINARY format
|
||||||
// as the stream indicates.
|
// as the stream indicates.
|
||||||
File_header_OFF header( is_binary( out), ! is_pretty( out), false);
|
File_header_OFF header( is_binary( out), ! is_pretty( out), false);
|
||||||
CGAL::print_polyhedron_with_header_OFF( out, P, header);
|
typename CGAL::Polygon_mesh_processing::GetVertexPointMap<Polyhedron_3<Traits,Items,HDS,Alloc>, NamedParameters>::const_type
|
||||||
|
vpm = choose_param(get_param(np, internal_np::vertex_point),
|
||||||
|
get_const_property_map(CGAL::vertex_point, P));
|
||||||
|
CGAL::print_polyhedron_with_header_OFF( out, P, header, vpm);
|
||||||
return out.good();
|
return out.good();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template < class Traits,
|
||||||
|
class Items,
|
||||||
|
template < class T, class I, class A>
|
||||||
|
class HDS, class Alloc>
|
||||||
|
bool
|
||||||
|
write_off( std::ostream& out, const Polyhedron_3<Traits,Items,HDS,Alloc>& P){
|
||||||
|
return write_off(out, P, parameters::all_default());
|
||||||
|
}
|
||||||
|
|
||||||
|
template < class Traits,
|
||||||
|
class Items,
|
||||||
|
template < class T, class I, class A>
|
||||||
|
class HDS, class Alloc,
|
||||||
|
class NamedParameters>
|
||||||
|
bool
|
||||||
|
read_off(std::istream& in,
|
||||||
|
Polyhedron_3<Traits,Items,HDS,Alloc>& P,
|
||||||
|
NamedParameters np) {
|
||||||
|
// reads a polyhedron from `in' and appends it to P.
|
||||||
|
typedef typename CGAL::Polygon_mesh_processing::GetVertexPointMap<Polyhedron_3<Traits,Items,HDS,Alloc>, NamedParameters>::type Vpm;
|
||||||
|
Vpm vpm = choose_param(get_param(np, internal_np::vertex_point),
|
||||||
|
get_property_map(CGAL::vertex_point, P));
|
||||||
|
CGAL::scan_OFF( in, P);
|
||||||
|
if(!boost::is_default_param(get_param(np, internal_np::vertex_point)))
|
||||||
|
{
|
||||||
|
typedef typename boost::graph_traits<Polyhedron_3<Traits,Items,HDS,Alloc> >::vertex_descriptor Vertex;
|
||||||
|
typename property_map_selector<Polyhedron_3<Traits,Items,HDS,Alloc>, boost::vertex_point_t>::type
|
||||||
|
def_vpm = get_property_map(CGAL::vertex_point, P);
|
||||||
|
BOOST_FOREACH(Vertex v, vertices(P))
|
||||||
|
{
|
||||||
|
put(vpm, v, get(def_vpm, v));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return in.good();
|
||||||
|
}
|
||||||
|
|
||||||
template < class Traits,
|
template < class Traits,
|
||||||
class Items,
|
class Items,
|
||||||
|
|
@ -53,13 +93,11 @@ template < class Traits,
|
||||||
class HDS, class Alloc>
|
class HDS, class Alloc>
|
||||||
bool
|
bool
|
||||||
read_off(std::istream& in,
|
read_off(std::istream& in,
|
||||||
Polyhedron_3<Traits,Items,HDS,Alloc>& P) {
|
Polyhedron_3<Traits,Items,HDS,Alloc>& P)
|
||||||
// reads a polyhedron from `in' and appends it to P.
|
{
|
||||||
CGAL::scan_OFF( in, P);
|
return read_off(in, P, parameters::all_default());
|
||||||
return in.good();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
template < class Traits,
|
template < class Traits,
|
||||||
class Items,
|
class Items,
|
||||||
template < class T, class I, class A>
|
template < class T, class I, class A>
|
||||||
|
|
|
||||||
|
|
@ -24,18 +24,18 @@
|
||||||
|
|
||||||
#include <CGAL/license/Polyhedron.h>
|
#include <CGAL/license/Polyhedron.h>
|
||||||
|
|
||||||
|
|
||||||
#include <CGAL/basic.h>
|
#include <CGAL/basic.h>
|
||||||
#include <CGAL/Inverse_index.h>
|
#include <CGAL/Inverse_index.h>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
||||||
template <class Polyhedron, class Writer>
|
template <class Polyhedron, class Writer, class Vpm>
|
||||||
void
|
void
|
||||||
generic_print_polyhedron( std::ostream& out,
|
generic_print_polyhedron( std::ostream& out,
|
||||||
const Polyhedron& P,
|
const Polyhedron& P,
|
||||||
Writer& writer) {
|
Writer& writer,
|
||||||
|
const Vpm& vpm ) {
|
||||||
// writes P to `out' in the format provided by `writer'.
|
// writes P to `out' in the format provided by `writer'.
|
||||||
typedef typename Polyhedron::Vertex_const_iterator VCI;
|
typedef typename Polyhedron::Vertex_const_iterator VCI;
|
||||||
typedef typename Polyhedron::Facet_const_iterator FCI;
|
typedef typename Polyhedron::Facet_const_iterator FCI;
|
||||||
|
|
@ -45,10 +45,10 @@ generic_print_polyhedron( std::ostream& out,
|
||||||
P.size_of_vertices(),
|
P.size_of_vertices(),
|
||||||
P.size_of_halfedges(),
|
P.size_of_halfedges(),
|
||||||
P.size_of_facets());
|
P.size_of_facets());
|
||||||
for( VCI vi = P.vertices_begin(); vi != P.vertices_end(); ++vi) {
|
BOOST_FOREACH(typename boost::graph_traits<Polyhedron>::vertex_descriptor vi, vertices(P)) {
|
||||||
writer.write_vertex( ::CGAL::to_double( vi->point().x()),
|
writer.write_vertex( ::CGAL::to_double( get(vpm, vi).x()),
|
||||||
::CGAL::to_double( vi->point().y()),
|
::CGAL::to_double( get(vpm, vi).y()),
|
||||||
::CGAL::to_double( vi->point().z()));
|
::CGAL::to_double( get(vpm, vi).z()));
|
||||||
}
|
}
|
||||||
typedef Inverse_index< VCI> Index;
|
typedef Inverse_index< VCI> Index;
|
||||||
Index index( P.vertices_begin(), P.vertices_end());
|
Index index( P.vertices_begin(), P.vertices_end());
|
||||||
|
|
@ -69,6 +69,15 @@ generic_print_polyhedron( std::ostream& out,
|
||||||
writer.write_footer();
|
writer.write_footer();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <class Polyhedron, class Writer>
|
||||||
|
void
|
||||||
|
generic_print_polyhedron( std::ostream& out,
|
||||||
|
const Polyhedron& P,
|
||||||
|
Writer& writer)
|
||||||
|
{
|
||||||
|
generic_print_polyhedron(out, P, writer,
|
||||||
|
get_property_map(CGAL::vertex_point, P));
|
||||||
|
}
|
||||||
} //namespace CGAL
|
} //namespace CGAL
|
||||||
#endif // CGAL_IO_GENERIC_PRINT_POLYHEDRON_H //
|
#endif // CGAL_IO_GENERIC_PRINT_POLYHEDRON_H //
|
||||||
// EOF //
|
// EOF //
|
||||||
|
|
|
||||||
|
|
@ -33,16 +33,24 @@
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
||||||
template <class Polyhedron>
|
template <class Polyhedron, class Vpm>
|
||||||
void print_polyhedron_with_header_OFF( std::ostream& out,
|
void print_polyhedron_with_header_OFF( std::ostream& out,
|
||||||
const Polyhedron& P,
|
const Polyhedron& P,
|
||||||
const File_header_OFF& header) {
|
const File_header_OFF& header,
|
||||||
|
const Vpm& vpm) {
|
||||||
File_writer_OFF writer( header);
|
File_writer_OFF writer( header);
|
||||||
writer.header().set_polyhedral_surface( true);
|
writer.header().set_polyhedral_surface( true);
|
||||||
writer.header().set_halfedges( P.size_of_halfedges());
|
writer.header().set_halfedges( P.size_of_halfedges());
|
||||||
generic_print_polyhedron( out, P, writer);
|
generic_print_polyhedron( out, P, writer, vpm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template <class Polyhedron>
|
||||||
|
void print_polyhedron_with_header_OFF( std::ostream& out,
|
||||||
|
const Polyhedron& P,
|
||||||
|
const File_header_OFF& header)
|
||||||
|
{
|
||||||
|
print_polyhedron_with_header_OFF(out, P, header);
|
||||||
|
}
|
||||||
|
|
||||||
template <class Polyhedron>
|
template <class Polyhedron>
|
||||||
void print_polyhedron_OFF( std::ostream& out,
|
void print_polyhedron_OFF( std::ostream& out,
|
||||||
|
|
|
||||||
|
|
@ -55,6 +55,8 @@
|
||||||
#include <CGAL/boost/graph/Euler_operations.h>
|
#include <CGAL/boost/graph/Euler_operations.h>
|
||||||
#include <CGAL/IO/File_scanner_OFF.h>
|
#include <CGAL/IO/File_scanner_OFF.h>
|
||||||
#include <CGAL/Handle_hash_function.h>
|
#include <CGAL/Handle_hash_function.h>
|
||||||
|
#include <CGAL/boost/graph/named_params_helper.h>
|
||||||
|
#include <CGAL/boost/graph/named_function_params.h>
|
||||||
|
|
||||||
namespace CGAL {
|
namespace CGAL {
|
||||||
|
|
||||||
|
|
@ -1977,9 +1979,11 @@ private: //------------------------------------------------------- private data
|
||||||
/// \relates Surface_mesh
|
/// \relates Surface_mesh
|
||||||
/// Inserts the surface mesh in an output stream in Ascii OFF format.
|
/// Inserts the surface mesh in an output stream in Ascii OFF format.
|
||||||
/// Only the \em point property is inserted in the stream.
|
/// Only the \em point property is inserted in the stream.
|
||||||
|
/// If an alternative vertex_point map is given through `np`,
|
||||||
|
/// then it will be used instead of the default one.
|
||||||
/// \pre `operator<<(std::ostream&,const P&)` must be defined.
|
/// \pre `operator<<(std::ostream&,const P&)` must be defined.
|
||||||
template <typename P>
|
template <typename P, typename NamedParameters>
|
||||||
bool write_off(std::ostream& os, const Surface_mesh<P>& sm) {
|
bool write_off(std::ostream& os, const Surface_mesh<P>& sm, const NamedParameters& np) {
|
||||||
typedef Surface_mesh<P> Mesh;
|
typedef Surface_mesh<P> Mesh;
|
||||||
typedef typename Mesh::Vertex_index Vertex_index;
|
typedef typename Mesh::Vertex_index Vertex_index;
|
||||||
typedef typename Mesh::Face_index Face_index;
|
typedef typename Mesh::Face_index Face_index;
|
||||||
|
|
@ -1996,10 +2000,14 @@ private: //------------------------------------------------------- private data
|
||||||
else
|
else
|
||||||
os << "COFF\n" << sm.number_of_vertices() << " " << sm.number_of_faces() << " 0\n";
|
os << "COFF\n" << sm.number_of_vertices() << " " << sm.number_of_faces() << " 0\n";
|
||||||
std::vector<int> reindex;
|
std::vector<int> reindex;
|
||||||
|
typename Polygon_mesh_processing::GetVertexPointMap<Surface_mesh<P>, NamedParameters>::const_type
|
||||||
|
vpm = choose_param(get_param(np, internal_np::vertex_point),
|
||||||
|
get_const_property_map(CGAL::vertex_point, sm));
|
||||||
reindex.resize(sm.num_vertices());
|
reindex.resize(sm.num_vertices());
|
||||||
int n = 0;
|
int n = 0;
|
||||||
BOOST_FOREACH(Vertex_index v, sm.vertices()){
|
BOOST_FOREACH(Vertex_index v, sm.vertices()){
|
||||||
os << sm.point(v);
|
|
||||||
|
os << get(vpm, v);
|
||||||
if(has_vcolors)
|
if(has_vcolors)
|
||||||
{
|
{
|
||||||
CGAL::Color color = vcolors[v];
|
CGAL::Color color = vcolors[v];
|
||||||
|
|
@ -2058,12 +2066,14 @@ private: //------------------------------------------------------- private data
|
||||||
/// format and appends it to the surface mesh `sm`.
|
/// format and appends it to the surface mesh `sm`.
|
||||||
/// The operator reads the point property as well as "v:normal", "v:color", and "f:color".
|
/// The operator reads the point property as well as "v:normal", "v:color", and "f:color".
|
||||||
/// Vertex texture coordinates are ignored.
|
/// Vertex texture coordinates are ignored.
|
||||||
|
/// If an alternative vertex_point map is given through `np`,
|
||||||
|
/// then it will be used instead of the default one.
|
||||||
/// \pre `operator>>(std::istream&,const P&)` must be defined.
|
/// \pre `operator>>(std::istream&,const P&)` must be defined.
|
||||||
/// \pre The data in the stream must represent a two-manifold. If this is not the case
|
/// \pre The data in the stream must represent a two-manifold. If this is not the case
|
||||||
/// the `failbit` of `is` is set and the mesh cleared.
|
/// the `failbit` of `is` is set and the mesh cleared.
|
||||||
|
|
||||||
template <typename P>
|
template <typename P, typename NamedParameters>
|
||||||
bool read_off(std::istream& is, Surface_mesh<P>& sm)
|
bool read_off(std::istream& is, Surface_mesh<P>& sm, NamedParameters np)
|
||||||
{
|
{
|
||||||
typedef Surface_mesh<P> Mesh;
|
typedef Surface_mesh<P> Mesh;
|
||||||
typedef typename Kernel_traits<P>::Kernel K;
|
typedef typename Kernel_traits<P>::Kernel K;
|
||||||
|
|
@ -2071,6 +2081,9 @@ private: //------------------------------------------------------- private data
|
||||||
typedef typename Mesh::Face_index Face_index;
|
typedef typename Mesh::Face_index Face_index;
|
||||||
typedef typename Mesh::Vertex_index Vertex_index;
|
typedef typename Mesh::Vertex_index Vertex_index;
|
||||||
typedef typename Mesh::size_type size_type;
|
typedef typename Mesh::size_type size_type;
|
||||||
|
typename CGAL::Polygon_mesh_processing::GetVertexPointMap<Surface_mesh<P>, NamedParameters>::type
|
||||||
|
vpm = choose_param(get_param(np, CGAL::internal_np::vertex_point),
|
||||||
|
get_property_map(CGAL::vertex_point, sm));
|
||||||
int n, f, e;
|
int n, f, e;
|
||||||
std::string off;
|
std::string off;
|
||||||
is >> sm_skip_comments;
|
is >> sm_skip_comments;
|
||||||
|
|
@ -2097,7 +2110,11 @@ private: //------------------------------------------------------- private data
|
||||||
for(int i=0; i < n; i++){
|
for(int i=0; i < n; i++){
|
||||||
is >> sm_skip_comments;
|
is >> sm_skip_comments;
|
||||||
is >> p;
|
is >> p;
|
||||||
Vertex_index vi= sm.add_vertex(p);
|
|
||||||
|
Vertex_index vi = sm.add_vertex();
|
||||||
|
put(vpm, vi, p);
|
||||||
|
|
||||||
|
|
||||||
vertexmap[i] = vi;
|
vertexmap[i] = vi;
|
||||||
if(v_has_normals){
|
if(v_has_normals){
|
||||||
is >> v;
|
is >> v;
|
||||||
|
|
@ -2167,6 +2184,11 @@ private: //------------------------------------------------------- private data
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
template <typename P>
|
||||||
|
bool read_off(std::istream& is, Surface_mesh<P>& sm)
|
||||||
|
{
|
||||||
|
return read_off(is, sm, parameters::all_default());
|
||||||
|
}
|
||||||
|
|
||||||
/// \relates Surface_mesh
|
/// \relates Surface_mesh
|
||||||
/// This operator calls `read_off(std::istream& is, CGAL::Surface_mesh& sm)`.
|
/// This operator calls `read_off(std::istream& is, CGAL::Surface_mesh& sm)`.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue