cppgfx  0.1.0
C++17 educational graphics library
Output

Console output and formatting. More...

Functions

template<typename... Args>
void cppgfx::App::print (Args &&... args)
 Print a formatted string without newline to the console (FMT/Python formatting supported) More...
 
template<typename... Args>
void cppgfx::App::println (Args &&... args)
 Print a formatted string with newline to the console (FMT/Python formatting supported) More...
 

Detailed Description

Console output and formatting.

Function Documentation

◆ print()

template<typename... Args>
void cppgfx::App::print ( Args &&...  args)
inline

Print a formatted string without newline to the console (FMT/Python formatting supported)

Parameters
argsArguments to pass to fmt::print.

◆ println()

template<typename... Args>
void cppgfx::App::println ( Args &&...  args)
inline

Print a formatted string with newline to the console (FMT/Python formatting supported)

Parameters
argsArguments to pass to fmt::print.