mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
30 lines
614 B
C++
30 lines
614 B
C++
#ifndef FILE_MANIFOLD
|
|
#define FILE_MANIFOLD
|
|
|
|
/**************************************************************************/
|
|
/* File: manifold.hh */
|
|
/* Author: Joachim Schoeberl */
|
|
/* Date: 7. Aug. 96 */
|
|
/**************************************************************************/
|
|
|
|
namespace netgen
|
|
{
|
|
|
|
|
|
/**
|
|
Basis class for manifolds in 2d and 3d
|
|
*/
|
|
class Manifold
|
|
{
|
|
public:
|
|
///
|
|
Manifold ();
|
|
///
|
|
virtual ~Manifold ();
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif
|