fixed some typos
This commit is contained in:
parent
2b7e5ba20b
commit
4881ea8148
|
@ -51,7 +51,7 @@ public:
|
||||||
vsHandle vsH = Allocator<ComputeMeshType>::template AddPerVertexAttribute< bool >(*_m);
|
vsHandle vsH = Allocator<ComputeMeshType>::template AddPerVertexAttribute< bool >(*_m);
|
||||||
esHandle esH = Allocator<ComputeMeshType>::template AddPerEdgeAttribute< bool > (*_m);
|
esHandle esH = Allocator<ComputeMeshType>::template AddPerEdgeAttribute< bool > (*_m);
|
||||||
fsHandle fsH = Allocator<ComputeMeshType>::template AddPerFaceAttribute< bool > (*_m);
|
fsHandle fsH = Allocator<ComputeMeshType>::template AddPerFaceAttribute< bool > (*_m);
|
||||||
fsHandle tsH = Allocator<ComputeMeshType>::template AddPerTetraAttribute< bool > (*_m);
|
tsHandle tsH = Allocator<ComputeMeshType>::template AddPerTetraAttribute< bool > (*_m);
|
||||||
typename ComputeMeshType::VertexIterator vi;
|
typename ComputeMeshType::VertexIterator vi;
|
||||||
for(vi = _m->vert.begin(); vi != _m->vert.end(); ++vi)
|
for(vi = _m->vert.begin(); vi != _m->vert.end(); ++vi)
|
||||||
if( !(*vi).IsD() ) vsH[*vi] = (*vi).IsS() ;
|
if( !(*vi).IsD() ) vsH[*vi] = (*vi).IsS() ;
|
||||||
|
@ -132,10 +132,10 @@ public:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (auto ti = _m->tetra.begin(); ti != _m.tetra.end(); ++ti)
|
for (auto ti = _m->tetra.begin(); ti != _m->tetra.end(); ++ti)
|
||||||
if (!(*ti).IsD())
|
if (!(*ti).IsD())
|
||||||
{
|
{
|
||||||
if (fsH[*ti]) {
|
if (tsH[*ti]) {
|
||||||
if (!andFlag) (*ti).SetS();
|
if (!andFlag) (*ti).SetS();
|
||||||
} else {
|
} else {
|
||||||
if (!orFlag) (*ti).ClearS();
|
if (!orFlag) (*ti).ClearS();
|
||||||
|
@ -159,7 +159,7 @@ private:
|
||||||
std::vector<vsHandle> vsV;
|
std::vector<vsHandle> vsV;
|
||||||
std::vector<esHandle> esV;
|
std::vector<esHandle> esV;
|
||||||
std::vector<fsHandle> fsV;
|
std::vector<fsHandle> fsV;
|
||||||
std::vector<fsHandle> tsV;
|
std::vector<tsHandle> tsV;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue