change on Refine method calling

This commit is contained in:
Paolo Cignoni cignoni 2005-11-14 16:00:15 +00:00
parent 7dd2d46037
commit 99e2029fb1

View File

@ -85,7 +85,10 @@ int main(int argc, char **argv)
switch(RefMode){
case FLAT: Refine<MyMesh, MidPoint<MyMesh> >(m,MidPoint<MyMesh>(),length); break;
case BUTTERFLY: Refine<MyMesh, MidPointButterfly<MyMesh> >(m,MidPointButterfly<MyMesh>(),length); break;
case LOOP: Refine<MyMesh, OddPointLoop<MyMesh> >(m,OddPointLoop<MyMesh>(),length); break;
case LOOP: RefineOddEvenE<MyMesh, OddPointLoop<MyMesh>, EvenPointLoop<MyMesh> >(m,OddPointLoop<MyMesh>(), EvenPointLoop<MyMesh>(),length); break;
// case LOOP: Refine<MyMesh, EvenPointLoop<MyMesh> >(m, EvenPointLoop<MyMesh>(),length); break;
}
}