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
54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
#ifndef FILE_VSSTL
|
|
#define FILE_VSSTL
|
|
|
|
/**************************************************************************/
|
|
/* File: vsstl.hpp */
|
|
/* Author: Joachim Schoeberl */
|
|
/* Date: 05. Jan. 2011 */
|
|
/**************************************************************************/
|
|
|
|
namespace netgen
|
|
{
|
|
|
|
class NGGUI_API VisualSceneSTLGeometry : public VisualScene
|
|
{
|
|
NgArray<int> trilists;
|
|
class STLGeometry * stlgeometry;
|
|
|
|
public:
|
|
VisualSceneSTLGeometry ();
|
|
virtual ~VisualSceneSTLGeometry ();
|
|
void SetGeometry (class STLGeometry * astlgeometry) { stlgeometry = astlgeometry; }
|
|
|
|
virtual void BuildScene (int zoomall = 0);
|
|
virtual void DrawScene ();
|
|
};
|
|
|
|
|
|
class NGGUI_API VisualSceneSTLMeshing : public VisualScene
|
|
{
|
|
NgArray<int> trilists;
|
|
int selecttrig, nodeofseltrig;
|
|
class STLGeometry * stlgeometry;
|
|
|
|
public:
|
|
VisualSceneSTLMeshing ();
|
|
virtual ~VisualSceneSTLMeshing ();
|
|
|
|
void SetGeometry (class STLGeometry * astlgeometry) { stlgeometry = astlgeometry; }
|
|
|
|
virtual void BuildScene (int zoomall = 0);
|
|
virtual void DrawScene ();
|
|
virtual void MouseDblClick (int px, int py);
|
|
|
|
int seltria;
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|