예제 #1
0
 public bool Scale(double x, double y, FIA_MatrixOrder order)
 {
     return FreeImage.MatrixScale(this.matrix, x, y, order);
 }
예제 #2
0
 public bool Translate(double x, double y, FIA_MatrixOrder order)
 {
     return FreeImage.MatrixTranslate(this.matrix, x, y, order);
 }
예제 #3
0
 internal static extern bool MatrixTranslate(FIA_Matrix matrix, double x, double y, FIA_MatrixOrder order);
예제 #4
0
 public bool Rotate(double a, FIA_MatrixOrder order)
 {
     return FreeImage.MatrixRotate(this.matrix, a, order);
 }
예제 #5
0
 internal static extern bool MatrixRotate(FIA_Matrix matrix, double a, FIA_MatrixOrder order);
예제 #6
0
 internal static extern bool MatrixScale(FIA_Matrix matrix, double x, double y, FIA_MatrixOrder order);
예제 #7
0
 public bool Rotate(double a, FIA_MatrixOrder order)
 {
     return(FreeImage.MatrixRotate(this.matrix, a, order));
 }
예제 #8
0
 public bool Translate(double x, double y, FIA_MatrixOrder order)
 {
     return(FreeImage.MatrixTranslate(this.matrix, x, y, order));
 }
예제 #9
0
 public bool Scale(double x, double y, FIA_MatrixOrder order)
 {
     return(FreeImage.MatrixScale(this.matrix, x, y, order));
 }