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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
/****************************************************************************
* VCGLib o o *
* Visual and Computer Graphics Library o o *
* _ O _ *
* Copyright(C) 2004-2016 \/)\/ *
* Visual Computing Lab /\/| *
* ISTI - Italian National Research Council | *
* \ *
* All rights reserved. *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) *
* for more details. *
* *
****************************************************************************/
/****************************************************************************
History
$Log: not supported by cvs2svn $
****************************************************************************/
#ifndef VCG_STRIP_MESH_H
#define VCG_STRIP_MESH_H
#include <vector>
namespace vcg {
class StripMesh {
public:
enum Signature { NORMAL = 1, COLOR = 2, STRIP = 4 };
StripMesh(char *s);
private:
unsigned short _vert_size;
unsigned short _norm_size;
unsigned short _color_size;
unsigned short _strip_size;
Point3f *_vert_start;
short *_norm_start;
unsigned char *_color_start;
unsigned short *_strip_start;
};
class StripMeshBuilder {
public:
std::vector<Point3f> vert;
std::vector<short> norm;
std::vector<unsigned char> color;
std::vector<unsigned short> strip;
unsigned int Signature();
///required size;
unsigned int Size();
void Write(char *buffer, unsigned int size);
};
}//namespace
#endif
|