removed unused variables

This commit is contained in:
Paolo Cignoni 2014-05-07 09:22:53 +00:00
parent e362aef041
commit 07ab76d93e
1 changed files with 0 additions and 8 deletions

View File

@ -573,10 +573,6 @@ void Build( MeshType & in, const V & v, const F & f)
Allocator<MeshType>::AddVertices(in,v.size());
Allocator<MeshType>::AddFaces(in,f.size());
typename V::const_iterator vi;
typename MeshType::VertexType tv;
for(size_t i=0;i<v.size();++i)
{
float *vv=(float *)(&v[i]);
@ -589,10 +585,6 @@ void Build( MeshType & in, const V & v, const F & f)
for(k=0,j=in.vert.begin();j!=in.vert.end();++j,++k)
index[k] = &*j;
typename F::const_iterator fi;
typename MeshType::FaceType ft;
for(size_t i=0;i<f.size();++i)
{
int * ff=(int *)(&f[i]);