Merge pull request #1036 from barfowl/vtr_nonman_fvar_tag

Fix construction of face-varying patches around non-manifold vertices
This commit is contained in:
David G Yu 2019-01-04 10:45:54 -08:00 committed by GitHub
commit c90c87d011
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -403,7 +403,8 @@ FVarLevel::ValueTag::combineWithLevelVTag(Level::VTag levelTag) const
levelTag._boundary = true;
levelTag._xordinary = this->_xordinary;
levelTag._nonManifold = this->_nonManifold;
levelTag._nonManifold |= this->_nonManifold;
}
return levelTag;
}