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