Geometric Transformation Matrices:

  • Translation: [x' y' 1] = [x y 1] × [[1 0 tx], [0 1 ty], [0 0 1]]
  • Rotation: [x' y'] = [x y] × [[cos(θ) -sin(θ)], [sin(θ) cos(θ)]]
  • Reflection (X-axis): [x' y'] = [x y] × [[1 0], [0 -1]]
  • Reflection (Y-axis): [x' y'] = [x y] × [[-1 0], [0 1]]
  • Scaling: [x' y'] = [x y] × [[sx 0], [0 sy]]
  • Shear: [x' y'] = [x y] × [[1 kx], [ky 1]]

Geometric Conversions

Enter the x,y coordinates for each point and separate them with ;
Previous Calculations
  There is no calculation history yet

Related Calculations