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
43 lines
782 B
C++
43 lines
782 B
C++
namespace netgen
|
|
|
|
{
|
|
|
|
class VisualSceneMeshDoctor : public VisualScene
|
|
{
|
|
int filledlist;
|
|
int outlinelist;
|
|
int edgelist;
|
|
|
|
int selelement, locpi;
|
|
int selpoint, selpoint2;
|
|
|
|
// for edgemarking:
|
|
NgArray<int> edgedist;
|
|
int markedgedist;
|
|
|
|
|
|
public:
|
|
NGGUI_API VisualSceneMeshDoctor ();
|
|
NGGUI_API virtual ~VisualSceneMeshDoctor ();
|
|
|
|
NGGUI_API virtual void BuildScene (int zoomall = 0);
|
|
NGGUI_API virtual void DrawScene ();
|
|
NGGUI_API virtual void MouseDblClick (int px, int py);
|
|
|
|
NGGUI_API void SetMarkEdgeDist (int dist);
|
|
NGGUI_API void ClickElement (int elnr);
|
|
NGGUI_API void UpdateTables ();
|
|
NGGUI_API int IsSegmentMarked (int segnr) const;
|
|
};
|
|
|
|
class MeshDoctorParameters
|
|
{
|
|
public:
|
|
int active;
|
|
};
|
|
|
|
|
|
NGGUI_API extern MeshDoctorParameters meshdoctor;
|
|
|
|
}
|