2
0

resolve-shape-geometry.h 295 B

123456789101112131415
  1. #pragma once
  2. #include "../core/Shape.h"
  3. #ifdef MSDFGEN_USE_SKIA
  4. namespace msdfgen {
  5. /// Resolves any intersections within the shape by subdividing its contours using the Skia library and makes sure its contours have a consistent winding.
  6. bool resolveShapeGeometry(Shape &shape);
  7. }
  8. #endif