Find mirror image of a point in 2-D plane
Given a point P in 2-D plane and equation of mirror, the task is to find the image of that point Q formed due to the mirror. Equation of mirror is in form ax + by + c = 0Examples: Input : P = (1, 0), a = -1, b = 1, c = 0Output : Q = (0, 1) Input : P = (3, 3), a = 0, b = 1, c = -2Output : Q = (3, 1) Solution : Let coordinate of P(given point) be (x1