Skip to content

Instantly share code, notes, and snippets.

@ninux
ninux / sine_plotter.py
Last active November 25, 2023 22:28
python tkinter sine plotter GUI
import threading
import time
import tkinter as tk
from tkinter import messagebox
import matplotlib.pyplot as plt
import numpy as np
from matplotlib.figure import Figure
@ninux
ninux / fdtd_gui.py
Created November 29, 2023 21:00
frist rudimentary FDTD GUI
import threading
import time
import tkinter as tk
from tkinter import messagebox
import matplotlib.pyplot as plt
import numpy as np
from matplotlib.figure import Figure