netgen/libsrc/csg/vscsg.hpp
Matthias Hochsteger b694b4667a rework build system, separate gui and non-gui code
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
2022-05-05 14:39:31 +02:00

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