modified setBorderV function

This commit is contained in:
Nico Pietroni 2004-05-20 13:04:23 +00:00
parent 19a75647d2
commit 038cf7712b
1 changed files with 9 additions and 6 deletions

View File

@ -24,6 +24,9 @@
History History
$Log: not supported by cvs2svn $ $Log: not supported by cvs2svn $
Revision 1.7 2004/05/14 11:48:43 pietroni
templated with also tetratype...
Revision 1.6 2004/05/14 11:07:36 turini Revision 1.6 2004/05/14 11:07:36 turini
Changed swap in std::swap. Changed swap in std::swap.
@ -279,14 +282,14 @@ public:
void setBorderV() void setBorderV()
{ {
int i; int i;
for (i=0;i<4;i++) for (i=0;i<4;i++)
if (T(i)==this) if (T(i)==this)
{ {
FV(i,0)->SetB(); V(Tetra::VofF(i,0))->SetB();
FV(i,1)->SetB(); V(Tetra::VofF(i,1))->SetB();
FV(i,2)->SetB(); V(Tetra::VofF(i,2))->SetB();
} }
} }
#endif #endif
//@} //@}