예제 #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);