From 7c2f886239b568bbee405ae73a9074c7304790f7 Mon Sep 17 00:00:00 2001 From: themancalledjakob Date: Thu, 25 May 2023 12:45:26 +0200 Subject: [PATCH] couts --- src/Atlas.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/Atlas.cpp b/src/Atlas.cpp index 50caec9..cc07be2 100644 --- a/src/Atlas.cpp +++ b/src/Atlas.cpp @@ -43,7 +43,7 @@ void Atlas::setup(string _fontPath){ if(msdfgen::listFontVariationAxes(_variationAxesAvailable, ft, font)){ - cout << "found variation axes for " << fontPath << ":" << endl; + //cout << "found variation axes for " << fontPath << ":" << endl; for(const auto & _axis : _variationAxesAvailable){ FontVariationAxis axis = { _axis.name, @@ -51,10 +51,10 @@ void Atlas::setup(string _fontPath){ F16DOT16_TO_FLOAT(_axis.maxValue), F16DOT16_TO_FLOAT(_axis.defaultValue) }; - cout << std::fixed << axis.name << "\n" - << "\tmin:" << axis.minValue - << "\tmax:" << axis.maxValue - << "\t:default:" << axis.defaultValue << endl; + //cout << std::fixed << axis.name << "\n" + //<< "\tmin:" << axis.minValue + //<< "\tmax:" << axis.maxValue + //<< "\t:default:" << axis.defaultValue << endl; variationAxesAvailable.push_back(axis); addVariations({ {axis.name, axis.minValue}, @@ -384,6 +384,7 @@ string Atlas::getAtlasPath(){ atlasPath += ve.name + "_" + ofToString(ve.value) + "_"; } atlasPath += ".png"; + cout << "Atlas::getAtlasPath() - atlas path: " << atlasPath << endl; return atlasPath; } }