I'm making pong in Java and wanted to make the game more fun by assigning different reflection logic to each part of the paddle, like so:
(ball hittins outter edges of paddle will have a different effect than it hitting the middle of the paddle)

The paddle extends Rectangle2D so I could use Rectangle2D's intersects() method to determine if the ball has touched any part of it...
Is it possible to determine where exactly the ball has hit on the paddle?
What I'm planning to do is,
- calculate angle of incidence and reflective angle based on that...
- If the ball hits at a point x on the paddle... I will change the reflection angle accordingly

Thanks
angleOfReflection = angleOfIncidence * 2is right. I think they should be equal. But it does depend how you define the angles. The picture and definitions here may put us on the same page.