public FTVector Transform(FTMatrix matrix) { FTVector copy = this; FT.FT_Vector_Transform(ref copy, ref matrix); return(copy); }
public static extern Error FT_Glyph_Transform(Glyph *glyph, ref FTMatrix matrix, ref FTVector delta);
public static extern Error FT_Matrix_Invert(ref FTMatrix matrix);
public static extern void FT_Matrix_Multiply(ref FTMatrix a, ref FTMatrix b);
public static extern void FT_Vector_Transform(ref FTVector vec, ref FTMatrix matrix);