-
Notifications
You must be signed in to change notification settings - Fork 0
/
file_ply_stl.hpp
42 lines (33 loc) · 1.11 KB
/
file_ply_stl.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//******************************************************************************
// class to read ply files of triangles
//
// Domingo Martín Perandres (c) 2003-2012
// Gnu Public Licence
//******************************************************************************
#ifndef _READ_PLY
#define _READ_PLY
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <string>
#include <vector>
#include <iostream>
#include <fstream>
#include <cmath>
#include <assert.h>
using namespace std;
namespace _file_ply
{
//**********************************************************************
//
// read: lee un archivo ply y lo carga en 'vertices' y 'faces'
//
// * 'nombreArchivo' no debe incluir la extensión .ply (se le añade antes de abrirlo)
// * si hay un error, aborta
// * elimina cualquier contenido previo en los vectores 'vertices' y 'faces'
// * lee el archivo .ply y lo carga en 'vertices' y 'faces'
// * solo admite plys con triángulos,
// * no lee colores, coordenadas de textura, ni normales.
void read( const char * nombreArchivo, vector<float> &Vertices,vector<int> &Faces );
} ;
#endif // _READ_PLY