Several files renamed to match new consistency-style of preferring .hpp over .h to indicate C++ Headers

This commit is contained in:
2024-07-10 14:15:25 -04:00
parent 6ae876c435
commit 52e1670b80
8 changed files with 6 additions and 4 deletions

View File

@@ -0,0 +1,21 @@
//
// Created by dawsh on 2/8/24.
//
namespace J3ML::Algorithm
{
// Numerical model of a "Spring" object
// Simulates any oscillating system i.e. a mass suspended from a spring.
class Spring
{
float Dampening;
float Stiffness;
float Goal;
float RestLength = 1.f;
bool Overdamped() const;
bool Undamped() const;
bool Underdamped() const;
bool CriticallyDamped() const;
};
}