netgen/libsrc/geom2d/vsgeom2d.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

29 lines
834 B
C++

#ifndef FILE_VSGEOM2D
#define FILE_VSGEOM2D
/**************************************************************************/
/* File: vsgeom2d.hpp */
/* Author: Joachim Schoeberl */
/* Date: 05. Jan. 2011 */
/**************************************************************************/
namespace netgen
{
class NGGUI_API VisualSceneGeometry2d : public VisualScene
{
const class SplineGeometry2d * geometry2d;
public:
VisualSceneGeometry2d ();
virtual ~VisualSceneGeometry2d ();
void SetGeometry (const class SplineGeometry2d * ageometry2d) { geometry2d = ageometry2d; }
virtual void BuildScene (int zoomall = 0);
virtual void DrawScene ();
};
}
#endif