mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
b694b4667a
move fieldlines code to meshing dir move visualization function pointers to meshing directory DLL_HEADER -> NGGUI_API in visualization lib move soldata.hpp to meshing update occ, no freetype necessary anymore
35 lines
884 B
C++
35 lines
884 B
C++
#ifndef FILE_VSCSG
|
|
#define FILE_VSCSG
|
|
|
|
/**************************************************************************/
|
|
/* File: vscsg.hpp */
|
|
/* Author: Joachim Schoeberl */
|
|
/* Date: 05. Jan. 2011 */
|
|
/**************************************************************************/
|
|
|
|
namespace netgen
|
|
{
|
|
|
|
class NGGUI_API VisualSceneGeometry : public VisualScene
|
|
{
|
|
class CSGeometry * geometry;
|
|
NgArray<int> trilists;
|
|
int selsurf;
|
|
public:
|
|
VisualSceneGeometry ();
|
|
virtual ~VisualSceneGeometry ();
|
|
|
|
void SetGeometry (class CSGeometry * ageometry) { geometry = ageometry; }
|
|
virtual void SelectSurface (int aselsurf);
|
|
virtual void BuildScene (int zoomall = 0);
|
|
virtual void DrawScene ();
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|