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
29 lines
834 B
C++
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
|