initial commit

This commit is contained in:
Lauchmelder 2021-11-16 22:57:55 +01:00
commit e1e149e5c7
18 changed files with 6479 additions and 0 deletions

15
src/Orbital.hpp Normal file
View file

@ -0,0 +1,15 @@
#pragma once
#include "Model.hpp"
class Orbital : public Model
{
public:
Orbital(unsigned int l, unsigned int m);
private:
void DefineVAOLayout() final override;
private:
unsigned int l, m;
};