// 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 "SurfaceArea.h" #include float ComputeSurfaceArea(const HEMesh& m) { float area = 0; /* Task 2.2.2 */ std::cout << "Area computation is not implemented." << std::endl; return area; }