Beispiel #1
0
        public FTVector Transform(FTMatrix matrix)
        {
            FTVector copy = this;

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