Esempio n. 1
0
        public FTVector Transform(FTMatrix matrix)
        {
            FTVector copy = this;

            FT.FT_Vector_Transform(ref copy, ref matrix);
            return(copy);
        }
Esempio n. 2
0
 public static extern Error FT_Glyph_Transform(Glyph *glyph, ref FTMatrix matrix, ref FTVector delta);
Esempio n. 3
0
 public static extern Error FT_Matrix_Invert(ref FTMatrix matrix);
Esempio n. 4
0
 public static extern void FT_Matrix_Multiply(ref FTMatrix a, ref FTMatrix b);
Esempio n. 5
0
 public static extern void FT_Vector_Transform(ref FTVector vec, ref FTMatrix matrix);