|
MayaFlux 0.2.0
Digital-First Multimedia Processing Framework
|
Encapsulates internal state for stateful generators. More...
#include <Stochastic.hpp>
Collaboration diagram for MayaFlux::Kinesis::Stochastic::GeneratorState:Public Member Functions | |
| void | reset () |
Public Attributes | |
| double | current_value { 0.0 } |
| double | previous_value { 0.0 } |
| double | velocity { 0.0 } |
| double | phase { 0.0 } |
| uint64_t | step_count { 0 } |
| std::vector< double > | internal_buffer |
| std::map< std::string, std::any > | algorithm_specific |
Encapsulates internal state for stateful generators.
Stateful generators (Gendy, Brownian, Perlin) maintain internal state that evolves over successive calls. This structure provides unified state management across different algorithmic approaches.
Future Interaction Pathways:
internal_buffer with predicted sequencesvelocity or phase in real-timealgorithm_specific stateAll fields are publicly accessible for maximum flexibility in live interaction.
Definition at line 39 of file Stochastic.hpp.