CGI/exercise3/src/ShellExtraction.cpp
2018-11-13 09:22:55 +01:00

17 lines
No EOL
461 B
C++

// This source code is property of the Computer Graphics and Visualization
// chair of the TU Dresden. Do not distribute!
// Copyright (C) CGV TU Dresden - All Rights Reserved
#include "ShellExtraction.h"
#include <queue>
unsigned int ExtractShells(HEMesh& m, OpenMesh::FPropHandleT<int> perFaceShellIndex)
{
//reset the shell indices to -1 for every face
for (auto f : m.faces())
m.property(perFaceShellIndex, f) = -1;
/*Task 2.2.3*/
return 0;
}