Add better timings, and proper configuration

This commit is contained in:
TennesseeTrash 2025-06-08 00:23:46 +02:00
parent 0b32af33b8
commit 5750bb8177
13 changed files with 385 additions and 240 deletions

View file

@ -12,8 +12,11 @@ int main(const int argc, const char *argv[])
// return 1;
//}
if (!Kanimaji::Animate("084b8.svg", "084b8-out.svg")) {
std::println("Could not animate the specified file.");
try {
Kanimaji::AnimateFile("084b8.svg", "084b8-out.svg");
}
catch (const std::exception& e) {
std::println("Could not animate the input file");
return 1;
}