diff --git a/src/Atlas.cpp b/src/Atlas.cpp index 83aea22..53c67cf 100644 --- a/src/Atlas.cpp +++ b/src/Atlas.cpp @@ -70,13 +70,12 @@ bool ofxMsdfgen::Atlas::generate(){ } // Apply MSDF edge coloring. See edge-coloring.h for other coloring strategies. for(msdf_atlas::GlyphGeometry & glyph : glyphs){ - //glyph.getShape().inverseYAxis = true; //FIXME: we do not need to inverse y axis, something else is wrong - msdfgen::Shape & shape = const_cast (glyph.getShape()); - shape.inverseYAxis = true; - glyph.edgeColoring(&msdfgen::edgeColoringInkTrap, - settings.maxCornerAngle, - 0); + // msdfgen::Shape & shape = const_cast (glyph.getShape()); + // shape.inverseYAxis = true; + glyph.edgeColoring(&msdfgen::edgeColoringInkTrap, // strategy + settings.maxCornerAngle, // angleThreshold + 0); // seed } // TightAtlasPacker class computes the layout of the atlas. msdf_atlas::TightAtlasPacker packer;