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

            FT.FT_Vector_Transform(ref copy, ref matrix);
            return(copy);
        }
示例#2
0
文件: FT.cs 项目: yvanoff/nitrosharp
 public static extern Error FT_Glyph_Transform(Glyph *glyph, ref FTMatrix matrix, ref FTVector delta);
示例#3
0
文件: FT.cs 项目: yvanoff/nitrosharp
 public static extern Error FT_Matrix_Invert(ref FTMatrix matrix);
示例#4
0
文件: FT.cs 项目: yvanoff/nitrosharp
 public static extern void FT_Matrix_Multiply(ref FTMatrix a, ref FTMatrix b);
示例#5
0
文件: FT.cs 项目: yvanoff/nitrosharp
 public static extern void FT_Vector_Transform(ref FTVector vec, ref FTMatrix matrix);