WIP read_PLY with nps

This commit is contained in:
Maxime Gimeno 2020-04-03 15:21:25 +02:00
parent a40605fbbf
commit 3a0f59732b
1 changed files with 12 additions and 0 deletions

View File

@ -201,6 +201,18 @@ bool read_PLY(std::istream& is,
return read_PLY(is, points, polygons, dummy_pui, fcolors, vcolors, dummy_pf);
}
//todo
template <typename PointRange, typename PolygonRange,
typename VertexColorOutputIterator,
typename FaceColorOutputIterator>
bool read_OFF(std::istream& is,
PointRange& points,
PolygonRange& polygons,
VertexColorOutputIterator vc_out,
FaceColorOutputIterator fc_out)
{
}
/*!
* \ingroup IOstreamFunctions
*