// // Copyright 2013 Pixar // // Licensed under the terms set forth in the LICENSE.txt file available at // https://opensubdiv.org/license. // #ifndef OPENSUBDIV3_HBRHOLEEDIT_H #define OPENSUBDIV3_HBRHOLEEDIT_H #include "../version.h" namespace OpenSubdiv { namespace OPENSUBDIV_VERSION { template class HbrHoleEdit; template std::ostream& operator<<(std::ostream& out, const HbrHoleEdit& path) { out << "edge path = (" << path.faceid << ' '; for (int i = 0; i < path.nsubfaces; ++i) { out << static_cast(path.subfaces[i]) << ' '; } return out << ")"; } template class HbrHoleEdit : public HbrHierarchicalEdit { public: HbrHoleEdit(int _faceid, int _nsubfaces, unsigned char *_subfaces) : HbrHierarchicalEdit(_faceid, _nsubfaces, _subfaces) { } HbrHoleEdit(int _faceid, int _nsubfaces, int *_subfaces) : HbrHierarchicalEdit(_faceid, _nsubfaces, _subfaces) { } virtual ~HbrHoleEdit() {} friend std::ostream& operator<< (std::ostream& out, const HbrHoleEdit& path); virtual void ApplyEditToFace(HbrFace* face) { if (HbrHierarchicalEdit::GetNSubfaces() == face->GetDepth()) { face->SetHole(); } } }; } // end namespace OPENSUBDIV_VERSION using namespace OPENSUBDIV_VERSION; } // end namespace OpenSubdiv #endif /* OPENSUBDIV3_HBRHOLEEDIT_H */