Making an Online Editor To Illustrate Quantum Energy Level Diagrams

Hi all,

Lately I’ve been thinking a lot about how to make my research less painful. I think there are a lot of concepts or ideas in physics that would be well suited to a proper GUI or editor. In this post I want to walk through my first stab at making a web based tool for web physics simulations.

Sketching out the design

I think a good first step would be to flush out my idea. Since this project is all about building a GUI, I think it would be good to sketch out how this thing will look and what sort of things you can do with it.

Update July 5 2022

Some not so great choices were made by me last month, soooo I am now just hopping on for the first time in a while

Change of Development Choices

Oddly enough I don’t want to go with babylonjs at all. It is a bit too bloated. Right now I think I want to spend a little time on building a drag and drop interactive applet from scratch.

Thus the gameplan is probably something like

Void the below plan


## Choosing a tool

I'm not going to lie when I say the burden of choice is getting to me. There are a lot of really cool tools to make these web based interactive applets. I'm sure whatever I pick, there are going to be like 50 more that were better suited for my needs....._ugh_. I guess I should just pick one and go with it for now. 

I think I’ll build this applet in using [babylonjs](https://www.babylonjs.com).  The main reason being that they have a nice [playground feature](https://doc.babylonjs.com/toolsAndResources/tools/playground). 
## First steps in developing the app
I don’t know if I should start here, but I’ll do it anyways. Let’s try to get a rough GUI made. [Here are the docs for babylonjs’s GUI stuff.](https://doc.babylonjs.com/divingDeeper/gui)
After reading a bit of the docs, I found some (_hopefully_) relavant info. 
- (there is a GUI editor)[https://doc.babylonjs.com/toolsAndResources/tools/guiEditor]
- [If I run into troupble, I can watch this youtube video that takes an overview of the GUI editor.]
- (https://youtu.be/9VXgZ_af-nE)
- The responsiviness and resolution panel will be important to play around with since I wanna make this embeddable. 
- Here are the [supported GUI controls in the editor](https://doc.babylonjs.com/toolsAndResources/tools/guiEditor#supported-controls)