mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
41 lines
974 B
C++
41 lines
974 B
C++
#include <mystdlib.h>
|
|
#include <meshing.hpp>
|
|
#include <inctcl.hpp>
|
|
#include <core/ngcore_api.hpp>
|
|
|
|
using std::string;
|
|
using std::endl;
|
|
using std::cout;
|
|
using std::cerr;
|
|
|
|
namespace netgen
|
|
{
|
|
NGCORE_API_EXPORT Flags parameters;
|
|
}
|
|
|
|
NGCORE_API_EXPORT bool nodisplay = false;
|
|
|
|
extern "C" int Ng_Init (Tcl_Interp * interp);
|
|
extern "C" int Ng_Vis_Init (Tcl_Interp * interp);
|
|
extern "C" void Ng_TclCmd(string);
|
|
|
|
// tcl package dynamic load
|
|
extern "C" int NGCORE_API_EXPORT Gui_Init (Tcl_Interp * interp)
|
|
{
|
|
Tcl_InitStubs( interp, TCL_VERSION, 0 );
|
|
Tk_InitStubs( interp, TK_VERSION, 0 );
|
|
if (Ng_Init(interp) == TCL_ERROR) {
|
|
cerr << "Problem in Ng_Init: " << endl;
|
|
cout << "result = " << Tcl_GetStringResult (interp) << endl;
|
|
return TCL_ERROR;
|
|
}
|
|
|
|
if (!nodisplay && Ng_Vis_Init(interp) == TCL_ERROR) {
|
|
cerr << "Problem in Ng_Vis_Init: " << endl;
|
|
cout << "result = " << Tcl_GetStringResult (interp) << endl;
|
|
return TCL_ERROR;
|
|
}
|
|
|
|
return TCL_OK;
|
|
}
|