Given a surface S with a normalized normal vector N.
For given vector V, find reflected vector R.
Use dot product and then normalize it?
R = S - 2(S.N)N
Is it correct?