mirror of
https://github.com/lucaspalomodevelop/meshlab.git
synced 2026-03-20 11:26:11 +00:00
added missing std and vcg namespaces
This commit is contained in:
parent
d40818facd
commit
b8d0d7bb1d
@ -93,14 +93,14 @@ public:
|
||||
return NoError;
|
||||
} // end of ParseALN
|
||||
|
||||
static bool SaveALN(const char *alnfile, vector<string> &names)
|
||||
static bool SaveALN(const char *alnfile, std::vector<std::string> &names)
|
||||
{
|
||||
vector<Matrix44f> Tr(names.size());
|
||||
std::vector<Matrix44f> Tr(names.size());
|
||||
for(int i=0; i < static_cast<int>(Tr.size()); ++i) Tr[i].SetIdentity();
|
||||
return SaveALN(alnfile,names, Tr);
|
||||
}
|
||||
template <class matrixfloat>
|
||||
static bool SaveALN(const char *alnfile, vector<string> &names, vector<Matrix44 <matrixfloat> > &Tr)
|
||||
static bool SaveALN(const char *alnfile, std::vector<std::string> &names, std::vector<Matrix44 <matrixfloat> > &Tr)
|
||||
{
|
||||
// printf("Saving aln file %s\n",alnfile);
|
||||
FILE *fp=fopen(alnfile,"w");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user