Physics Simulation & Visualization Tool 0.1
A C++ physics simulation engine with real-time 3D visualization
Loading...
Searching...
No Matches
ISolver.h
Go to the documentation of this file.
1
11#pragma once
12
59class ISolver {
60public:
64 virtual ~ISolver() = default;
65
94 virtual bool stepFrame() = 0;
95};
Abstract base class for all numerical solvers.
Definition ISolver.h:59
virtual ~ISolver()=default
Virtual destructor for proper cleanup of derived classes.
virtual bool stepFrame()=0
Advances the solver by one step.