Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/ElmerGUI/netgen/libsrc/csg/manifold.hpp
3206 views
1
#ifndef FILE_MANIFOLD
2
#define FILE_MANIFOLD
3
4
/**************************************************************************/
5
/* File: manifold.hh */
6
/* Author: Joachim Schoeberl */
7
/* Date: 7. Aug. 96 */
8
/**************************************************************************/
9
10
/**
11
Basis class for manifolds in 2d and 3d
12
*/
13
class Manifold
14
{
15
public:
16
///
17
Manifold ();
18
///
19
virtual ~Manifold ();
20
};
21
22
#endif
23
24