public static extern void MSDF_Shape_GetBounds(Shape *shape, out double left, out double right, out double top, out double bottom);
public static extern void MSDF_Shape_Normalize(Shape *shape);
public static extern void MSDF_Shape_FlipY(Shape *shape, bool flipped);
public static extern bool MSDF_Shape_Validate(Shape *shape);
public static extern bool MSDF_Shape_Export(Shape *shape, string fileName);
public static extern bool MSDF_Shape_PreprocessGeometry(Shape *shape);
public static extern bool MSDF_Shape_LoadFromDescriptionFile(Shape *shape, string descriptionFile, ref bool skipColoring);
public static extern bool MSDF_Shape_LoadFromSVGFile(Shape *shape, string svgFileName, int svgPathIndex);
public static extern bool MSDF_Shape_LoadFromFontFile(Shape *shape, string fontFileName, uint glyphIndex, uint unicode);
public static extern bool MSDF_Shape_LoadFromFreetypeFont(Shape *shape, FontHandle *fontHandle, uint glyphIndex, uint unicode);