Example #1
0
 public bool Rotate(Matrix2D matrix, Point2D refPoint)
 {
     throw new NotImplementedException();
 }
 public Transform2D(Matrix2D matrix, Point2D position)
 {
     this.Matrix   = matrix;
     this.Position = position;
 }
Example #3
0
 public bool Rotate(Matrix2D matrix)
 {
     return(Rotate(matrix, this.Position));
 }