FT_Matrix_Multiply() private method

private FT_Matrix_Multiply ( SharpFont.FTMatrix &a, SharpFont.FTMatrix &b ) : void
a SharpFont.FTMatrix
b SharpFont.FTMatrix
return void
Example #1
0
 /// <summary>
 /// Perform the matrix operation ‘b = a*b’.
 /// </summary>
 /// <remarks>
 /// The result is undefined if either ‘a’ or ‘b’ is zero.
 /// </remarks>
 /// <param name="b">A pointer to matrix ‘b’.</param>
 public void Multiply(FTMatrix b)
 {
     FT.FT_Matrix_Multiply(ref this, ref b);
 }
Example #2
0
 /// <summary>
 /// Perform the matrix operation ‘b = a*b’.
 /// </summary>
 /// <remarks>
 /// The result is undefined if either ‘a’ or ‘b’ is zero.
 /// </remarks>
 /// <param name="a">A pointer to matrix ‘a’.</param>
 /// <param name="b">A pointer to matrix ‘b’.</param>
 public static void Multiply(FTMatrix a, FTMatrix b)
 {
     FT.FT_Matrix_Multiply(ref a, ref b);
 }