netgen/libsrc/geom2d/vsgeom2d.hpp

29 lines
835 B
C++
Raw Normal View History

2011-01-11 01:18:01 +05:00
#ifndef FILE_VSGEOM2D
#define FILE_VSGEOM2D
/**************************************************************************/
/* File: vsgeom2d.hpp */
/* Author: Joachim Schoeberl */
/* Date: 05. Jan. 2011 */
/**************************************************************************/
namespace netgen
{
2015-10-19 13:08:30 +05:00
class DLL_HEADER VisualSceneGeometry2d : public VisualScene
2011-01-11 01:18:01 +05:00
{
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