surfaceCoarsen: Changed List<::... to List< ::... for gcc-4.5
This commit is contained in:
parent
7d192447f0
commit
5552674fc7
1 changed files with 3 additions and 3 deletions
|
|
@ -95,8 +95,8 @@ int main(int argc, char *argv[])
|
||||||
Info<< endl;
|
Info<< endl;
|
||||||
|
|
||||||
|
|
||||||
::List<::Vector> vert; // global list of vertices
|
::List< ::Vector> vert; // global list of vertices
|
||||||
::List<::tridata> tri; // global list of triangles
|
::List< ::tridata> tri; // global list of triangles
|
||||||
|
|
||||||
|
|
||||||
// Convert triSurface to progmesh format. Note: can use global point
|
// Convert triSurface to progmesh format. Note: can use global point
|
||||||
|
|
@ -127,7 +127,7 @@ int main(int argc, char *argv[])
|
||||||
::ProgressiveMesh(vert,tri,collapse_map,permutation);
|
::ProgressiveMesh(vert,tri,collapse_map,permutation);
|
||||||
|
|
||||||
// rearrange the vertex list
|
// rearrange the vertex list
|
||||||
::List<::Vector> temp_list;
|
::List< ::Vector> temp_list;
|
||||||
for (int i=0;i<vert.num;i++)
|
for (int i=0;i<vert.num;i++)
|
||||||
{
|
{
|
||||||
temp_list.Add(vert[i]);
|
temp_list.Add(vert[i]);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue