mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-11 16:49:16 +05:00
12 lines
271 B
Python
12 lines
271 B
Python
|
from tkinter import Tk
|
||
|
|
||
|
from . import _netgen_lib_dir
|
||
|
from . import _netgen_bin_dir
|
||
|
|
||
|
win = Tk()
|
||
|
import os
|
||
|
dir_path = os.path.dirname(os.path.realpath(__file__))
|
||
|
win.tk.eval("source "+os.path.realpath(os.path.join(_netgen_bin_dir, 'ng.tcl')).replace('\\','/'))
|
||
|
|
||
|
# %gui tk
|