OGLplus  (0.59.0) a C++ wrapper for rendering APIs

eagine/progress_bar.cpp

Copyright Matus Chochlik. Distributed under the Boost Software License, Version 1.0. See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt

#include <cmath>
#include <iostream>
#include <thread>
auto main() -> int {
using namespace eagine;
float x = 0.F;
progress_bar pb;
while(true) {
std::cout << pb.update(std::sin(x)).reformat().get() << std::endl;
x += 0.01F + 0.05F * (std::sin(1.618F * x) + 1.F);
std::this_thread::sleep_for(std::chrono::milliseconds(20));
}
return 0;
}
Common code is placed in this namespace.
Definition: eagine.hpp:21

Copyright © 2015-2021 Matúš Chochlík.
<chochlik -at -gmail.com>
Documentation generated on Tue Apr 13 2021 by Doxygen (version 1.8.17).